/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Brand Colors - Exact from Documentation */
    --primary-green: #325D57;
    --primary-green-dark: #225847;
    --gradient-top: #315D46;
    --gradient-accent: #96CAB2;
    --background: #FAF9F9;
    --button-color: #325F57;
    
    /* Text Colors */
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --text-white: #ffffff;
    
    /* UI Colors */
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Status Colors */
    --success: #10B981;
    --warning: #F59E0B;
    --error: #EF4444;
    --info: #3B82F6;
}

html {
    scroll-behavior: smooth;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
    padding-top: 150px; /* Navbar (80px) + Banner (70px) - increased for better spacing */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Responsive body padding */
@media (max-width: 768px) {
    body {
        padding-top: 140px; /* Adjusted for mobile */
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 130px; /* Adjusted for small mobile */
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
}

/* Responsive container padding */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
}

/* Edge-to-edge sections - backgrounds full width, content contained */
.hero,
section {
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    position: relative;
}

/* Launch Banner */
/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100vw; /* Edge-to-edge */
    max-width: 100vw;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* iOS Safari support */
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all 0.3s ease;
    box-sizing: border-box;
    margin: 0;
    padding: 0; /* No padding on navbar itself - edge-to-edge */
}

/* Launch Banner - Below Navbar (Permanent) - Edge-to-Edge */
.launch-banner {
    position: fixed;
    top: 80px; /* Below navbar height */
    left: 0;
    right: 0;
    width: 100vw; /* Edge-to-edge */
    max-width: 100vw;
    background: linear-gradient(135deg, var(--gradient-top) 0%, var(--primary-green) 100%);
    color: var(--text-white);
    z-index: 999; /* Below navbar (1000) but above content - Always visible */
    padding: 0; /* No padding on banner itself - edge-to-edge */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(0);
    transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
    min-height: 50px;
    display: flex !important; /* Always visible - cross-browser */
    align-items: center;
    box-sizing: border-box;
    margin: 0;
    visibility: visible !important; /* Ensure visibility on all browsers */
    opacity: 1 !important; /* Ensure opacity on all browsers */
}

/* Responsive launch banner - Edge-to-Edge */
@media (max-width: 768px) {
    .launch-banner {
        top: 80px;
        min-height: 55px;
    }
    
    .launch-banner-content {
        padding: 0.85rem 0;
    }
}

@media (max-width: 480px) {
    .launch-banner {
        top: 70px;
        min-height: 50px;
    }
    
    .launch-banner-content {
        padding: 0.75rem 0;
    }
}

.launch-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-align: center;
    width: 100%;
    max-width: 100%;
    padding: 1rem 0; /* Padding on content, not banner */
}

.launch-banner-text {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: clamp(0.8rem, 1.3vw, 1rem);
    flex: 1;
    line-height: 1.5;
    justify-content: center;
    flex-wrap: nowrap;
    padding: 0 1.5rem;
    white-space: nowrap;
    overflow: visible;
    min-width: 0;
    max-width: 100%;
    width: 100%;
}

.launch-banner-text svg {
    flex-shrink: 0;
    animation: pulse 2s ease-in-out infinite;
    width: clamp(16px, 1.5vw, 20px);
    height: clamp(16px, 1.5vw, 20px);
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.launch-banner-text strong {
    font-weight: 600;
    margin-right: 0.5rem;
}

.launch-banner-text > span {
    flex: 1;
    line-height: 1.5;
    white-space: nowrap;
    overflow: visible;
    min-width: 0;
    display: inline-block;
    color: var(--text-white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0;
    min-height: 80px;
    height: auto;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    gap: 1rem;
    flex-wrap: nowrap;
}

.logo-image-wrapper {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--gradient-accent) 100%);
    border-radius: 20px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(50, 93, 87, 0.4), 0 3px 8px rgba(50, 93, 87, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    flex-shrink: 0;
    border: 3px solid rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: visible; /* Changed from hidden to visible for iOS */
    z-index: 1;
}

.logo-image-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        left: -50%;
    }
    50% {
        left: 150%;
    }
}

.logo-image-wrapper:hover::before {
    animation: shimmer 1s ease-in-out infinite;
}

.logo-image-wrapper:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 10px 30px rgba(50, 93, 87, 0.5), 0 5px 12px rgba(50, 93, 87, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.25);
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    -webkit-object-fit: contain;
    border-radius: 8px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    display: block;
    /* Remove complex filters - use box-shadow on wrapper instead */
    /* iOS Safari has issues with complex filter chains */
}

/* Logo image wrapper box-shadow is already defined above */

.logo-image-wrapper:hover .logo-img {
    transform: scale(1.03);
    /* Simplified - no complex filters */
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo h1 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-green);
    margin: 0;
}

.logo .tagline {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 400;
    display: block;
    margin-top: -5px;
}

.driver-app-btn {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    font-size: 0.9rem;
}

.driver-app-btn:hover {
    background: rgba(50, 93, 87, 0.1);
    border-color: var(--primary-green);
    color: var(--primary-green);
}

.nav-driver-link-mobile {
    display: none;
}

.driver-link {
    color: var(--primary-green) !important;
    font-weight: 600;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    font-size: 0.95rem;
}

.nav-link:hover {
    color: var(--primary-green);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-shrink: 0;
    margin-left: auto;
}

/* Hide nav-buttons on mobile, show in menu */
@media (max-width: 1024px) {
    .nav-buttons {
        display: none !important; /* Hidden in navbar on tablets/mobile, shown in mobile menu */
    }
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    z-index: 1001;
    position: relative;
    flex-shrink: 0;
}

/* Show hamburger on tablets and mobile - ensure Android compatibility */
@media (max-width: 1024px) {
    .hamburger {
        display: flex;
    }
    
    /* Hide nav menu on tablets and mobile */
    .nav-menu {
        display: none;
    }
    
    .nav-menu.active {
        display: flex;
    }
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: clamp(0.625rem, 2vw, 0.75rem) clamp(1.25rem, 3vw, 1.5rem);
    border-radius: clamp(0.4rem, 1.5vw, 0.5rem);
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(0.875rem, 2vw, 1rem);
    min-height: 44px;
    transition: all 0.3s ease;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background: var(--primary-green);
    color: white;
    border-color: var(--primary-green);
}

.btn-primary:hover {
    background: var(--primary-green-dark);
    border-color: var(--primary-green-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-green);
    border-color: var(--primary-green);
}

.btn-secondary:hover {
    background: var(--primary-green);
    color: white;
}

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border-color: var(--border-color);
}

.btn-outline:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
}

.btn-large {
    padding: clamp(0.875rem, 2.5vw, 1rem) clamp(1.5rem, 4vw, 2rem);
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    min-height: 48px;
}

/* Hero Section */
.hero {
    padding: 60px 0 80px; /* Reduced since body already has padding-top */
    background: radial-gradient(ellipse at top center, var(--gradient-top) 0%, var(--gradient-accent) 55%, var(--background) 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    margin: 0;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (max-width: 767px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-image {
        order: -1;
    }
}

.hero-title {
    font-size: clamp(1.75rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
    color: var(--text-dark);
}

.hero-title .highlight {
    color: var(--primary-green);
    background: linear-gradient(135deg, var(--primary-green), var(--gradient-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--text-dark);
    margin-bottom: clamp(1.5rem, 4vw, 2rem);
    line-height: 1.8;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}


.hero-locations {
    margin-top: 2rem;
}

.location-label {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.location-badges {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.location-badge {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-green);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: clamp(250px, 30vw, 350px);
    height: clamp(500px, 60vw, 700px);
    max-width: 100%;
    background: linear-gradient(135deg, var(--primary-green), var(--gradient-accent));
    border-radius: clamp(30px, 4vw, 40px);
    padding: clamp(15px, 2vw, 20px);
    box-shadow: var(--shadow-xl);
    position: relative;
    margin: 0 auto;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.app-preview {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gradient-top) 0%, var(--gradient-accent) 100%);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
}

.phone-logo-container {
    margin-bottom: 2rem;
}

.phone-logo {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--text-white);
    font-family: 'Poppins', sans-serif;
    letter-spacing: -1px;
    margin-bottom: clamp(0.25rem, 1vw, 0.5rem);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.phone-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.phone-marketing-line {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-top: 1.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    line-height: 1.3;
}

.phone-sub-line {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 1rem;
    font-weight: 400;
    line-height: 1.5;
}

/* Hero phone specific styling */
.hero-phone-content .phone-marketing-line {
    font-size: 1.3rem;
}

/* Download phone specific styling */
.download-phone-content .phone-logo {
    font-size: 3rem;
}

.download-phone-content .phone-marketing-line {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}

.download-phone-content .phone-sub-line {
    font-size: 0.95rem;
    max-width: 200px;
    margin: 1rem auto 0;
}

/* Section Styles */
section {
    padding: clamp(3rem, 8vw, 5rem) 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(1.75rem, 4.5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: clamp(0.75rem, 2vw, 1rem);
    color: var(--text-dark);
}

.section-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--text-light);
}

/* Services Section */
.services {
    background: var(--bg-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: clamp(1.5rem, 4vw, 2rem);
}

.service-card {
    background: var(--bg-white);
    padding: clamp(1.5rem, 4vw, 2.5rem);
    border-radius: clamp(1rem, 3vw, 1.5rem);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
    position: relative;
}

.service-card.featured {
    border-color: var(--primary-green);
    background: linear-gradient(135deg, rgba(50, 93, 87, 0.05), rgba(150, 202, 178, 0.05));
}

.service-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary-green);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-green), var(--gradient-accent));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.service-link {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 1rem;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* How It Works Section */
.how-it-works {
    background: var(--background);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--gradient-accent));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-lg);
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.step-content p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Locations Section */
.locations {
    background: var(--bg-white);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: clamp(1.5rem, 4vw, 2rem);
}

.location-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-green);
}

.location-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.location-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-green);
}

.location-status {
    background: var(--success);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.location-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.location-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.location-features li {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.location-cta {
    margin-top: 1.5rem;
}

/* Features Section */
.features {
    background: var(--background);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: clamp(1.5rem, 4vw, 2rem);
}

.feature-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-green);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-green), var(--gradient-accent));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* About Section */
.about {
    background: var(--bg-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.about-text .lead {
    font-size: 1.3rem;
    color: var(--text-dark);
    font-weight: 600;
}

.about-features {
    margin-top: 2rem;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.about-feature-item svg {
    color: var(--primary-green);
    flex-shrink: 0;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-visual {
    width: 100%;
    min-height: 400px;
    background: linear-gradient(135deg, var(--primary-green), var(--gradient-accent));
    border-radius: 2rem;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem;
    box-sizing: border-box;
}

.about-visual::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: move 20s linear infinite;
    opacity: 0.4;
}

.about-visual-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--text-white);
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.about-visual-logo {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--text-white);
    font-family: 'Poppins', sans-serif;
    letter-spacing: -1px;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.about-visual-tagline {
    font-size: clamp(0.75rem, 2vw, 1rem);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
    line-height: 1.4;
}

.about-visual-headline {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.4;
    margin-bottom: clamp(1.5rem, 4vw, 2rem);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    max-width: 100%;
}

.about-visual-features {
    display: flex;
    flex-direction: column;
    gap: clamp(0.75rem, 2vw, 1rem);
    margin-bottom: clamp(1.5rem, 4vw, 2rem);
    width: 100%;
    max-width: 400px;
}

.about-visual-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: clamp(0.6rem, 2vw, 0.75rem) clamp(1rem, 3vw, 1.5rem);
    border-radius: 2rem;
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    font-weight: 600;
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.about-visual-feature:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.about-visual-feature svg {
    flex-shrink: 0;
    width: clamp(18px, 4vw, 20px);
    height: clamp(18px, 4vw, 20px);
}

.about-visual-cta {
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    font-weight: 700;
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: clamp(0.85rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2rem);
    border-radius: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 400px;
    box-sizing: border-box;
    text-align: center;
    line-height: 1.4;
}

@keyframes move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* Download Section */
.download {
    background: linear-gradient(135deg, var(--primary-green), var(--gradient-accent));
    color: white;
    padding: 100px 0;
}

.download-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.download-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.download-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.download-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.download-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.download-label {
    display: block;
    font-size: 0.75rem;
    opacity: 0.8;
}

.download-platform {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
}

.download-image {
    display: flex;
    justify-content: center;
}

/* Contact Section */
.contact {
    background: var(--background);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green), var(--gradient-accent));
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1rem;
}

.contact-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.contact-item a {
    color: var(--primary-green);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-form-container {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--bg-white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(50, 93, 87, 0.1);
}


.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.location-picker {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.location-btn {
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.25rem;
    flex-shrink: 0;
}

.location-picker input {
    flex: 1;
}

.location-status {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.location-status.success {
    color: var(--success);
}

.location-status.error {
    color: var(--error);
}

@media (max-width: 640px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: white;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--gradient-accent);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-green);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--gradient-accent);
}

.footer-location {
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

/* Responsive Design - Mobile Menu at 768px (not 968px) */
@media (max-width: 1024px) {
    /* Show hamburger menu on tablets and mobile */
    .hamburger {
        display: flex !important;
    }
    
    /* Hide desktop nav menu */
    .nav-wrapper > .nav-menu:not(.active) {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: white;
        width: 100vw; /* Edge-to-edge */
        max-width: 100vw;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        gap: 1rem;
        z-index: 998;
        max-height: calc(100vh - 140px);
        overflow-y: auto;
        box-sizing: border-box;
        margin: 0;
        display: flex; /* Show when active */
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-driver-link-mobile {
        display: block !important;
    }
    
    /* Hide desktop nav-buttons on mobile navbar */
    .nav-wrapper > .nav-buttons {
        display: none !important;
    }
    
    /* Add buttons to mobile menu - clone them via CSS or show in menu */
    /* For now, use the mobile driver link and add download app link */
    .nav-driver-link-mobile,
    .nav-download-link-mobile {
        display: block !important;
    }
    
    .nav-driver-link-mobile {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid var(--border-color);
    }
    
    .nav-download-link-mobile {
        margin-top: 0.5rem;
    }
    
    .logo-image-wrapper {
        width: 60px;
        height: 60px;
        padding: 9px;
        border-radius: 16px;
    }
    
    .logo-img {
        filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.2)) brightness(1.1) contrast(1.15) saturate(1.2);
    }
    
    .nav-wrapper {
        min-height: 80px;
        height: auto;
        padding: 0.5rem 0;
        gap: 1rem;
        width: 100%;
    }
    
    /* Ensure hamburger is visible on all Android devices */
    .hamburger {
        display: flex !important;
        min-width: 44px;
        min-height: 44px;
        align-items: center;
        justify-content: center;
        z-index: 1001;
        position: relative;
    }
    
    .logo h1 {
        font-size: clamp(1.2rem, 3.5vw, 1.4rem);
    }
    
    .logo .tagline {
        font-size: clamp(0.65rem, 1.8vw, 0.7rem);
    }

    .hamburger {
        display: flex;
        min-width: 44px;
        min-height: 44px;
        align-items: center;
        justify-content: center;
        z-index: 999;
    }
    
    .hamburger span {
        width: 28px;
        height: 3px;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-image {
        order: -1;
    }

    .phone-mockup {
        width: 250px;
        height: 500px;
    }
    
    .phone-logo {
        font-size: 2.5rem !important;
    }
    
    .phone-marketing-line {
        font-size: 1.1rem !important;
    }
    
    .download-phone-content .phone-logo {
        font-size: 2.2rem !important;
    }
    
    .download-phone-content .phone-marketing-line {
        font-size: 1.2rem !important;
    }
    
    .phone-sub-line {
        font-size: 0.85rem !important;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-visual {
        min-height: auto;
        padding: 2rem 1.5rem;
        height: auto;
    }
    
    .about-visual-content {
        max-width: 100%;
        padding: 0;
    }
    
    .about-visual-features {
        max-width: 100%;
    }
    
    .about-visual-cta {
        max-width: 100%;
        word-wrap: break-word;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .download-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

}

@media (max-width: 640px) {
    .launch-banner {
        top: 80px; /* Same as desktop - navbar height is consistent */
        padding: 0.85rem 0;
        min-height: 55px;
    }
    
    body {
        padding-top: 155px; /* Navbar (80px) + Banner (75px) - increased for mobile */
    }
    
    .launch-banner-text {
        font-size: clamp(0.65rem, 2.8vw, 0.8rem);
        gap: 0.6rem;
        line-height: 1.5;
        align-items: center;
        flex-direction: row;
        flex-wrap: nowrap;
        white-space: nowrap;
        padding: 0 0.75rem;
    }
    
    .launch-banner-text > span {
        flex: 1 1 auto;
        line-height: 1.5;
        white-space: nowrap;
        overflow: visible;
        min-width: 0;
        color: var(--text-white);
        margin-right: 0.75rem;
        padding-right: 0;
    }
    
    .launch-banner-text svg {
        width: clamp(16px, 2.8vw, 20px);
        height: clamp(16px, 2.8vw, 20px);
        flex-shrink: 0;
        margin-top: 0;
    }
    
    
    .hero {
        padding: 50px 0 60px !important;
    }
    
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-large {
        width: 100%;
        text-align: center;
    }

    .services-grid,
    .features-grid,
    .locations-grid {
        grid-template-columns: 1fr;
    }

    .steps-container {
        grid-template-columns: 1fr;
    }


    .download-buttons {
        flex-direction: column;
    }

    .download-btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Extra small devices - keep text on one line */
    .launch-banner {
        padding: 0.8rem 0 !important;
        min-height: 48px !important;
    }
    
    .launch-banner-text {
        font-size: clamp(0.6rem, 3.2vw, 0.75rem) !important;
        gap: 0.5rem !important;
        padding: 0 0.5rem !important;
    }
    
    .launch-banner-text > span {
        font-size: clamp(0.6rem, 3.2vw, 0.75rem) !important;
        margin-right: 0.5rem !important;
        padding-right: 0 !important;
        flex: 1 1 auto !important;
        overflow: visible !important;
    }
    
    
    .launch-banner-text svg {
        width: clamp(14px, 3.2vw, 18px) !important;
        height: clamp(14px, 3.2vw, 18px) !important;
    }
    
    .about-visual {
        padding: 1.5rem 1rem;
    }
    
    .about-visual-content {
        gap: 0.5rem;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .about-visual {
        padding: 1.5rem 1rem;
        border-radius: 1.5rem;
    }
    
    .about-visual-feature {
        padding: 0.5rem 1rem !important;
        font-size: 0.8rem !important;
    }
    
    .about-visual-cta {
        padding: 0.75rem 1.25rem !important;
        font-size: 0.9rem !important;
    }
}

/* SEO Optimizations */
.hero-title,
.section-title {
    word-wrap: break-word;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
}

/* Banner Download Link */
/* Banner download link removed - using navbar download button instead */


/* Quick Booking CTA Banner */
.quick-booking-cta {
    position: relative;
    overflow: hidden;
}

.quick-booking-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    opacity: 0.3;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.btn-white {
    background: var(--text-white) !important;
    color: var(--primary-green) !important;
    border: 2px solid var(--text-white) !important;
}

.btn-white:hover {
    background: rgba(255, 255, 255, 0.95) !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2) !important;
}

.btn-white:active {
    transform: translateY(0);
}

/* Launch Banner Responsive Styles */
@media (max-width: 968px) {
    .launch-banner {
        padding: 0.9rem 0;
        min-height: 52px;
    }
    
    .launch-banner-text {
        font-size: clamp(0.75rem, 1.6vw, 0.9rem);
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .launch-banner-text > span {
        font-size: clamp(0.75rem, 1.6vw, 0.9rem);
        margin-right: 1rem;
        padding-right: 0;
        overflow: visible;
        flex: 1 1 auto;
    }
    
}

@media (max-width: 768px) {
    .launch-banner {
        padding: 0.85rem 0;
        min-height: 50px;
    }
    
    .launch-banner-text {
        font-size: clamp(0.7rem, 2.2vw, 0.85rem);
        gap: 0.5rem;
        padding: 0 0.75rem;
    }
    
    .launch-banner-text > span {
        font-size: clamp(0.7rem, 2.2vw, 0.85rem);
        margin-right: 0.75rem;
        padding-right: 0;
        overflow: visible;
        flex: 1 1 auto;
    }
    
    
    .quick-booking-cta {
        padding: 2rem 0 !important;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-text h3 {
        font-size: 1.25rem !important;
    }
    
    .cta-text p {
        font-size: 1rem !important;
    }
    
    .cta-button {
        width: 100%;
    }
    
    .cta-button .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   COMPREHENSIVE RESPONSIVE BREAKPOINTS
   Universal Device Support
   ============================================ */

/* Extra Small Phones (320px - 374px) */
@media (max-width: 374px) {
    html {
        font-size: 14px;
    }
    
    body {
        padding-top: 140px;
    }
    
    .container {
        padding: 0 clamp(0.75rem, 3vw, 1rem);
    }
    
    .logo-image-wrapper {
        width: 45px;
        height: 45px;
        padding: 7px;
        border-radius: 12px;
    }
    
    .logo h1 {
        font-size: clamp(1.1rem, 4vw, 1.2rem);
    }
    
    .logo .tagline {
        font-size: clamp(0.6rem, 2vw, 0.65rem);
        display: none; /* Hide on very small screens */
    }
    
    .nav-wrapper {
        height: 70px;
        max-height: 70px;
        padding: 0.4rem 0;
        gap: 0.5rem;
    }
    
    .launch-banner {
        top: 70px;
        padding: 0.7rem 0;
        min-height: 45px;
    }
    
    .hamburger {
        min-width: 40px;
        min-height: 40px;
        padding: 0.4rem;
    }
    
    .hamburger span {
        width: 24px;
        height: 2.5px;
    }
    
    .launch-banner-text {
        font-size: clamp(0.55rem, 3.5vw, 0.7rem);
        gap: 0.4rem;
        padding: 0 0.5rem;
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }
    
    .hero-subtitle {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
    }
    
    .btn-large {
        font-size: clamp(0.875rem, 3vw, 1rem);
        padding: clamp(0.75rem, 3vw, 1rem) clamp(1.25rem, 5vw, 1.75rem);
        min-height: 44px;
    }
    
    .phone-mockup {
        width: 200px;
        height: 400px;
    }
}

/* Small Phones (375px - 424px) */
@media (min-width: 375px) and (max-width: 424px) {
    html {
        font-size: 15px;
    }
    
    body {
        padding-top: 145px;
    }
    
    .logo-image-wrapper {
        width: 50px;
        height: 50px;
        padding: 8px;
        border-radius: 14px;
    }
    
    .logo h1 {
        font-size: clamp(1.2rem, 3.5vw, 1.3rem);
    }
    
    .logo .tagline {
        font-size: clamp(0.65rem, 1.8vw, 0.7rem);
    }
    
    .nav-wrapper {
        height: 75px;
        max-height: 75px;
        gap: 0.75rem;
    }
    
    .launch-banner {
        top: 75px;
        padding: 0.75rem 0;
        min-height: 48px;
    }
    
    .launch-banner-text {
        font-size: clamp(0.6rem, 3vw, 0.75rem);
    }
    
    .hero-title {
        font-size: clamp(1.75rem, 5.5vw, 2.25rem);
    }
    
    .hamburger {
        min-width: 42px;
        min-height: 42px;
    }
}

/* Medium Phones (425px - 479px) */
@media (min-width: 425px) and (max-width: 479px) {
    html {
        font-size: 15.5px;
    }
    
    .logo-image-wrapper {
        width: 55px;
        height: 55px;
        padding: 9px;
        border-radius: 16px;
    }
    
    .logo h1 {
        font-size: clamp(1.3rem, 3.5vw, 1.4rem);
    }
    
    .nav-wrapper {
        height: 78px;
        max-height: 78px;
        gap: 0.75rem;
    }
    
    .launch-banner {
        top: 78px;
    }
    
    .hero-title {
        font-size: clamp(2rem, 5.5vw, 2.5rem);
    }
}

/* Large Phones (480px - 639px) */
@media (min-width: 480px) and (max-width: 639px) {
    .logo-image-wrapper {
        width: 60px;
        height: 60px;
        padding: 9px;
    }
    
    .logo h1 {
        font-size: clamp(1.4rem, 3.5vw, 1.5rem);
    }
    
    .hero-title {
        font-size: clamp(2.25rem, 5vw, 2.75rem);
    }
    
    .hero-content {
        gap: 2.5rem;
    }
}

/* Small Tablets / Fold Phones (640px - 767px) - Hamburger still visible */
@media (min-width: 640px) and (max-width: 767px) {
    .logo-image-wrapper {
        width: 65px;
        height: 65px;
        padding: 10px;
    }
    
    .logo h1 {
        font-size: clamp(1.5rem, 3.5vw, 1.6rem);
    }
    
    .hero-content {
        gap: 3rem;
    }
    
    .phone-mockup {
        width: 280px;
        height: 560px;
    }
    
    .hamburger {
        display: flex; /* Still visible at this breakpoint */
    }
}

/* Tablets (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    html {
        font-size: 16px;
    }
    
    .hero-content {
        gap: 3.5rem;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 4.5vw, 3rem);
    }
    
    .services-grid,
    .features-grid,
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Large Tablets / Small Laptops (1024px - 1199px) */
@media (min-width: 1024px) and (max-width: 1199px) {
    .container {
        max-width: min(100% - 3rem, 1100px);
    }
    
    .hero-content {
        gap: 3.5rem;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .btn,
    .btn-large,
    a {
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav-menu a {
        padding: 1rem;
        min-height: 44px;
    }
    
    input,
    textarea,
    select {
        min-height: 44px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

/* Landscape Orientation */
@media (orientation: landscape) and (max-height: 500px) {
    .navbar {
        height: 60px;
    }
    
    .nav-wrapper {
        height: 60px;
        max-height: 60px;
        padding: 0.3rem 0;
    }
    
    .logo-image-wrapper {
        width: 50px;
        height: 50px;
        padding: 8px;
    }
    
    .launch-banner {
        top: 60px;
        padding: 0.5rem 0;
        min-height: 40px;
    }
    
    body {
        padding-top: 110px;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .hero-buttons,
    .contact-form-container,
    .quick-booking-cta {
        display: none;
    }
}
