* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0d9488;
    --secondary-color: #0f766e;
    --accent-color: #f97316;
    --success-color: #10b981;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f0fdfa;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --gradient-primary: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
    --gradient-accent: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}
/* ==================== NAVIGATION ENHANCEMENTS ==================== */
.navbar.scrolled {
    background: rgba(13, 148, 136, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-cta .btn-nav {
    background: var(--accent-color);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-cta .btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(249, 115, 22, 0.3);
}

/* ==================== NAVIGATION ==================== */
.navbar {
    background: rgba(13, 148, 136, 0.9); /* Semi-transparent teal */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding-top: 10px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.1),
        0 1px 3px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

/* On scroll - become more solid */
.navbar.scrolled {
    background: rgba(13, 148, 136, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.15),
        0 4px 6px rgba(0, 0, 0, 0.1);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            perspective: 1000px;
            margin-bottom: 10px; 
        }

        /* Enhanced 3D Logo */
        .logo-3d {
            font-size: 1rem;
            font-weight: 800;
            color: var(--text-color);
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
            padding: 15px 40px;

            margin: 0;
            /* margin-top: 20px; */
            transform-style: preserve-3d;
            transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        }

        .logo-3d:hover {
            transform: rotateY(15deg) rotateX(5deg) translateZ(30px);
        }

        .logo-3d::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary-color) 0%, #2c5282 100%);
            border-radius: 15px;
            transform: translateZ(-20px);
            box-shadow: 
                0 10px 30px var(--shadow-color),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
            z-index: -1;
        }

        .logo-3d::after {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
            border-radius: 20px;
            transform: translateZ(-30px);
            filter: blur(15px);
            opacity: 0.4;
            z-index: -2;
            transition: opacity 0.5s;
        }

        .logo-3d:hover::after {
            opacity: 0.7;
        }

        .logo-3d i {
            margin-right: 15px;
            color: var(--accent-color);
            transform: translateZ(20px);
            display: inline-block;
            animation: globe-spin 15s linear infinite;
        }

        .tagline-3d {
            font-size: 1.1rem;
            opacity: 0.95;
            margin-top: 15px;
            text-transform: uppercase;
            letter-spacing: 3px;
            position: relative;
            padding: 10px 20px;
            background: rgba(42, 157, 143, 0.15);
            border-radius: 30px;
            backdrop-filter: blur(5px);
            transform: translateZ(10px);
            transition: all 0.5s;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .tagline-3d:hover {
            background: rgba(42, 157, 143, 0.3);
            letter-spacing: 4px;
            transform: translateZ(20px);
        }

        .tagline-3d::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 30px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Animation for globe icon */
        @keyframes globe-spin {
            0% { transform: translateZ(20px) rotate(0deg); }
            100% { transform: translateZ(20px) rotate(360deg); }
        }

        /* Floating particles background */
        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            border-radius: 50%;
            background: rgba(230, 57, 70, 0.2);
            animation: float 15s infinite linear;
        }

        @keyframes float {
            0% {
                transform: translateY(100vh) translateX(0) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 0.7;
            }
            90% {
                opacity: 0.7;
            }
            100% {
                transform: translateY(-100px) translateX(100px) rotate(360deg);
                opacity: 0;
            }
        }

        /* Controls for animation */
        .controls {
            display: flex;
            gap: 15px;
            margin-top: 30px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .control-btn {
            padding: 10px 20px;
            background: rgba(42, 157, 143, 0.2);
            border: 1px solid rgba(42, 157, 143, 0.4);
            color: var(--text-color);
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: 600;
            letter-spacing: 1px;
        }

        .control-btn:hover {
            background: rgba(42, 157, 143, 0.4);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        /* Info section */
        .info {
            max-width: 800px;
            text-align: center;
            margin-top: 40px;
            padding: 25px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .info h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: var(--secondary-color);
        }

        .info p {
            line-height: 1.6;
            margin-bottom: 15px;
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .logo-3d {
                font-size: 0.8rem;
                padding: 15px 25px;
            }
            
            .tagline-3d {
                font-size: 0.9rem;
                letter-spacing: 2px;
            }
            
            .header h2 {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .logo-3d {
                font-size: 0.8rem;
                padding: 10px 20px;
                margin-top: 5px;
            }
            
            .tagline-3d {
                font-size: 0.8rem;
                letter-spacing: 1px;
            }
            
            .controls {
                flex-direction: column;
                align-items: center;
            }
            
            .control-btn {
                width: 200px;
            }
        }

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
    font-size: 20px;
}


.nav-link:hover {
    opacity: 0.8;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ==================== HERO SECTION ==================== */
/* .hero {
    
    background: url('/assets/img/bg3.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    opacity: 0.95;
    color: white;
    padding: 150px 20px 80px;
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
} */

  /* ==================== ENHANCED HERO SECTION ==================== */
        .hero {
            position: relative;
            color: white;
            padding: 150px 20px 0px;
            margin-top: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 10vh;
            overflow: hidden;
        }

        /* Parallax Background with Gradient Animation */
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                linear-gradient(135deg, rgba(13, 148, 136, 0.95) 0%, rgba(15, 118, 110, 0.92) 100%),
                url('/assets/img/hero-bg.jpg');
            background-size: cover;
            background-position: center center;
            background-repeat: no-repeat;
            background-attachment: fixed;
            z-index: -2;
            animation: gradientShift 15s ease-in-out infinite alternate;
        }

        @keyframes gradientShift {
            0% {
                background: 
                    linear-gradient(135deg, rgba(13, 148, 136, 0.95) 0%, rgba(15, 118, 110, 0.92) 100%),
                    url('/assets/img/hero-bg.jpg');
            }
            100% {
                background: 
                    linear-gradient(135deg, rgba(15, 118, 110, 0.92) 0%, rgba(13, 148, 136, 0.95) 100%),
                    url('/assets/img/hero-bg.jpg');
            }
        }

        /* Animated Geometric Pattern Overlay */
        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 20%),
                radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 20%);
            z-index: -1;
            animation: patternMove 20s linear infinite;
        }

        @keyframes patternMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }

        .hero-content {
            max-width: 1200px;
            width: 100%;
            position: relative;
            z-index: 3;
            text-align: center;
        }

        /* Animated Title with Typing Effect */
        .hero-title {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            margin-bottom: 1.5rem;
            font-weight: 800;
            line-height: 1.1;
            text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }

        .title-line {
            display: block;
            overflow: hidden;
            position: relative;
            margin-bottom: 0.5rem;
        }

        .title-line:nth-child(1) {
            animation: slideInLeft 1s ease-out 0.3s both;
        }

        .title-line:nth-child(2) {
            animation: slideInLeft 1s ease-out 0.6s both;
        }

        .title-line:nth-child(3) {
            animation: slideInLeft 1s ease-out 0.9s both;
        }

        .highlight {
            color: var(--accent-color);
            position: relative;
            display: inline-block;
        }

        .highlight::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 12px;
            background: rgba(245, 158, 11, 0.3);
            z-index: -1;
            border-radius: 4px;
            animation: highlightPulse 2s ease-in-out infinite;
        }

        @keyframes highlightPulse {
            0%, 100% { height: 12px; background: rgba(245, 158, 11, 0.3); }
            50% { height: 15px; background: rgba(245, 158, 11, 0.5); }
        }

        /* Enhanced Subtitle with Fade In */
        .hero-subtitle {
            font-size: clamp(1.1rem, 2vw, 1.5rem);
            margin-bottom: 2.5rem;
            opacity: 0.95;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            animation: fadeInUp 1s ease-out 1.2s both;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        }

        /* Enhanced CTA Buttons */
        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin-bottom: 3rem;
            animation: fadeInUp 1s ease-out 1.5s both;
        }

        .btn {
            padding: 16px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.7s;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn-primary {
            background: var(--accent-color);
            color: white;
            box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3);
        }

        .btn-primary:hover {
            background: #f97316;
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 15px 30px rgba(245, 158, 11, 0.4);
        }

        .pulse {
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7); }
            70% { box-shadow: 0 0 0 15px rgba(245, 158, 11, 0); }
            100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
        }

        /* Animated Transport Icons */
        .transport-animation {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            z-index: 2;
        }

        .transport-icon {
            position: absolute;
            font-size: clamp(30px, 4vw, 60px);
            color: rgba(255, 255, 255, 0.15);
            animation: moveAcross 20s linear infinite;
        }

        .transport-icon:nth-child(1) { top: 15%; left: -10%; animation-delay: 0s; }
        .transport-icon:nth-child(2) { top: 25%; left: -10%; animation-delay: 5s; }
        .transport-icon:nth-child(3) { top: 35%; left: -10%; animation-delay: 10s; }
        .transport-icon:nth-child(4) { top: 45%; left: -10%; animation-delay: 15s; }
        .transport-icon:nth-child(5) { top: 55%; left: -10%; animation-delay: 2s; }
        .transport-icon:nth-child(6) { top: 65%; left: -10%; animation-delay: 8s; }
        .transport-icon:nth-child(7) { top: 75%; left: -10%; animation-delay: 12s; }

        @keyframes moveAcross {
            0% {
                transform: translateX(0) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateX(120vw) rotate(10deg);
                opacity: 0;
            }
        }

        /* Quick Search Bar with Glassmorphism */
        .quick-search-container {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(15px);
            border-radius: 20px;
            padding: 30px;
            max-width: 900px;
            margin: 0 auto;
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            animation: fadeInUp 1s ease-out 1.8s both;
        }

        .quick-search-title {
            font-size: 1.5rem;
            margin-bottom: 25px;
            color: white;
            text-align: center;
            font-weight: 600;
        }

        .quick-search-form {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            align-items: end;
        }

        .search-field {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 12px;
            padding: 15px 20px;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .search-field:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .search-field i {
            color: var(--primary-color);
            font-size: 1.2rem;
        }

        .search-field input, .search-field select {
            border: none;
            outline: none;
            width: 100%;
            font-size: 1rem;
            background: transparent;
            color: #1e293b;
        }

        .search-field input::placeholder {
            color: #64748b;
        }

        .btn-search {
            background: var(--accent-color);
            color: white;
            border: none;
            padding: 18px 40px;
            border-radius: 12px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            grid-column: 1 / -1;
            justify-self: center;
            width: 200px;
        }

        .btn-search:hover {
            background: #f97316;
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 15px 30px rgba(245, 158, 11, 0.4);
        }

        /* Stats Counter */
        .stats-counter {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 50px;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease-out 2.1s both;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--accent-color);
            margin-bottom: 5px;
            display: block;
        }

        .stat-label {
            font-size: 0.9rem;
            opacity: 0.9;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Animations */
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero {
                padding: 120px 20px 80px;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn {
                width: 100%;
                max-width: 300px;
            }

            .quick-search-form {
                grid-template-columns: 1fr;
            }

            .stats-counter {
                gap: 20px;
            }

            .stat-number {
                font-size: 2rem;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 2.2rem;
            }

            .hero-subtitle {
                font-size: 1.1rem;
            }

            .quick-search-container {
                padding: 20px;
            }
        }


        /* ==================== ANIMATIONS ==================== */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes slideInLeft {
    from { transform: translateX(-100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
    from { transform: translateX(100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes fadeInUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}
/* About Section */
.about {
    padding: 80px 20px;
    background: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin: 50px 0;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about-text .lead {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
}

.key-points {
    margin: 30px 0;
}

.key-points .point {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.key-points .point i {
    color: var(--success-color);
    margin-top: 3px;
    font-size: 1.2rem;
}

.key-points .point span {
    color: var(--text-dark);
    line-height: 1.6;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stats-row .stat {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.stats-row .stat h4 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stats-row .stat p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.about-image {
    position: relative;
}

.about-image .image-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image img:hover {
    transform: scale(1.05);
}

.image-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--accent-color);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}



.cta-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    margin-top: 60px;
}

.cta-box h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.about .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta-box .btn-primary {
    background: white;
    color: var(--primary-color);
}

.cta-box .btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.cta-box .btn-primary:hover {
    background: #f8fafc;
}

.cta-box .btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .founder-card {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    
    .founder-info {
        text-align: center;
    }
    
    .founder-info .quote {
        border-left: none;
        padding-left: 0;
        border-top: 2px solid var(--accent-color);
        padding-top: 15px;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 60px 15px;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .founder-card {
        padding: 20px;
    }
    
    .cta-box {
        padding: 40px 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .about-text h3 {
        font-size: 1.6rem;
    }
    
    .founder-card {
        gap: 20px;
    }
    
    .founder-image {
        width: 150px;
        height: 150px;
    }
}
/* ==================== SECTION STYLING ==================== */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

section {
    padding: 60px 20px;
}

section:nth-child(odd) {
    background: var(--bg-light);
}

/* ==================== SERVICES SECTION ==================== */
.services {
    max-width: 1200px;
    margin: 0 auto;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-color);
}

.service-card:hover {
        transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(13, 148, 136, 0.15);
}

.service-card.coming-soon {
    opacity: 0.7;
    border-top-color: #9ca3af;
}

.service-icon {
    font-size: 60px;
    margin-bottom: 1rem;
    display: block;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
}
.service-card.featured {
    border: 2px solid var(--accent-color);
}

.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: white;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, var(--accent-color), #f97316);
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 15px 0;
}

.tag {
    background: #ccfbf1;
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

/* ==================== FEATURES SECTION ==================== */
.features {
    max-width: 1200px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px;
    background: var(--bg-white);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    padding: 30px;
    background: white;
    border-radius: 15px;
    transition: all 0.3s ease;
    overflow: hidden;
}
.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    transform: scaleX(1);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 1rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.feature-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.feature-item p {
    color: var(--text-light);
    line-height: 1.8;
}
.feature-item:hover .feature-icon {
    transform: rotate(15deg) scale(1.1);
}

/* ==================== HOW IT WORKS ==================== */
.how-it-works {
    background: var(--bg-light);
    max-width: 1200px;
    margin: 0 auto;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 20px;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.step p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.step-arrow {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: bold;
}

/* ==================== STATS SECTION ==================== */
.stats {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    
    color: white;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat p {
    font-size: 1.1rem;
    opacity: 0.9;
}
.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 40px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin: 15px 0;
    background: linear-gradient(135deg, #ffffff, #cbd5e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-text {
    font-size: 18px;
    color: #cbd5e1;
}

/* ==================== PROCESS STEPS ==================== */
.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 60px auto 0;
    position: relative;
}

.step {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 15px;
    width: 200px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 20px;
    position: relative;
}

.step-number::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px dashed var(--primary-color);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.step-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.step-connector {
    flex: 1;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    margin: 0 20px;
    position: relative;
}

.step-connector::after {
    content: '→';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 24px;
    animation: bounce 1s infinite;
}

/* ==================== TESTIMONIALS ==================== */
.testimonials {
    max-width: 1200px;
    margin: 0 auto;
}
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--accent-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    
}
.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 100px;
    color: rgba(13, 148, 136, 0.05);
    font-family: serif;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card .stars {
    margin: 0 0 1rem;
    font-size: 1.2rem;
}

.testimonial-card .review {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.testimonial-card .reviewer {
    font-weight: 600;
    color: var(--primary-color);
}
.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.testimonial-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.user-info h4 {
    margin: 0;
    color: var(--text-dark);
}

.user-info span {
    color: var(--text-light);
    font-size: 14px;
}

.rating {
    margin-left: auto;
    color: var(--accent-color);
}

.testimonial-text {
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    color: var(--text-light);
    font-size: 14px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.testimonial-footer span {
    display: flex;
    align-items: center;
    gap: 5px;
}
/* ==================== CONTACT SECTION ==================== */
/* Contact Section */
.contact {
    padding: 80px 20px;
    background: var(--bg-light);
}

.contact .container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
}

.contact-item h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-item p {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-item span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.contact-form h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--bg-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(13, 148, 136, 0.2);
}

.btn-submit i {
    font-size: 1.1rem;
}

/* Map Placeholder */
.map-placeholder {
    height: 300px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.map-overlay {
    text-align: center;
    z-index: 2;
}

.map-overlay i {
    font-size: 50px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.map-overlay h4 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.map-overlay p {
    opacity: 0.9;
}

/* Add pattern background to map */
.map-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, rgba(255,255,255,0.1) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255,255,255,0.1) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(255,255,255,0.1) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(255,255,255,0.1) 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    opacity: 0.3;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 60px 15px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .contact-item {
        padding: 20px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .map-placeholder {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .contact-item {
        flex-direction: row;
        gap: 15px;
    }
    
   
    
    .contact-form {
        padding: 25px 20px;
    }
    
    .btn-submit {
        padding: 14px;
        font-size: 1rem;
    }
}

/* ==================== FOOTER ==================== */
footer {
    background: linear-gradient(135deg, #134e4a 0%, #0f766e 100%);
    color: #ecf0f1;
    padding: 80px 60px 20px;
    position: relative;
    overflow: hidden;
    
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #f97316, #fb923c, #f97316);
    background-size: 200% 100%;
    animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column h3 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: white;
    position: relative;
    padding-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: #f97316;
    bottom: 0;
    left: 0;
    border-radius: 2px;
}

.footer-column:first-child h3::after {
    left: 0;
    width: 70px;
}

.footer-column p {
    color: #bdc3c7;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-column a {
    color: #bdc3c7;
    margin-bottom: 12px;
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    position: relative;
    padding-left: 0;
}

.footer-column a:hover {
    color: #f97316;
    transform: translateX(5px);
}

.footer-column a::before {
    content: '›';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #f97316;
}

.footer-column a:hover::before {
    opacity: 1;
    left: -10px;
}

/* Contact Info Styling */
.footer-column .contact-info {
    margin-top: 5px;
}

.footer .address-section {
    display: flex;
}

.footer .address-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    margin-top: 4px;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.footer .address-icon i {
    color: #f97316;
    font-size: 18px;
}

.footer .address-details {
    flex: 1;
}

.footer .address-line {
    display: flex;
    flex-wrap: wrap;
}

.footer .address-label {
    color: #95a5a6;
    font-weight: 500;
    min-width: 140px;
    font-size: 0.85rem;
    text-transform: capitalize;
}

.footer .address-value {
    color: white;
    font-weight: 400;
    flex: 1;
    font-size: 0.9rem;
    min-width: 150px;
}

.footer .contactt-details {
    display: flex;
    flex-direction: column;
}

.footer .contactt-item {
    display: flex;
    transition: all 0.3s ease;
}

.footer .contactt-item:hover {
    transform: translateX(5px);
}

.footer .contactt-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    margin-top: 4px;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.footer .contactt-icon i {
    color: #f97316;
    font-size: 18px;
}

.footer .contactt-text {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
}

.footer .contactt-label {
    color: #95a5a6;
    font-weight: 500;
    min-width: 100px;
    font-size: 0.85rem;
    text-transform: capitalize;
}

.footer .contactt-value {
    color: white;
    font-weight: 400;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s;
}

.footer .contactt-value:hover {
    color: #f97316;
}

/* Copyright Section */
.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #95a5a6;
    font-size: 0.9rem;
    margin-top: 20px;
}

.copyright p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.footer-legal a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: #f97316;
}

/* ==================== RESPONSIVE DESIGN ==================== */
/* ==================== RESPONSIVE DESIGN ENHANCEMENTS ==================== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .quick-search {
        grid-template-columns: 1fr;
    }
    
    .services-container {
        grid-template-columns: 1fr;
    }
    
    .app-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .app-features {
        grid-template-columns: 1fr;
    }
    
    .download-buttons {
        flex-direction: column;
    }
    
    .process-steps {
        flex-direction: column;
        gap: 40px;
    }
    
    .step-connector {
        width: 3px;
        height: 40px;
        margin: 0;
    }
    
    .step-connector::after {
        content: '↓';
        right: auto;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .chat-widget {
        width: calc(100% - 40px);
        right: 20px;
        bottom: 80px;
    }
    
    .fab-container {
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        width: 95%;
    }
    
    .booking-options {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* Tablet (768px) */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background: var(--primary-color);
        width: 100%;
        text-align: center;
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        flex-direction: column;
        padding: 120px 20px 60px;
        text-align: center;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .hero-animation {
        width: 100%;
        order: -1;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-container,
    .features-grid,
    .testimonials-container {
        grid-template-columns: 1fr;
    }

    .steps-container {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .stats {
        grid-template-columns: 1fr 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
    body {
        font-size: 14px;
    }

    .nav-container {
        padding: 0 15px;
    }

    .logo h1 {
        font-size: 18px;
    }

    .logo .tagline {
        font-size: 10px;
    }

    .hero {
        padding: 100px 15px 40px;
        margin-top: 50px;
    }

    .hero h1 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .hero-animation {
        width: 200px;
        height: 200px;
    }

    .bus-icon, .train-icon {
        font-size: 50px;
    }

    section {
        padding: 40px 15px;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .service-card,
    .feature-item,
    .testimonial-card {
        padding: 20px;
    }

    .service-icon {
        font-size: 40px;
    }

    .feature-icon {
        font-size: 36px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .stat h3 {
        font-size: 1.8rem;
    }

    .stat p {
        font-size: 0.95rem;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 40px 15px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }

    .footer {
        padding: 30px 15px 15px;
    }

    .footer-section h4 {
        font-size: 1rem;
    }

    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
}

/* Extra Small Mobile (320px) */
@media (max-width: 320px) {
    .hero h1 {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 1.25rem;
    }

    .hero-animation {
        width: 150px;
        height: 150px;
    }

    .bus-icon, .train-icon {
        font-size: 40px;
    }
}

/* Print Styles */
@media print {
    nav, .cta-buttons, .btn-service, .contact-form {
        display: none;
    }

    section {
        page-break-inside: avoid;
    }
}