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

html {
    scroll-behavior: smooth;
    font-size: 16px; /* Base font size for rem calculations */
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%; /* Prevent font size adjustments on mobile Safari */
    -ms-text-size-adjust: 100%;
}

/* Responsive images and media */
img, video, svg {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Flexible tables */
table {
    width: 100%;
    border-collapse: collapse;
}

/* Better text handling */
p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
    hyphens: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo .logo-img {
    height: 40px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.nav-logo .logo-img:hover {
    transform: scale(1.05);
}

.nav-logo .tagline {
    display: block;
    font-size: 0.7rem;
    color: #5ABA4A;
    font-weight: 600;
    margin-top: 2px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nav-logo h2 {
    background: linear-gradient(135deg, #5ABA4A 0%, #181818 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #5ABA4A;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(135deg, #5ABA4A 0%, #181818 100%);
    transition: width 0.3s ease;
}

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

.cta-button {
    background: linear-gradient(135deg, #5ABA4A 0%, #181818 100%);
    color: white !important;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(90, 186, 74, 0.4);
}

.cta-button::after {
    display: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 5px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #5ABA4A 0%, #181818 100%);
    position: relative;
    overflow: hidden;
    padding-top: 80px; /* Account for fixed navbar */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><circle cx="30" cy="30" r="2"/></g></svg>');
    opacity: 0.3;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    color: white;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-tagline {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.hero-tagline em {
    color: #ffeaa7;
    font-weight: 600;
    font-size: 1.4rem;
    display: block;
    margin-bottom: 0.5rem;
}

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

.gradient-text {
    background: linear-gradient(135deg, #ffeaa7 0%, #fab1a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.7;
}

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

/* Ensure full-width buttons on mobile */
@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column !important;
        gap: 1rem !important;
        width: 100% !important;
    }
    
    .hero-buttons .btn {
        width: 100% !important;
        max-width: none !important;
        padding: 1rem 1.5rem !important;
        font-size: 1rem !important;
        justify-content: center !important;
        min-height: 50px !important;
        border-radius: 12px !important;
        display: flex !important;
        align-items: center !important;
    }
}

/* Responsive styles for new pages */
@media (max-width: 768px) {
    .page-header {
        padding: 4rem 0 2rem;
        margin-top: 70px;
    }
    
    .page-header .header-content h1 {
        font-size: 2.5rem;
    }
    
    .page-header .header-content p {
        font-size: 1rem;
    }
    
    .policy-content {
        padding: 2rem 0;
    }
    
    .content-wrapper {
        margin: 0 1rem;
        border-radius: 8px;
    }
    
    .policy-section {
        padding: 1.5rem;
    }
    
    .policy-section h2 {
        font-size: 1.5rem;
    }
    
    .policy-section h3 {
        font-size: 1.2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .social-links-contact {
        justify-content: center;
    }
    
    .social-link {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: white;
    color: #5ABA4A;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease-out 0.3s both;
}

.iphone-frame {
    width: 300px;
    height: 600px;
    background: #1a1a1a;
    border-radius: 50px;
    padding: 8px;
    position: relative;
    z-index: 2;
    box-shadow: 
        0 0 0 2px #333,
        0 0 0 6px #1a1a1a,
        0 30px 60px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.iphone-frame:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 0 0 2px #333,
        0 0 0 6px #1a1a1a,
        0 40px 80px rgba(0, 0, 0, 0.5);
}

.iphone-notch {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 35px;
    background: #1a1a1a;
    border-radius: 0 0 20px 20px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.notch-speaker {
    width: 50px;
    height: 4px;
    background: #333;
    border-radius: 2px;
}

.notch-camera {
    width: 10px;
    height: 10px;
    background: #111;
    border-radius: 50%;
    border: 1px solid #333;
}

.iphone-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 42px;
    overflow: hidden;
    position: relative;
}

.mockup-content {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.iphone-home-indicator {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 130px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    z-index: 10;
}

/* Removed old phone interface styles - now using image mockup */

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    animation: float 6s ease-in-out infinite;
    animation-delay: var(--delay);
}

.floating-icon:nth-child(1) {
    top: 20%;
    left: -10%;
}

.floating-icon:nth-child(2) {
    top: 60%;
    right: -10%;
}

.floating-icon:nth-child(3) {
    bottom: 20%;
    left: 10%;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: #f8faff;
}

/* Mobile optimizations for features */
@media (max-width: 768px) {
    .features {
        padding: 60px 0;
    }
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #5ABA4A 0%, #181818 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #5ABA4A 0%, #181818 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background: white;
}

/* Mobile optimizations for how-it-works */
@media (max-width: 768px) {
    .how-it-works {
        padding: 60px 0;
    }
}

.steps-container {
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: grid;
    grid-template-columns: 80px 1fr 80px;
    gap: 2rem;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

.step:nth-child(even) {
    grid-template-columns: 80px 1fr 80px;
    direction: rtl;
}

.step:nth-child(even) * {
    direction: ltr;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #5ABA4A 0%, #181818 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(90, 186, 74, 0.3);
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: #f8faff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #5ABA4A;
    border: 3px solid #e8f0fe;
}

/* Download Section */
.download {
    padding: 100px 0;
    background: linear-gradient(135deg, #5ABA4A 0%, #181818 100%);
    color: white;
}

/* Mobile optimizations for download section */
@media (max-width: 768px) {
    .download {
        padding: 60px 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: 1.5rem;
}

.download-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.7;
}

.waitlist-form {
    margin-bottom: 2rem;
}

.signup-form .form-group {
    display: flex;
    gap: 1rem;
    max-width: 500px;
}

.signup-form input[type="email"] {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.signup-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.signup-form input[type="email"]:focus {
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.2);
}

.signup-btn {
    padding: 1rem 2rem;
    background: white;
    color: #5ABA4A;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.signup-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.3);
}

.launch-info {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.info-item i {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

.phones-container {
    position: relative;
    display: flex;
    justify-content: center;
    height: 420px;
    gap: 30px;
}

.phone {
    width: 185px;
    height: 370px;
    background: linear-gradient(145deg, #2a2a2a, #1f1f1f);
    border-radius: 24px;
    padding: 3px;
    position: absolute;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.phone:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.25);
}

.phone-1 {
    left: -15px;
    transform: rotate(-6deg);
    z-index: 1;
}

.phone-2 {
    right: -15px;
    transform: rotate(6deg);
    z-index: 2;
}

.phone .phone-screen {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 20px;
    padding: 0;
    color: #333;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.app-preview {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #f8f9fa;
}

.preview-header {
    background: white;
    padding: 6px 12px;
    border-bottom: 1px solid #e9ecef;
}

.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.65rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 6px;
    height: 12px;
}

.indicators {
    display: flex;
    gap: 8px;
    align-items: center;
}

.signal, .battery {
    font-size: 0.65rem;
}

.app-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 24px;
}

.app-icon {
    width: 18px;
    height: 18px;
    border-radius: 3px;
    flex-shrink: 0;
}

.app-bar h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1;
}

.preview-content {
    flex: 1;
    padding: 10px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

/* Tracking Screen Styles */
.tracking-card {
    background: white;
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.package-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e9ecef;
}

.package-id .label, .delivery-status .status-text {
    font-size: 0.7rem;
    color: #666;
}

.package-id .value {
    font-size: 0.75rem;
    font-weight: 600;
    color: #333;
}

.delivery-status {
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #28a745;
}

.status-indicator.active {
    animation: pulse 2s infinite;
}

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

.preview-map {
    height: 100px;
    background: linear-gradient(135deg, #5ABA4A 0%, #2d7d2d 100%);
    border-radius: 8px;
    margin-bottom: 12px;
    position: relative;
    overflow: hidden;
}

.map-overlay {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.delivery-route {
    position: absolute;
    top: 50%;
    left: 20%;
    right: 20%;
    height: 2px;
    background: rgba(255,255,255,0.8);
    border-radius: 1px;
}

.location-pin {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
}

.location-pin.driver {
    left: 15%;
    animation: float 3s ease-in-out infinite;
}

.location-pin.destination {
    right: 15%;
}

.delivery-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 4px 0;
}

.detail-item .icon {
    font-size: 1rem;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.detail-text .label {
    font-size: 0.65rem;
    color: #666;
}

.detail-text .value {
    font-size: 0.75rem;
    font-weight: 500;
    color: #333;
}

/* Booking Screen Styles */
.booking-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%;
}

.location-section {
    background: white;
    border-radius: 10px;
    padding: 10px;
    position: relative;
}

.location-input {
    display: flex;
    align-items: flex-start;
    padding: 8px 12px;
    min-height: 40px;
}

.location-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    justify-content: center;
}

.location-details .label {
    font-size: 0.65rem;
    color: #666;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 2px;
}

.location-details .address {
    font-size: 0.8rem;
    color: #333;
    font-weight: 500;
    line-height: 1.3;
}

.location-connector {
    position: absolute;
    left: 12px;
    top: 40px;
    bottom: 40px;
    width: 2px;
    background: linear-gradient(to bottom, #5ABA4A, #ddd);
    border-radius: 1px;
}

.package-options {
    background: white;
    border-radius: 10px;
    padding: 10px;
}

.package-options h5 {
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: #333;
}

.size-options {
    display: flex;
    gap: 6px;
}

.size-option {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 4px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    min-height: 50px;
    gap: 4px;
}

.size-option.active {
    border-color: #5ABA4A;
    background: rgba(90, 186, 74, 0.1);
}

.size-option .size-icon {
    font-size: 1rem;
    line-height: 1;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.size-option span {
    font-size: 0.65rem;
    font-weight: 600;
    color: #666;
    line-height: 1;
    text-align: center;
}

.delivery-options {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.option-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 8px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s;
}

.option-card.selected {
    border-color: #5ABA4A;
    background: rgba(90, 186, 74, 0.1);
}

.option-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.option-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: #333;
    line-height: 1.1;
}

.option-time {
    font-size: 0.6rem;
    color: #666;
    line-height: 1;
}

.option-price {
    font-size: 0.75rem;
    font-weight: 700;
    color: #5ABA4A;
}

.preview-button {
    background: linear-gradient(135deg, #5ABA4A 0%, #2d7d2d 100%);
    color: white;
    border: none;
    padding: 10px 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(90, 186, 74, 0.3);
    margin-top: auto;
}

.preview-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(90, 186, 74, 0.4);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #5ABA4A 0%, #4CAF50 100%);
    color: #fff;
    padding: 6rem 0 4rem;
    margin-top: 80px;
    text-align: center;
}

.page-header .header-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header .header-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Policy Content */
.policy-content {
    padding: 4rem 0;
    background: #f8f9fa;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.policy-section {
    padding: 2.5rem;
    border-bottom: 1px solid #e9ecef;
}

.policy-section:last-child {
    border-bottom: none;
}

.policy-section h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

.policy-section h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #5ABA4A 0%, #4CAF50 100%);
    border-radius: 2px;
}

.policy-section h3 {
    color: #34495e;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
}

.policy-section p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.policy-section ul, .policy-section ol {
    color: #555;
    line-height: 1.7;
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.policy-section li {
    margin-bottom: 0.5rem;
}

.policy-section strong {
    color: #2c3e50;
    font-weight: 600;
}

/* Contact Form */
.contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #5ABA4A;
    box-shadow: 0 0 0 3px rgba(90, 186, 74, 0.1);
}

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

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.95rem;
    color: #555;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
}

.submit-btn {
    background: linear-gradient(135deg, #5ABA4A 0%, #4CAF50 100%);
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(90, 186, 74, 0.3);
}

/* Contact Info */
.contact-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: #555;
}

.contact-info strong {
    color: #2c3e50;
}

/* Social Links Contact */
.social-links-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.5rem 0;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 20px;
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-link:hover {
    border-color: #5ABA4A;
    color: #5ABA4A;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.social-link i {
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: #5ABA4A;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-brand h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #5ABA4A 0%, #181818 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: none; /* Hide text since we have logo */
}

.footer-brand p {
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

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

.social-links a:hover {
    background: linear-gradient(135deg, #5ABA4A 0%, #181818 100%);
    transform: translateY(-3px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #5ABA4A;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #5ABA4A;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-legal {
    display: flex;
    gap: 1rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #5ABA4A;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Responsive Design */

/* Extra Large Desktop - 1400px+ */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-container {
        max-width: 1400px;
        gap: 6rem;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .section-header h2 {
        font-size: 3rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
}

/* Large Desktop - 1200px to 1399px */
@media (min-width: 1200px) and (max-width: 1399px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
}

/* Laptop - 992px to 1199px */
@media (min-width: 992px) and (max-width: 1199px) {
    .container {
        max-width: 960px;
        padding: 0 15px;
    }
    
    .hero-container {
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .nav-container {
        padding: 1rem 1.5rem;
    }
    
    .phone {
        width: 200px;
        height: 400px;
    }
    
    .iphone-frame {
        width: 200px;
        height: 400px;
    }
}

/* Tablet Landscape - 768px to 991px */
@media (min-width: 768px) and (max-width: 991px) {
    .container {
        max-width: 720px;
        padding: 0 15px;
    }
    
    .hero-container {
        grid-template-columns: 1fr 0.8fr;
        gap: 2rem;
        padding: 2rem 1rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .nav-container {
        padding: 1rem;
    }
    
    .nav-logo .logo-img {
        height: 35px;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .download-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .phones-container {
        justify-content: center;
        gap: 20px;
    }
    
    .phone {
        width: 180px;
        height: 360px;
    }
    
    .iphone-frame {
        width: 180px;
        height: 360px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablet Portrait & Large Phone - 576px to 767px */
@media (min-width: 576px) and (max-width: 767px) {
    .container {
        max-width: 540px;
        padding: 0 15px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

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

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 2rem 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
    }
    
    .hero-tagline em {
        font-size: 1.3rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: none;
        justify-content: center;
        min-height: 50px;
        border-radius: 12px;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .step {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }

    .step:nth-child(even) {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    
    .download-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .signup-form .form-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    .signup-form input[type="email"] {
        width: 100%;
        margin-bottom: 0;
    }
    
    .signup-btn {
        width: 100%;
    }
    
    .launch-info {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .phones-container {
        flex-direction: column;
        height: auto;
        gap: 30px;
        padding: 20px 0;
        align-items: center;
    }

    .phone {
        position: relative !important;
        margin: 0 auto;
        transform: none !important;
        width: 250px;
        height: 500px;
        left: auto !important;
        right: auto !important;
    }
    
    .iphone-frame {
        width: 220px;
        height: 440px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Mobile Large - 480px to 575px */
@media (min-width: 480px) and (max-width: 575px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .download-text h2 {
        font-size: 2rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: none;
        padding: 1rem 1.2rem;
        font-size: 0.95rem;
        min-height: 50px;
        border-radius: 12px;
    }
    
    .phone {
        width: 220px;
        height: 440px;
    }
    
    .iphone-frame {
        width: 200px;
        height: 400px;
    }
    
    .nav-container {
        padding: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .stat {
        min-width: 120px;
    }
}

/* Mobile Medium - 375px to 479px */
@media (min-width: 375px) and (max-width: 479px) {
    .container {
        padding: 0 10px;
    }
    
    .nav-container {
        padding: 0.8rem;
    }
    
    .nav-logo .logo-img {
        height: 30px;
    }
    
    .nav-logo .tagline {
        font-size: 0.55rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    .hero-tagline em {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: none;
        padding: 1rem;
        font-size: 0.9rem;
        min-height: 48px;
        border-radius: 12px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 0.9rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-card h3 {
        font-size: 1.1rem;
    }
    
    .feature-card p {
        font-size: 0.85rem;
    }
    
    .step {
        padding: 1rem;
    }
    
    .step-content h3 {
        font-size: 1.1rem;
    }
    
    .step-content p {
        font-size: 0.85rem;
    }
    
    .download-text h2 {
        font-size: 1.8rem;
    }
    
    .download-text p {
        font-size: 0.9rem;
    }
    
    .phone {
        width: 200px;
        height: 400px;
    }
    
    .iphone-frame {
        width: 180px;
        height: 360px;
    }
    
    .preview-content {
        padding: 12px;
    }
    
    .tracking-card {
        padding: 12px;
    }
    
    .booking-form {
        gap: 15px;
    }
    
    .location-section {
        padding: 12px;
    }
    
    .package-options {
        padding: 12px;
    }
    
    .package-options h5 {
        font-size: 0.9rem;
    }
    
    .size-options {
        gap: 6px;
    }
    
    .size-option {
        padding: 6px;
        min-width: 50px;
    }
    
    .size-option span {
        font-size: 0.75rem;
    }
    
    .option-name {
        font-size: 0.8rem;
    }
    
    .option-time {
        font-size: 0.7rem;
    }
    
    .option-price {
        font-size: 0.8rem;
    }
    
    .preview-button {
        padding: 12px 16px;
        font-size: 0.8rem;
    }
    
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-logo {
        height: 35px;
    }
    
    .footer-brand h3 {
        font-size: 1.2rem;
    }
    
    .footer-tagline {
        font-size: 0.7rem;
    }
    
    .footer-brand p {
        font-size: 0.8rem;
    }
    
    .footer-column h4 {
        font-size: 0.9rem;
    }
    
    .footer-column a {
        font-size: 0.8rem;
    }
    
    .footer-bottom {
        padding: 1rem 0;
        font-size: 0.8rem;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* Mobile Small - 320px to 374px */
@media (max-width: 374px) {
    .container {
        padding: 0 8px;
    }
    
    .nav-container {
        padding: 0.6rem;
    }
    
    .nav-logo .logo-img {
        height: 28px;
    }
    
    .nav-logo .tagline {
        font-size: 0.5rem;
    }
    
    .hero-container {
        padding: 1.5rem 0.5rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1;
    }
    
    .hero-tagline {
        font-size: 0.9rem;
    }
    
    .hero-tagline em {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: none;
        padding: 0.9rem 0.8rem;
        font-size: 0.85rem;
        min-height: 46px;
        border-radius: 10px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 0.6rem;
    }
    
    .stat {
        min-width: 100px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .section-header p {
        font-size: 0.85rem;
    }
    
    .feature-card {
        padding: 1.2rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .feature-card h3 {
        font-size: 1rem;
    }
    
    .feature-card p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .step {
        padding: 0.8rem;
        gap: 0.8rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .step-icon {
        font-size: 1.2rem;
    }
    
    .step-content h3 {
        font-size: 1rem;
    }
    
    .step-content p {
        font-size: 0.8rem;
    }
    
    .download-text h2 {
        font-size: 1.6rem;
    }
    
    .download-text p {
        font-size: 0.85rem;
    }
    
    .signup-form input[type="email"] {
        padding: 0.8rem;
        font-size: 0.85rem;
    }
    
    .signup-btn {
        padding: 0.8rem 1rem;
        font-size: 0.85rem;
    }
    
    .info-item {
        font-size: 0.8rem;
    }
    
    .phone {
        width: 180px;
        height: 360px;
    }
    
    .iphone-frame {
        width: 160px;
        height: 320px;
        border-radius: 35px;
        padding: 4px;
    }
    
    .iphone-notch {
        width: 90px;
        height: 22px;
        border-radius: 0 0 12px 12px;
        gap: 6px;
    }
    
    .notch-speaker {
        width: 30px;
        height: 2px;
    }
    
    .notch-camera {
        width: 6px;
        height: 6px;
    }
    
    .iphone-screen {
        border-radius: 31px;
    }
    
    .iphone-home-indicator {
        width: 80px;
        height: 2px;
        bottom: 8px;
    }
    
    .preview-content {
        padding: 10px;
    }
    
    .status-bar {
        font-size: 0.7rem;
        margin-bottom: 8px;
    }
    
    .app-bar h4 {
        font-size: 0.9rem;
    }
    
    .app-icon {
        width: 20px;
        height: 20px;
    }
    
    .tracking-card {
        padding: 10px;
    }
    
    .package-id .value {
        font-size: 0.75rem;
    }
    
    .detail-text .value {
        font-size: 0.75rem;
    }
    
    .preview-map {
        height: 100px;
    }
    
    .booking-form {
        gap: 12px;
    }
    
    .location-section {
        padding: 10px;
    }
    
    .package-options {
        padding: 10px;
    }
    
    .package-options h5 {
        font-size: 0.9rem;
    }
    
    .size-options {
        gap: 6px;
    }
    
    .size-option {
        padding: 6px;
        min-width: 50px;
    }
    
    .size-option span {
        font-size: 0.75rem;
    }
    
    .option-name {
        font-size: 0.8rem;
    }
    
    .option-time {
        font-size: 0.7rem;
    }
    
    .option-price {
        font-size: 0.8rem;
    }
    
    .preview-button {
        padding: 12px 16px;
        font-size: 0.8rem;
    }
    
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-logo {
        height: 35px;
    }
    
    .footer-brand h3 {
        font-size: 1.2rem;
    }
    
    .footer-tagline {
        font-size: 0.7rem;
    }
    
    .footer-brand p {
        font-size: 0.8rem;
    }
    
    .footer-column h4 {
        font-size: 0.9rem;
    }
    
    .footer-column a {
        font-size: 0.8rem;
    }
    
    .footer-bottom {
        padding: 1rem 0;
        font-size: 0.8rem;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* Original tablet and mobile styles - keeping for compatibility */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

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

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 2rem 1rem;
    }

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

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .step {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }

    .step:nth-child(even) {
        grid-template-columns: 1fr;
        direction: ltr;
    }

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

    .signup-form .form-group {
        flex-direction: column;
    }

    .launch-info {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .phones-container {
        flex-direction: column;
        height: auto;
        gap: 30px;
        padding: 20px 0;
    }

    .phone {
        position: relative !important;
        margin: 0 auto;
        transform: none !important;
        width: 280px;
        height: 560px;
        left: auto !important;
        right: auto !important;
    }

    .phone .phone-screen {
        border-radius: 25px;
    }

    .preview-content {
        padding: 16px;
    }

    .status-bar {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }

    .app-bar h4 {
        font-size: 1rem;
    }

    .app-icon {
        width: 24px;
        height: 24px;
    }

    .package-id .value {
        font-size: 0.85rem;
    }

    .detail-text .value {
        font-size: 0.85rem;
    }

    .option-name {
        font-size: 0.9rem;
    }

    .option-time {
        font-size: 0.75rem;
    }

    .option-price {
        font-size: 0.9rem;
    }

    .preview-button {
        padding: 16px 20px;
        font-size: 0.9rem;
    }

    .tracking-card {
        padding: 16px;
    }

    .booking-form {
        gap: 20px;
    }

    .location-section {
        padding: 16px;
    }

    .package-options {
        padding: 16px;
    }

    .preview-map {
        height: 120px;
    }

    .iphone-frame {
        width: 240px;
        height: 480px;
        border-radius: 40px;
        padding: 6px;
    }
    
    .iphone-notch {
        width: 110px;
        height: 28px;
        border-radius: 0 0 16px 16px;
        gap: 8px;
    }
    
    .notch-speaker {
        width: 40px;
        height: 3px;
    }
    
    .notch-camera {
        width: 8px;
        height: 8px;
    }
    
    .iphone-screen {
        border-radius: 34px;
    }
    
    .iphone-home-indicator {
        width: 100px;
        height: 3px;
        bottom: 10px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .nav-logo .logo-img {
        height: 35px;
    }

    .footer-logo {
        height: 40px;
    }

    .nav-logo .tagline {
        font-size: 0.6rem;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }

    .hero-tagline em {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .download-text h2 {
        font-size: 2rem;
    }

    .app-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Touch states for mobile devices */
.touch-active {
    opacity: 0.8 !important;
    transform: scale(0.98) !important;
    transition: all 0.15s ease !important;
}

/* Improve touch targets on mobile */
@media (hover: none) and (pointer: coarse) {
    .btn {
        min-height: 44px;
        padding: 0.8rem 1.5rem;
    }
    
    .nav-link {
        padding: 0.8rem 1rem;
    }
    
    .social-links a {
        min-width: 44px;
        min-height: 44px;
    }
    
    .size-option {
        min-height: 44px;
    }
}

/* Reduce animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .floating-icon {
        animation: none !important;
    }
    
    .hero-content {
        animation: none !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary {
        border: 2px solid #000;
    }
    
    .feature-card {
        border: 2px solid #333;
    }
    
    .nav-link::after {
        height: 3px;
    }
}

/* Dark mode support (for future implementation) */
@media (prefers-color-scheme: dark) {
    :root {
        --text-color: #ffffff;
        --bg-color: #1a1a1a;
        --card-bg: #2a2a2a;
    }
}

/* Print styles */
@media print {
    .navbar,
    .floating-elements,
    .social-links,
    .hero-buttons,
    .signup-form {
        display: none !important;
    }
    
    .hero {
        background: white !important;
        color: black !important;
    }
    
    .hero-title,
    .section-header h2 {
        color: black !important;
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #5ABA4A 0%, #181818 100%);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #181818 0%, #5ABA4A 100%);
}

/* Enhanced Mobile Optimizations for All Sections */

/* Hero Section Mobile Improvements */
@media (max-width: 768px) {
    .hero {
        padding-top: 70px; /* Adjust for mobile navbar height */
        padding-bottom: 40px;
        min-height: calc(100vh - 70px);
    }
    
    .hero-container {
        padding: 2rem 1rem;
        gap: 2rem;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.1;
        margin-bottom: 1rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-tagline em {
        font-size: 1.1rem;
        display: block;
        margin-bottom: 0.3rem;
    }
    
    .tagline-translation {
        font-size: 0.8rem;
        margin-top: 0.2rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: none;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        justify-content: center;
        min-height: 50px;
        border-radius: 12px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.2rem;
        margin-top: 2rem;
    }
    
    .stat {
        min-width: auto;
        padding: 0.5rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
}

/* Section Headers Mobile Optimization */
@media (max-width: 768px) {
    .section-header {
        margin-bottom: 2.5rem;
        padding: 0 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 0.8rem;
    }
    
    .section-header p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}

/* Features Section Mobile Enhancements */
@media (max-width: 768px) {
    .features {
        padding: 50px 0;
    }
    
    .features-grid {
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
        margin-bottom: 1.2rem;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

/* How It Works Section Mobile Improvements */
@media (max-width: 768px) {
    .how-it-works {
        padding: 50px 0;
    }
    
    .steps-container {
        padding: 0 1rem;
    }
    
    .step {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.2rem;
        padding: 1.5rem;
        margin-bottom: 2rem;
        background: rgba(90, 186, 74, 0.02);
        border-radius: 15px;
        border: 1px solid rgba(90, 186, 74, 0.1);
    }
    
    .step:nth-child(even) {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
        margin: 0 auto;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
        background: rgba(90, 186, 74, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1rem;
        font-size: 1.3rem;
        color: #5ABA4A;
    }
    
    .step-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .step-content p {
        font-size: 0.9rem;
        line-height: 1.5;
        color: #666;
    }
}

/* Download/Waitlist Section Mobile Improvements */
@media (max-width: 768px) {
    .download {
        padding: 50px 0;
    }
    
    .download-content {
        padding: 0 1rem;
        gap: 2.5rem;
    }
    
    .download-text {
        text-align: center;
    }
    
    .download-text h2 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .download-text p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .waitlist-form {
        margin-bottom: 1.5rem;
    }
    
    .signup-form .form-group {
        flex-direction: column;
        gap: 1rem;
        max-width: 100%;
    }
    
    .signup-form input[type="email"] {
        width: 100%;
        padding: 1rem 1.2rem;
        font-size: 0.95rem;
        border-radius: 12px;
    }
    
    .signup-btn {
        width: 100%;
        padding: 1rem 1.5rem;
        border-radius: 12px;
        font-size: 0.95rem;
        justify-content: center;
    }
    
    .launch-info {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .info-item {
        font-size: 0.9rem;
        gap: 0.8rem;
    }
    
    .phones-container {
        height: auto;
        flex-direction: column;
        gap: 20px;
        padding: 20px 0;
        align-items: center;
    }
    
    .phone {
        position: relative !important;
        transform: none !important;
        left: auto !important;
        right: auto !important;
        width: 250px;
        height: 500px;
        margin: 0 auto;
    }
    
    .phone-1, .phone-2 {
        position: relative;
        transform: none;
        left: auto;
        right: auto;
    }
}

/* Footer Mobile Optimization */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        padding: 0 1rem;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-brand {
        margin-bottom: 1rem;
    }
    
    .footer-brand h3 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }
    
    .footer-tagline {
        font-size: 0.75rem;
        margin-bottom: 0.8rem;
    }
    
    .footer-brand p {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    .social-links {
        justify-content: center;
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-column h4 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .footer-column a {
        font-size: 0.85rem;
        display: block;
        padding: 0.3rem 0;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem 1rem 1rem;
        text-align: center;
        font-size: 0.8rem;
    }
    
    .footer-legal {
        gap: 1rem;
    }
}

/* Ultra-small mobile devices */
@media (max-width: 375px) {
    .hero {
        padding-top: 60px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 1.7rem;
    }
    
    .download-text h2 {
        font-size: 1.7rem;
    }
    
    .container {
        padding: 0 0.8rem;
    }
    
    .feature-card {
        padding: 1.5rem 1rem;
    }
    
    .step {
        padding: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .phone {
        width: 220px;
        height: 440px;
    }
    
    /* Ensure buttons remain full width on ultra-small devices */
    .hero-buttons .btn {
        width: 100% !important;
        max-width: none !important;
        padding: 0.9rem 1rem !important;
        font-size: 0.9rem !important;
        min-height: 48px !important;
    }
} 