/* ==========================================================================
   RESPONSIVE OVERRIDES
   ========================================================================== */

/* Breakpoint: Extra Large Devices (1400px and up) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* Breakpoint: Large Desktop / Laptop (1200px to 1399px) */
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 2.6rem;
    }
    .section-title {
        font-size: 2rem;
    }
}

/* Breakpoint: Laptop / Small Desktop (992px to 1199px) */
@media (max-width: 991.98px) {
    .hero-section {
        padding: 60px 0 60px 0;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-bullets {
        display: inline-block;
        text-align: left;
    }
    
    .hero-bullets li {
        font-size: 0.95rem;
    }
    
    .hero-feature-cards {
        margin-top: 40px;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-feature-card {
        flex: 1 1 250px;
        max-width: 320px;
    }
    
    .trust-item {
        margin-bottom: 15px;
    }
    
    .trust-item:last-child {
        margin-bottom: 0;
    }
    
    .guru-stat-box {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding: 15px 0;
    }
    
    .guru-stat-box:last-child {
        border-bottom: none;
    }
    
    .consultation-form-wrapper {
        padding: 30px 20px;
    }
    
    .navbar-collapse {
        background-color: var(--bg-cream);
        border: 1px solid var(--border-color);
        border-radius: 8px;
        padding: 15px;
        margin-top: 15px;
        box-shadow: var(--shadow-md);
    }
    
    .navbar-nav .nav-link::after {
        display: none;
    }
}

/* Breakpoint: Tablets (768px to 991px) */
@media (max-width: 767.98px) {
    .section-padding {
        padding: 50px 0;
    }
    
    .section-title-wrapper {
        margin-bottom: 35px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .btn-custom {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .hero-action-buttons {
        display: flex;
        flex-direction: column;
        gap: 0;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .hero-feature-card {
        max-width: 100%;
    }
    
    /* Disable animation transitions on mobile for performance */
    .animate-on-scroll {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
        transition: none !important;
    }
}

/* Breakpoint: Mobiles (576px to 767px) */
@media (max-width: 575.98px) {
    .brand-text h5 {
        font-size: 0.95rem;
    }
    
    .brand-text p {
        font-size: 0.65rem;
    }
    
    .hero-title {
        font-size: 1.7rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .service-card {
        padding: 25px 15px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
}

/* Breakpoint: Small Mobile (Under 360px) */
@media (max-width: 359.98px) {
    .brand-text {
        display: none;
    }
    
    .navbar-brand img {
        height: 38px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
}
