/* Responsive Styles */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .highlight {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .hero-buttons .btn.me-3 {
        margin-right: 0 !important;
    }
    
    .navbar-collapse {
        background: var(--white);
        padding: 1rem;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        margin-top: 1rem;
    }
    
    .price-badge {
        display: inline-block;
        margin: 0.5rem 0;
    }
    
    .trust-badges .badge {
        display: block;
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    .cta-section .btn {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .footer {
        text-align: left;
    }
    
    .footer-contact li {
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-section {
        padding: 3rem 0;
    }
    
    .service-card {
        margin-bottom: 1.5rem;
    }
    
    .image-placeholder i {
        font-size: 5rem;
    }
    
    .image-placeholder {
        padding: 2rem;
    }
}

/* Tablet styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-buttons .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Animation delays for mobile */
@media (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0s !important;
    }
}
/* ============================= */
/* MOBILE NAVBAR FIX (LOGO + PRICE + TOGGLER) */
/* ============================= */
@media (max-width: 991.98px) {

    /* Make navbar content align in one row */
    .navbar .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    /* Logo stays left */
    .navbar-brand {
        display: flex;
        align-items: center;
        margin-right: auto;
    }

    /* Right-side group (price + toggle) */
    .navbar .d-lg-none {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-left: auto;
    }

    /* Prevent price badge from dropping to new line */
    .price-display {
        margin: 0;
        white-space: nowrap;
    }

    /* Adjust logo size ONLY on mobile */
    .navbar-brand img {
        max-height: 42px;
        width: auto;
    }

    /* Clean up toggler spacing */
    .navbar-toggler {
        padding: 6px 10px;
    }
}

