/* ====================================
   RESPONSIVE STYLES
   E-BIKE & HIGH-END CAR COMBO TOURS
   ==================================== */

/* Large Screens (1200px and up) */
@media (min-width: 1200px) {
  .container-xl {
    max-width: var(--container-max-width);
  }
  
  .hero-title {
    font-size: 4.5rem;
  }
  
  .section {
    padding: 100px 0;
  }
}

/* Medium to Large Tablets (992px - 1199px) */
@media (max-width: 1199px) {
  .hero-title {
    font-size: 3.5rem;
  }
  
  h2 { font-size: 2.4rem; }
  h3 { font-size: 2rem; }
  
  .card-icon {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }
}

/* Tablets (768px - 991px) */
@media (max-width: 991px) {
  .navbar-nav {
    flex-direction: column;
    text-align: center;
    margin-top: 1rem;
  }
  
  .navbar-nav .nav-link {
    margin: 0.5rem 0;
  }
  
  .navbar-collapse {
    background: rgba(255, 255, 255, 0.98);
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .section {
    padding: 60px 0;
  }
  
  h2 { font-size: 2.2rem; }
  h3 { font-size: 1.8rem; }
  
  .service-card, .feature-card, .price-card, .team-card, .review-card, .info-card {
    padding: 2rem;
    margin-bottom: 2rem;
  }
  
  .card-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
  
  .blog-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  
  .contact-form {
    padding: 2.5rem;
  }
  
  .shape-blob-1, .shape-blob-2 {
    display: none;
  }
}

/* Small Tablets and Large Phones (576px - 767px) */
@media (max-width: 767px) {
  :root {
    --font-size-base: 15px;
    --section-padding: 50px 0;
  }
  
  .navbar {
    padding: 0.5rem 0;
  }
  
  .navbar-brand {
    font-size: 1.5rem;
  }
  
  .hero-section {
    min-height: 80vh;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-description {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }
  
  .section {
    padding: 40px 0;
  }
  
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.6rem; }
  h4 { font-size: 1.4rem; }
  h5 { font-size: 1.2rem; }
  h6 { font-size: 1.1rem; }
  
  .section-title {
    margin-bottom: 2rem;
  }
  
  .service-card, .feature-card, .price-card, .team-card, .review-card, .info-card {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 15px;
  }
  
  .card-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
    border-radius: 15px;
  }
  
  .card-title {
    font-size: 1.2rem;
  }
  
  .card-price {
    font-size: 1.8rem;
  }
  
  .team-image {
    width: 100px;
    height: 100px;
  }
  
  .contact-form {
    padding: 2rem;
    border-radius: 15px;
  }
  
  .form-control {
    padding: 0.7rem;
    font-size: 0.95rem;
  }
  
  .btn-primary {
    padding: 0.8rem 2rem;
    font-size: 0.95rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .blog-content {
    padding: 1.5rem;
  }
  
  .faq-accordion {
    margin-bottom: 0.8rem;
  }
  
  .faq-question {
    padding: 1rem;
    font-size: 1rem;
  }
  
  .faq-answer {
    padding: 0 1rem 1rem;
  }
  
  footer {
    padding: 2rem 0 1rem;
  }
  
  .footer-policies a {
    display: block;
    margin: 0.5rem 0;
  }
}

/* Mobile Phones (480px - 575px) */
@media (max-width: 575px) {
  .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-description {
    font-size: 0.9rem;
  }
  
  h2 { font-size: 1.8rem; }
  h3 { font-size: 1.5rem; }
  
  .service-card, .feature-card, .price-card, .team-card, .review-card, .info-card {
    padding: 1.25rem;
    border-radius: 12px;
  }
  
  .card-icon {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
    border-radius: 12px;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
  }
  
  .team-image {
    width: 80px;
    height: 80px;
  }
  
  .review-card .quote-icon {
    font-size: 2rem;
    top: 0.8rem;
    right: 1rem;
  }
}

/* Very Small Mobile Phones (up to 479px) */
@media (max-width: 479px) {
  :root {
    --font-size-base: 14px;
  }
  
  .hero-section {
    min-height: 70vh;
  }
  
  .hero-title {
    font-size: 1.8rem;
    line-height: 1.2;
  }
  
  .hero-subtitle {
    font-size: 0.95rem;
  }
  
  .hero-description {
    font-size: 0.85rem;
  }
  
  h2 { font-size: 1.6rem; }
  h3 { font-size: 1.4rem; }
  h4 { font-size: 1.2rem; }
  
  .section {
    padding: 30px 0;
  }
  
  .service-card, .feature-card, .price-card, .team-card, .review-card, .info-card {
    padding: 1rem;
    margin-bottom: 1rem;
  }
  
  .card-title {
    font-size: 1.1rem;
  }
  
  .card-price {
    font-size: 1.6rem;
  }
  
  .contact-form {
    padding: 1.25rem;
  }
  
  .form-control {
    padding: 0.6rem;
    font-size: 0.9rem;
  }
  
  .btn-primary {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  
  .blog-content {
    padding: 1.25rem;
  }
  
  .blog-title {
    font-size: 1.2rem;
  }
  
  .team-image {
    width: 70px;
    height: 70px;
  }
  
  .team-name {
    font-size: 1.1rem;
  }
  
  .footer-policies a {
    font-size: 0.9rem;
  }
}

/* Landscape Orientation for Mobile */
@media (max-height: 500px) and (orientation: landscape) {
  .hero-section {
    min-height: 100vh;
    padding: 2rem 0;
  }
  
  .hero-title {
    font-size: 2rem;
    margin-bottom: 0.8rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  
  .hero-description {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .gallery-item, .team-image, .card-icon {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Reduced Motion Preferences */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .shape-blob {
    animation: none !important;
  }
  
  .service-card:hover, .feature-card:hover, .price-card:hover, 
  .team-card:hover, .review-card:hover, .info-card:hover,
  .gallery-item:hover, .blog-card:hover {
    transform: none !important;
  }
  
  .btn-primary:hover {
    transform: none !important;
  }
  
  .swiper-slide {
    transition: none !important;
  }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  :root {
    --white: #1a1a1a;
    --text-dark: #e0e0e0;
    --text-medium: #b0b0b0;
    --text-light: #909090;
    --cream-light: #2a2a2a;
    --cream-dark: #404040;
  }
  
  .navbar {
    background: rgba(26, 26, 26, 0.95);
  }
  
  .service-card, .feature-card, .price-card, .team-card, .review-card, .info-card {
    background: #2a2a2a;
    border-color: #404040;
  }
  
  .contact-form {
    background: #2a2a2a;
  }
  
  .form-control {
    background: #1a1a1a;
    border-color: #404040;
    color: #e0e0e0;
  }
  
  .faq-accordion {
    background: #2a2a2a;
  }
  
  .blog-card {
    background: #2a2a2a;
  }
}

/* Print Styles */
@media print {
  .navbar, .swiper-pagination, .swiper-button-next, .swiper-button-prev,
  .shape-blob, .breadcrumb-section {
    display: none !important;
  }
  
  .hero-section {
    min-height: auto;
    page-break-inside: avoid;
  }
  
  .section {
    padding: 20px 0;
    page-break-inside: avoid;
  }
  
  .service-card, .feature-card, .price-card, .team-card, .review-card, .info-card {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ccc;
  }
  
  footer {
    page-break-before: always;
  }
} 