/* ===== RESPONSIVE BREAKPOINTS ===== */
/* 
  Bootstrap 5 Breakpoints:
  xs: <576px
  sm: ≥576px
  md: ≥768px
  lg: ≥992px
  xl: ≥1200px
  xxl: ≥1400px
*/

/* ===== EXTRA LARGE SCREENS (XXL: ≥1400px) ===== */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1.2rem;
    }
    
    .service-card,
    .feature-card,
    .info-card {
        padding: 2.5rem;
    }
}

/* ===== LARGE SCREENS (XL: ≥1200px) ===== */
@media (min-width: 1200px) and (max-width: 1399px) {
    .hero-title {
        font-size: 3.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.6rem;
    }
    
    .shape-1 {
        width: 180px;
        height: 180px;
    }
    
    .shape-2 {
        width: 250px;
        height: 250px;
    }
}

/* ===== MEDIUM TO LARGE SCREENS (LG: ≥992px) ===== */
@media (min-width: 992px) and (max-width: 1199px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .service-card,
    .feature-card,
    .info-card {
        padding: 1.5rem;
    }
    
    .team-image {
        width: 100px;
        height: 100px;
    }
    
    .shape-1 {
        width: 150px;
        height: 150px;
    }
    
    .shape-2 {
        width: 200px;
        height: 200px;
    }
}

/* ===== MEDIUM SCREENS (MD: ≥768px) ===== */
@media (min-width: 768px) and (max-width: 991px) {
    .hero-section {
        padding: 80px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
        text-align: center;
    }
    
    .hero-description {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .service-card,
    .feature-card,
    .info-card,
    .team-member,
    .price-card,
    .blog-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .price-card.featured {
        transform: none;
        margin-top: 1rem;
    }
    
    .team-image {
        width: 90px;
        height: 90px;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .shape-1 {
        width: 120px;
        height: 120px;
        top: -30px;
        right: -30px;
    }
    
    .shape-2 {
        width: 150px;
        height: 150px;
        bottom: -50px;
        left: -50px;
    }
    
    /* Hide shapes on tablet to reduce clutter */
    .hero-shapes {
        display: none;
    }
}

/* ===== SMALL SCREENS (SM: ≥576px) ===== */
@media (min-width: 576px) and (max-width: 767px) {
    .hero-section {
        padding: 60px 0;
        margin-top: 70px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        text-align: center;
    }
    
    .hero-description {
        text-align: center;
        font-size: 1rem;
    }
    
    section {
        padding: 50px 0;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    h4 {
        font-size: 1.3rem;
    }
    
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .service-card,
    .feature-card,
    .info-card,
    .team-member,
    .price-card,
    .blog-card {
        padding: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .service-image,
    .blog-image {
        height: 180px;
    }
    
    .team-image {
        width: 80px;
        height: 80px;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .gallery-image {
        height: 200px;
    }
    
    .price {
        font-size: 1.8rem;
    }
    
    .price-amount {
        font-size: 2.2rem;
    }
    
    .price-card.featured {
        transform: none;
        border-width: 2px;
    }
    
    .price-card.featured:before {
        font-size: 0.8rem;
        padding: 0.25rem 0.75rem;
    }
    
    /* Hide hero shapes on small screens */
    .hero-shapes {
        display: none;
    }
}

/* ===== EXTRA SMALL SCREENS (XS: <576px) ===== */
@media (max-width: 575px) {
    /* Header adjustments */
    .navbar {
        padding: 0.75rem 0;
    }
    
    .navbar-brand {
        font-size: 1.3rem;
    }
    
    .navbar-nav .nav-link {
        margin: 0.25rem 0;
        padding: 0.5rem 0 !important;
        text-align: center;
    }
    
    /* Hero section mobile */
    .hero-section {
        padding: 40px 0;
        margin-top: 70px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 0.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        text-align: center;
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    /* Section spacing */
    section {
        padding: 40px 0;
    }
    
    /* Typography adjustments */
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.6rem; }
    h3 { font-size: 1.4rem; }
    h4 { font-size: 1.2rem; }
    h5 { font-size: 1.1rem; }
    h6 { font-size: 1rem; }
    
    /* Card adjustments */
    .service-card,
    .feature-card,
    .info-card,
    .team-member,
    .price-card,
    .blog-card,
    .consultation-card,
    .program-item,
    .strategy-item,
    .support-card,
    .quality-item,
    .process-step,
    .document-item,
    .criteria-card,
    .resource-item {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    /* Service and blog images */
    .service-image,
    .blog-image {
        height: 150px;
        margin-bottom: 1rem;
    }
    
    /* Team adjustments */
    .team-image {
        width: 70px;
        height: 70px;
        margin-bottom: 0.75rem;
    }
    
    .col-lg-2-4 {
        flex: 0 0 50%;
        max-width: 50%;
        margin-bottom: 1rem;
    }
    
    /* Contact form mobile */
    .contact-form {
        padding: 1.25rem;
    }
    
    .form-control {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }
    
    .btn-primary {
        padding: 0.5rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
    }
    
    /* Gallery mobile */
    .gallery-image {
        height: 150px;
        margin-bottom: 0.5rem;
    }
    
    /* Price cards mobile */
    .price {
        font-size: 1.5rem;
    }
    
    .price-amount {
        font-size: 2rem;
    }
    
    .price-card {
        margin-bottom: 1.5rem;
    }
    
    .price-card.featured {
        transform: none;
        border-width: 2px;
        margin-top: 0;
    }
    
    .price-card.featured:before {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
        top: -12px;
    }
    
    /* Footer mobile */
    .footer {
        text-align: center;
    }
    
    .footer .col-lg-4 {
        margin-bottom: 2rem;
    }
    
    /* FAQ mobile */
    .accordion-button {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .accordion-body {
overflow-x: hidden;
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    /* Reviews mobile */
    .review-card {
        padding: 1.25rem;
    }
    
    .review-card p {
        font-size: 1rem;
    }
    
    /* Feature items mobile */
    .feature-item {
        padding: 1rem;
    }
    
    .feature-item i {
        font-size: 2.5rem;
    }
    
    /* Icons mobile */
    .strategy-item i,
    .document-item i,
    .quality-item i,
    .resource-item i,
    .feature-card i,
    .info-card i {
        font-size: 2rem;
    }
    
    /* Breadcrumb mobile */
    .breadcrumb-nav {
        padding: 0.5rem 0;
        margin-top: 70px;
    }
    
    .breadcrumb-image {
        max-width: 20px;
    }
    
    /* Hide hero shapes completely on mobile */
    .hero-shapes {
        display: none;
    }
    
    /* Swiper mobile adjustments */
    .reviews-swiper {
        padding: 1rem 0 2rem;
    }
    
    .swiper-pagination {
        bottom: -10px !important;
    }
}

/* ===== ULTRA SMALL SCREENS (<400px) ===== */
@media (max-width: 399px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-description {
        font-size: 0.85rem;
    }
    
    .col-lg-2-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .service-card,
    .feature-card,
    .info-card,
    .team-member,
    .price-card,
    .blog-card {
        padding: 0.75rem;
    }
    
    .contact-form {
        padding: 1rem;
    }
    
    h2 { font-size: 1.4rem; }
    h3 { font-size: 1.2rem; }
    h4 { font-size: 1.1rem; }
}

/* ===== LANDSCAPE MOBILE ORIENTATION ===== */
@media (max-width: 767px) and (orientation: landscape) {
    .hero-section {
        padding: 30px 0;
        min-height: 60vh;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    section {
        padding: 30px 0;
    }
    
    .navbar {
        padding: 0.5rem 0;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .header,
    .breadcrumb-nav,
    .hero-shapes,
    .btn,
    .swiper-pagination,
    .navbar-toggler {
        display: none !important;
    }
    
    .hero-section {
        margin-top: 0;
        background: white !important;
        color: black !important;
    }
    
    body {
overflow-x: hidden;
        font-size: 12pt;
        line-height: 1.4;
        color: black !important;
        background: white !important;
    }
    
    .service-card,
    .feature-card,
    .info-card,
    .team-member,
    .price-card,
    .blog-card {
        box-shadow: none !important;
        border: 1px solid #ccc !important;
        break-inside: avoid;
    }
    
    section {
        padding: 20px 0;
    }
    
    .container {
        max-width: 100% !important;
    }
}

/* ===== ACCESSIBILITY ENHANCEMENTS ===== */
@media (prefers-reduced-motion: reduce) {
    .shape-1,
    .shape-2 {
        animation: none !important;
    }
    
    * {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .service-card,
    .feature-card,
    .info-card,
    .team-member,
    .price-card,
    .blog-card {
        border: 2px solid #000 !important;
    }
    
    .btn-primary {
        border: 2px solid #000 !important;
    }
    
    .form-control {
        border: 2px solid #000 !important;
    }
}

/* ===== SWIPER RESPONSIVE ===== */
@media (max-width: 768px) {
    .swiper {
        margin: 0 -10px;
    }
    
    .swiper-slide {
        padding: 0 10px;
    }
    
    .reviews-swiper .swiper-slide {
        width: 100%;
    }
}

/* ===== UTILITY RESPONSIVE CLASSES ===== */
@media (max-width: 575px) {
    .d-sm-none { display: none !important; }
    .text-sm-center { text-align: center !important; }
    .mb-sm-3 { margin-bottom: 1rem !important; }
    .py-sm-3 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
}

@media (max-width: 767px) {
    .d-md-none { display: none !important; }
    .text-md-center { text-align: center !important; }
    .mb-md-4 { margin-bottom: 1.5rem !important; }
}

@media (max-width: 991px) {
    .d-lg-none { display: none !important; }
    .text-lg-center { text-align: center !important; }
} 