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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: linear-gradient(135deg, #e3f2fd 0%, #ffffff 50%, #f3e5f5 100%);
    min-height: 100vh;
}

/* Header Styles */
.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #333;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0395D3;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

.nav-link:hover {
    color: #0395D3;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #0395D3;
    transition: width 0.3s ease;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    height: 60px;
}

.mobile-login {
    display: none;
}

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

.login-link:hover {
    color: #0395D3;
}

/* Button Styles */
.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #0395D3 0%, #42a5f5 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(3, 149, 211, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(3, 149, 211, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #0395D3 0%, #64b5f6 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(3, 149, 211, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(66, 165, 245, 0.4);
}

/* Main Content */
.main-content {
    padding-top: 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-section {
    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: 2;
}

.hero-content {
    position: relative;
}

.content-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.content-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0395D3;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.hero-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* School Bus Animation */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.school-bus-container {
    position: relative;
    width: 500px;
    height: 400px;
    perspective: 1000px;
}

.school-bus {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: busFloat 6s ease-in-out infinite;
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes busFloat {
    0%, 100% { transform: translateY(0px) rotateY(-15deg) scale(1); }
    50% { transform: translateY(-10px) rotateY(-15deg) scale(1.02); }
}

.bus-image {
    max-width: 100%;
    max-height: 100%;
    width: 950px;
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.4));
    transform: rotateY(-15deg) rotateX(5deg);
    transition: transform 0.3s ease;
}

.bus-front {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.windshield {
    position: absolute;
    top: 25px;
    left: 35px;
    width: 130px;
    height: 85px;
    background: linear-gradient(135deg, #e8f4f8 0%, #d1e7dd 50%, #b0e0e6 100%);
    border-radius: 8px;
    border: 4px solid #333;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.grille {
    position: absolute;
    bottom: 45px;
    left: 45px;
    width: 110px;
    height: 45px;
    background: #333;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
}

.grille::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 3px,
        #222 3px,
        #222 6px
    );
}

.headlights {
    position: absolute;
    bottom: 35px;
    left: 25px;
    display: flex;
    gap: 25px;
}

.headlight {
    width: 25px;
    height: 15px;
    background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
    border-radius: 4px;
    border: 2px solid #333;
    box-shadow: 0 0 8px #fff;
    animation: headlightGlow 2s ease-in-out infinite;
    position: relative;
}

.headlight::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 8px;
    height: 8px;
    background: #ff9800;
    border-radius: 50%;
    animation: turnSignal 1.5s ease-in-out infinite;
}

@keyframes headlightGlow {
    0%, 100% { box-shadow: 0 0 10px #fff; }
    50% { box-shadow: 0 0 20px #fff, 0 0 30px #fff; }
}

.bus-side {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.bus-sign {
    position: absolute;
    top: 18px;
    left: 170px;
    background: #fff;
    color: #333;
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border: 2px solid #333;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.bus-stripes {
    position: absolute;
    top: 60px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.stripe {
    width: 200px;
    height: 8px;
    background: #333;
    border-radius: 4px;
}

.bus-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.signal-lights {
    position: absolute;
    top: 10px;
    left: 50px;
    display: flex;
    gap: 30px;
}

.signal-light {
    width: 15px;
    height: 15px;
    background: #ff9800;
    border-radius: 50%;
    animation: signalBlink 1.5s ease-in-out infinite;
}

@keyframes signalBlink {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.stop-lights {
    position: absolute;
    top: 10px;
    right: 50px;
    display: flex;
    gap: 30px;
}

.stop-light {
    width: 15px;
    height: 15px;
    background: #f44336;
    border-radius: 50%;
    animation: stopBlink 2s ease-in-out infinite;
}

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

/* Background Elements */
.background-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 8s ease-in-out infinite;
}

.bg-shape-1 {
    top: 10%;
    left: 5%;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #0395D3, #42a5f5);
    animation-delay: 0s;
}

.bg-shape-2 {
    top: 60%;
    right: 10%;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #e91e63, #f06292);
    animation-delay: 2s;
}

.bg-shape-3 {
    bottom: 20%;
    left: 20%;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #9c27b0, #ba68c8);
    animation-delay: 4s;
}

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

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 0 1rem;
    }
    
    /* Removed duplicate nav-menu styles */
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .content-card {
        padding: 2rem;
    }
    
    .school-bus-container {
        width: 350px;
        height: 280px;
    }
    
    .bus-image {
        width: 320px;
        max-height: 250px;
    }
    
    .nav-actions {
        gap: 0.5rem;
    }
    
    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    /* Statistics Mobile */
    .stats-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 0.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    /* Features Responsive */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .features-title {
        font-size: 2rem;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
    }
    
    .feature-icon svg {
        width: 35px;
        height: 35px;
    }
    
    /* Features Mobile */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-title {
        font-size: 1.8rem;
    }
    
    .feature-item {
        padding: 1.5rem 1rem;
    }
    
    .connecting-line {
        display: none;
    }
    
    /* Pricing Responsive */
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .pricing-card.featured {
        transform: scale(1.02);
    }
    
    .pricing-title {
        font-size: 2rem;
    }
    
    .billing-toggle {
        margin-bottom: 3rem;
    }
    
    /* How It Works Responsive */
    .step-item {
        flex-direction: column;
        gap: 2rem;
    }
    
    .step-content {
        flex-direction: column !important;
        gap: 2rem;
    }
    
    .step-number {
        position: static;
        transform: none;
        font-size: 4rem;
        text-align: center;
        margin-bottom: 1rem;
        opacity: 0.7;
    }
    
    .step-visual {
        flex: none;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .how-it-works-title {
        font-size: 2rem;
    }
    
    .how-it-works-subtitle {
        font-size: 1rem;
    }
    
    /* Pricing Mobile */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card.featured {
        transform: scale(1.01);
    }
    
    .pricing-title {
        font-size: 1.8rem;
    }
    
    .plan-price {
        font-size: 1.2rem;
    }
    
    /* Footer Responsive */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-brand {
        font-size: 1.5rem;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .app-downloads {
        align-items: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
}

/* Responsive Navigation */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

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

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

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

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        gap: 0;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }

    .nav-item {
        margin: 16px 0;
    }

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

    .nav-actions {
        display: none;
    }

    .mobile-login {
        display: block;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .school-bus-container {
        width: 280px;
        height: 220px;
    }
    
    .bus-image {
        width: 250px;
        max-height: 180px;
    }
    
    .content-card {
        padding: 1.5rem;
    }
    
    /* Statistics Responsive */
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus Styles for Accessibility */
.btn:focus,
.nav-link:focus,
.login-link:focus {
    outline: 2px solid #0395D3;
    outline-offset: 2px;
}

/* Statistics Section */
.statistics-section {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    align-items: center;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.stat-item:hover {
    transform: translateY(-3px);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #0395D3;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Statistics Animation */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-item {
    animation: countUp 0.8s ease-out;
}

.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.3s; }
.stat-item:nth-child(4) { animation-delay: 0.4s; }

/* Features Section */
.features-section {
    padding: 6rem 0;
    background: #fff;
    position: relative;
    z-index: 2;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.features-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 4rem;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
}

.feature-item {
    text-align: center;
    padding: 2rem 1rem;
    position: relative;
    z-index: 2;
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.feature-icon svg {
    width: 40px;
    height: 40px;
}

.tracking-icon {
    background: linear-gradient(135deg, #9c27b0, #ba68c8);
}

.attendance-icon {
    background: linear-gradient(135deg, #00bcd4, #4dd0e1);
}

.notification-icon {
    background: linear-gradient(135deg, #ff9800, #ffb74d);
}

.plus-sign {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: white;
    color: #00bcd4;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.feature-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
}

/* Connecting Line */
.connecting-line {
    position: relative;
    height: 2px;
    background: repeating-linear-gradient(
        to right,
        #ccc 0,
        #ccc 4px,
        transparent 4px,
        transparent 8px
    );
    margin: 0 auto;
    max-width: 800px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.line-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    position: relative;
    z-index: 3;
}

.purple-dot {
    background: #9c27b0;
    box-shadow: 0 2px 4px rgba(156, 39, 176, 0.3);
}

.blue-dot {
    background: #00bcd4;
    box-shadow: 0 2px 4px rgba(0, 188, 212, 0.3);
}

/* Feature Hover Effects */
.feature-item:hover .feature-icon {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-item:hover .feature-title {
    color: #0395D3;
}

/* Features Animation */
@keyframes featureFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-item {
    animation: featureFadeIn 0.8s ease-out;
}

.feature-item:nth-child(1) { animation-delay: 0.1s; }
.feature-item:nth-child(2) { animation-delay: 0.2s; }
.feature-item:nth-child(3) { animation-delay: 0.3s; }

/* Tabbed Interface */
.role-tabs {
    display: flex;
    justify-content: center;
    margin: 2rem 0 3rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.role-tab {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 30px;
    background: #f0f4f8;
    color: #4a5568;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.role-tab:hover {
    background: #e2e8f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.role-tab.active {
    background: #0395D3;
    color: white;
    box-shadow: 0 4px 8px rgba(3, 149, 211, 0.3);
}

/* Ensure steps containers are hidden by default */
.steps-container {
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    position: absolute;
    width: 100%;
    left: 0;
    padding: 0 2rem;
    box-sizing: border-box;
}

/* Only show active tab content */
.steps-container.active {
    display: block;
    opacity: 1;
    visibility: visible;
    position: relative;
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Payment Options */
.payment-options {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    gap: 0.5rem;
}

.payment-option {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.75rem;
    background: #f8fafc;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.payment-option:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
}

.payment-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.payment-text {
    font-size: 0.75rem;
    color: #4a5568;
    text-align: center;
}

.payment-amount {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-top: 1px solid #e2e8f0;
    margin-top: 1rem;
    font-weight: 600;
}

.role-tab {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 30px;
    background: #f0f4f8;
    color: #4a5568;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.role-tab:hover {
    background: #e2e8f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.role-tab.active {
    background: #0395D3;
    color: white;
    box-shadow: 0 4px 15px rgba(3, 149, 211, 0.3);
}

.steps-container {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.steps-container.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* How It Works Section */
.how-it-works-section {
    padding: 6rem 0;
    background: #f8f9fa;
    position: relative;
    z-index: 2;
}

.how-it-works-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.how-it-works-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 1.5rem;
}

.how-it-works-subtitle {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.6;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.step-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.step-number {
    font-size: 8rem;
    font-weight: 700;
    color: #e9ecef;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    line-height: 1;
    opacity: 0.6;
    pointer-events: none;
}

/* Tab-specific styles */
.tab-content {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
}

/* Mobile card styles */
.mobile-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    max-width: 300px;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.card-header {
    background: #f8fafc;
    padding: 0.75rem 1rem;
    font-weight: 600;
    color: #334155;
    border-bottom: 1px solid #e2e8f0;
}

/* Driver-specific styles */
.driver-welcome {
    padding: 1.5rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.driver-greeting {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0369a1;
    margin-bottom: 0.5rem;
}

.route-info {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.route-name {
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.route-stats {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: #64748b;
}

.start-route-btn {
    display: block;
    width: 100%;
    padding: 0.75rem;
    background: #0395D3;
    color: white;
    text-align: center;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.start-route-btn:hover {
    background: #0284c7;
    transform: translateY(-1px);
}

/* Alert styles */
.alert-list {
    padding: 0.5rem 0;
}

.alert-item {
    display: flex;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #f1f5f9;
    align-items: center;
}

.alert-icon {
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

.alert-text {
    font-size: 0.85rem;
    color: #334155;
}

/* Stats grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 1rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0369a1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.75rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Admin specific styles */
.admin-dashboard {
    padding: 1.5rem;
}

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

.admin-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
}

.admin-actions {
    display: flex;
    gap: 0.75rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .step-item {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .admin-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .admin-actions .btn {
        width: 100%;
    }
}


.step-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    width: 100%;
    position: relative;
    z-index: 2;
    min-height: 300px;
}

.step-visual {
    flex: 0 0 300px;
    position: relative;
    z-index: 3;
}

.mobile-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    min-height: 220px;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 3;
    background: rgba(255, 255, 255, 0.95);
}

.card-header {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    text-align: center;
}

.card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.content-line {
    height: 10px;
    background: #e9ecef;
    border-radius: 6px;
    margin-bottom: 0.5rem;
}

.install-button {
    background: #28a745;
    color: white;
    padding: 1rem 2rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
    margin-top: auto;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.search-bar {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    margin-top: 1.5rem;
    border: 1px solid #e9ecef;
}

.search-icon {
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.search-placeholder {
    color: #6c757d;
    font-size: 0.9rem;
}

.emoji-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex: 1;
    margin-top: 1rem;
}

.emoji {
    font-size: 4rem;
    text-align: center;
    margin: 0 0.5rem;
}

.step-text {
    flex: 1;
    position: relative;
    z-index: 3;
}

.step-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.step-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.step-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-list li {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.step-list li::before {
    content: '•';
    color: #0395D3;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Alternating Layout */
.step-item:nth-child(even) .step-content {
    flex-direction: row-reverse;
}

/* Step hover effects */
.step-item:hover .mobile-card {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

.step-item:hover .step-number {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

/* Step number positioning for alternating layout */
.step-item:nth-child(even) .step-number {
    left: 25%;
}

.step-item:nth-child(odd) .step-number {
    left: 75%;
}

/* Step Animation */
@keyframes stepFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-item {
    animation: stepFadeIn 0.8s ease-out;
}

.step-item:nth-child(1) { animation-delay: 0.1s; }
.step-item:nth-child(2) { animation-delay: 0.2s; }
.step-item:nth-child(3) { animation-delay: 0.3s; }
.step-item:nth-child(4) { animation-delay: 0.4s; }

/* Pricing Section */
.pricing-section {
    padding: 6rem 0;
    background: #fff;
    position: relative;
    z-index: 2;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.pricing-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.pricing-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Billing Toggle */
.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.toggle-label {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
}

.toggle-switch {
    width: 60px;
    height: 30px;
    background: #1a237e;
    border-radius: 15px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-slider {
    width: 24px;
    height: 24px;
    background: #ffeb3b;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 3px;
    transition: all 0.3s ease;
}

.toggle-switch.active .toggle-slider {
    transform: translateX(30px);
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.pricing-card.featured {
    background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
    color: white;
    border: 2px solid #1a237e;
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #0395D3;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.plan-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #333;
}

.pricing-card.featured .plan-title {
    color: white;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex: 1;
}

.plan-features li {
    padding: 0.75rem 0;
    font-size: 0.95rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-card.featured .plan-features li {
    color: rgba(255, 255, 255, 0.9);
}

.feature.included::before {
    content: '✓';
    color: #28a745;
    font-weight: bold;
    font-size: 1.1rem;
}

.pricing-card.featured .feature.included::before {
    color: #4caf50;
}

.feature.excluded::before {
    content: '✗';
    color: #dc3545;
    font-weight: bold;
    font-size: 1.1rem;
}

.pricing-card.featured .feature.excluded::before {
    color: #ff6b6b;
}

.plan-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
}

.pricing-card.featured .plan-price {
    color: white;
}

.plan-button {
    background: #0395D3;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.plan-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(3, 149, 211, 0.3);
}

.plan-button.featured {
    background: #0395D3;
    font-weight: 700;
    padding: 1.2rem 2rem;
}

/* Pricing Animation */
@keyframes pricingFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pricing-card {
    animation: pricingFadeIn 0.8s ease-out;
}

.pricing-card:nth-child(1) { animation-delay: 0.1s; }
.pricing-card:nth-child(2) { animation-delay: 0.2s; }
.pricing-card:nth-child(3) { animation-delay: 0.3s; }
.pricing-card:nth-child(4) { animation-delay: 0.4s; }

/* Footer Section */
.footer {
    background: #000;
    color: white;
    position: relative;
    z-index: 2;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem 2rem;
}

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

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

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

.social-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.footer-heading {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: white;
}

.location-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.help-center-link {
    color: #0395D3;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.help-center-link:hover {
    color: #42a5f5;
}

.app-downloads {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1rem 0;
}

.app-button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #333;
    color: white;
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    max-width: 200px;
}

.app-button:hover {
    background: #444;
    transform: translateY(-2px);
}

.app-icon {
    font-size: 1.5rem;
}

.app-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.app-label {
    font-size: 0.7rem;
    color: #ccc;
}

.app-name {
    font-size: 0.9rem;
    font-weight: 600;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

/* Copyright Bar */
.copyright-bar {
    border-top: 1px solid #333;
    padding: 1.5rem 0;
    background: #000;
}

.copyright-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.copyright-text {
    color: #ccc;
    font-size: 0.9rem;
    margin: 0;
}

/* Footer Animation */
@keyframes footerFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer {
    animation: footerFadeIn 0.8s ease-out;
}

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

.hero-content,
.hero-visual {
    animation: fadeInUp 1s ease-out;
}

/* Contact Page Styles */
.contact-main {
    min-height: 100vh;
    background: #fff;
    padding: 2rem 0;
    position: relative;
    z-index: 1;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
    color: #333;
}

.contact-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.contact-form-section {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.form-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #555;
}

.form-input,
.form-select,
.form-textarea {
    padding: 1rem;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #0395D3;
    box-shadow: 0 0 0 3px rgba(3, 149, 211, 0.1);
}

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

.submit-btn {
    margin-top: 1rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-info-section {
    color: #333;
}

.info-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #333;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.info-icon {
    font-size: 2rem;
    min-width: 50px;
    text-align: center;
}

.info-content {
    flex: 1;
}

.info-label {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.info-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-title {
        font-size: 2.5rem;
    }
    
    .contact-form-section {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .info-item {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-subtitle {
        font-size: 1rem;
    }
    
    .contact-form-section {
        padding: 1.5rem;
    }
    
    .form-title,
    .info-title {
        font-size: 1.5rem;
    }
}

.hero-visual {
    animation-delay: 0.3s;
} 

/* Meet the Team Section */
.team-section {
    padding: 6rem 0 4rem 0;
    background: #f8f9fa;
    position: relative;
    z-index: 2;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.team-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.team-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-top: 2rem;
}

.team-member {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    padding: 2.5rem 1.5rem 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    position: relative;
    z-index: 1;
}

.team-member:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 16px 40px rgba(3, 149, 211, 0.10);
    border-color: #0395D3;
}

.team-photo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.2rem;
    border: 3px solid #0395D3;
    box-shadow: 0 2px 8px rgba(3, 149, 211, 0.08);
    background: #e3f2fd;
}

.member-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 0.3rem;
}

.member-role {
    font-size: 1rem;
    color: #0395D3;
    font-weight: 600;
    margin-bottom: 0.7rem;
}

.member-desc {
    font-size: 0.97rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 600px) {
    /* HERO SECTION */
    .main-content {
        padding-top: 70px;
    }
    .hero-section {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.5rem;
        text-align: center;
    }
    .hero-title {
        font-size: 1.3rem;
    }
    .hero-subtitle {
        font-size: 1.05rem;
    }
    .hero-description {
        font-size: 0.95rem;
    }
    .content-card {
        padding: 1.2rem 0.7rem;
        border-radius: 12px;
    }
    .school-bus-container {
        width: 100%;
        max-width: 220px;
        height: auto;
        margin: 0 auto;
    }
    .bus-image {
        width: 100%;
        max-width: 200px;
        height: auto;
    }

    /* STATS SECTION */
    .stats-container {
        grid-template-columns: 1fr;
        gap: 0.7rem;
        padding: 0 0.5rem;
    }
    .stat-item {
        padding: 0.7rem 0.2rem;
    }
    .stat-number {
        font-size: 1.3rem;
    }
    .stat-label {
        font-size: 0.9rem;
    }

    /* FEATURES SECTION */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        margin-top: 1rem;
    }
    .feature-item {
        padding: 1.2rem 0.5rem;
    }
    .feature-title {
        font-size: 1.05rem;
    }
    .feature-description {
        font-size: 0.92rem;
    }
    .feature-icon {
        width: 48px;
        height: 48px;
    }
    .feature-icon svg {
        width: 24px;
        height: 24px;
    }

    /* HOW IT WORKS SECTION */
    .steps-container {
        gap: 1.2rem;
    }
    .step-item {
        flex-direction: column;
        gap: 1rem;
    }
    .step-content {
        flex-direction: column !important;
        gap: 1rem;
    }
    .step-number {
        position: static;
        transform: none;
        font-size: 2.2rem;
        text-align: center;
        margin-bottom: 0.5rem;
        opacity: 0.7;
    }
    .step-visual {
        flex: none;
        width: 100%;
        max-width: 180px;
        margin: 0 auto;
    }
    .mobile-card {
        padding: 1rem;
        min-height: 120px;
        border-radius: 10px;
    }
    .card-header {
        font-size: 1rem;
        margin-bottom: 0.7rem;
    }
    .emoji {
        font-size: 2rem;
    }
    .step-title {
        font-size: 1.05rem;
        margin-bottom: 0.5rem;
    }
    .step-description, .step-list li {
        font-size: 0.92rem;
    }

    /* PRICING SECTION */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        margin-top: 1rem;
    }
    .pricing-card {
        padding: 1.2rem 0.7rem;
        border-radius: 12px;
    }
    .plan-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    .plan-features li {
        font-size: 0.92rem;
        padding: 0.5rem 0;
    }
    .plan-price {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    .plan-button {
        font-size: 0.95rem;
        padding: 0.7rem 1rem;
    }
    .featured-badge {
        font-size: 0.7rem;
        top: -6px;
        right: 10px;
        padding: 0.3rem 0.7rem;
    }

    /* FOOTER SECTION */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        padding: 0 0.5rem;
    }
    .footer-brand {
        font-size: 1.1rem;
    }
    .footer-heading {
        font-size: 1rem;
    }
    .footer-link, .help-center-link, .app-label, .app-name {
        font-size: 0.92rem;
    }
    .app-button {
        max-width: 140px;
        padding: 0.5rem 0.7rem;
    }
    .copyright-bar {
        padding: 0.7rem 0;
    }
    .copyright-text {
        font-size: 0.8rem;
    }
    .social-icon {
        width: 32px;
        height: 32px;
    }
    .social-icon svg {
        width: 16px;
        height: 16px;
    }
} 

@media (max-width: 900px) {
    .navbar {
        padding: 0 0.5rem;
    }
    /* Removed conflicting nav-menu styles */
    
    .nav-item {
        width: 100%;
        text-align: center;
    }
    .nav-link {
        font-size: 1.2rem;
        padding: 1rem 0;
        width: 100%;
        display: block;
    }
    .nav-actions {
        flex-direction: column;
        gap: 0.7rem;
        margin-top: 1.5rem;
    }
    .hamburger {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        cursor: pointer;
        z-index: 2100;
        margin-left: 1rem;
    }
    .bar {
        width: 28px;
        height: 3px;
        background: #0395D3;
        margin: 4px 0;
        border-radius: 2px;
        transition: 0.3s;
    }
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    .mobile-login { display: block; }
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    height: 60px;
}

.btn.btn-primary {
    padding: 0.45rem 1.1rem;
    font-size: 0.95rem;
    border-radius: 7px;
    min-width: 0;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

@media (max-width: 900px) {
    .btn.btn-primary {
        padding: 0.38rem 0.9rem;
        font-size: 0.92rem;
        height: 34px;
    }
    .nav-actions {
        height: 40px;
    }
}

/* Achievement Section */
.achievement-section {
    padding: 6rem 2rem;
    background: #fff;
    position: relative;
    z-index: 2;
}

.achievement-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.achievement-visual {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    transition: transform 0.4s ease;
}

.achievement-visual:hover {
    transform: perspective(1000px) rotateY(0) rotateX(0) scale(1.05);
}

.achievement-visual img {
    width: 100%;
    height: auto;
    display: block;
}

.achievement-text {
    text-align: left;
}

.achievement-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0395D3; /* Matching brand color */
    margin-bottom: 1rem;
}

.achievement-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
}

.achievement-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .achievement-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .achievement-visual {
        transform: none;
        margin-bottom: 2rem;
    }

    .achievement-visual:hover {
        transform: scale(1.03);
    }

    .achievement-text {
        text-align: center;
    }

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

    .achievement-subtitle {
        font-size: 1.3rem;
    }
}