/* ===============================================
   RESPONSIVE CSS - Mobile & Tablet Styles
   ORGANIZED BY BREAKPOINTS
   =============================================== */

/* ===============================================
   DESKTOP - Large Screen (992px and above)
   =============================================== */
@media (min-width: 992px) {
    .navbar {
        width: calc(100% - 1rem);
        margin: 0.5rem;
    }
    
    /* Marquee Banner - Desktop */
    .marquee-banner {
        padding: 2rem 0;
    }
    
    .banner-text {
        line-height: 1;
        vertical-align: middle;
    }
    
    .banner-separator {
        line-height: 1;
        vertical-align: middle;
        position: relative;
        top: -6px;
    }
}

/* ===============================================
   LAPTOP/SMALL DESKTOP (992px - 1200px)
   =============================================== */

/* Tablet Portrait - 1024x1366 specific fixes */
@media (max-width: 1100px) and (min-width: 992px) {
    /* Contact CTA - Let's Work Together */
    .contact-cta-title {
        font-size: 6rem !important;
        line-height: 1.1 !important;
        padding: 0 1rem;
    }
    
    /* Average Rating Stars - keep in one line */
    .col-md-4 .fa-star {
        font-size: 1.5rem !important;
    }
}

@media (max-width: 1200px) and (min-width: 992px) {
    /* Marquee Banner - Laptop */
    .marquee-banner {
        padding: 2.5rem 0;
    }
    
    .banner-text {
        line-height: 1;
        vertical-align: middle;
    }
    
    .banner-separator {
        line-height: 1;
        vertical-align: middle;
        position: relative;
        top: -5px;
    }
    
    /* Why Choose Us Section */
    .benefits-circular-container {
        max-width: 750px;
        height: 500px;
    }

    .why-choose-circle {
        width: 250px !important;
        height: 250px !important;
    }

    .why-circle-content h2 {
        font-size: 2rem !important;
    }

    .benefits-circle-bg {
        width: 380px;
        height: 380px;
        left: 80px;
    }

    .benefit-item-1 {
        top: 25px;
        left: 340px;
    }

    .benefit-item-2 {
        top: 130px;
        left: 410px;
    }

    .benefit-item-3 {
        top: 250px;
        left: 410px;
    }

    .benefit-item-4 {
        bottom: 25px;
        left: 280px;
    }

    .benefit-icon {
        width: 60px !important;
        height: 60px !important;
        font-size: 1.5rem !important;
    }

    .benefit-line {
        width: 30px !important;
        margin: 0 10px !important;
    }

    .benefit-label h3 {
        font-size: 0.95rem !important;
    }

    .benefit-label p {
        font-size: 0.8rem !important;
        max-width: 180px !important;
    }
}

/* ===============================================
   TABLET & MOBILE (991px and below)
   =============================================== */
@media (max-width: 991px) {
    /* Global Mobile Fixes */
    html, body {
        overflow-x: hidden !important;
        max-width: 100vw;
    }
    
    .container {
        max-width: 100%;
        padding-right: 15px;
    }
    
    /* ====== NAVBAR ====== */
    .navbar {
        position: fixed !important;
        top: 0;
        left: 0;
        right: 0;
        padding: 0;
        margin: 0.75rem;
        border-radius: 16px;
        box-shadow: rgba(0, 0, 0, 0.12) 0px 0.706592px 0.706592px -0.666667px, 
                    rgba(0, 0, 0, 0.12) 0px 1.80656px 1.80656px -1.33333px, 
                    rgba(0, 0, 0, 0.11) 0px 3.62176px 3.62176px -2px, 
                    rgba(0, 0, 0, 0.10) 0px 6.8656px 6.8656px -2.66667px, 
                    rgba(0, 0, 0, 0.08) 0px 13.6468px 13.6468px -3.33333px, 
                    rgba(0, 0, 0, 0.05) 0px 30px 30px -4px, 
                    rgb(255, 255, 255) 0px 3px 1px 0px inset;
        border: 1px solid var(--border-color);
        background: rgba(255, 255, 255, 0.7) !important;
        backdrop-filter: blur(30px) !important;
        -webkit-backdrop-filter: blur(30px) !important;
        z-index: 1000;
        width: calc(100% - 1.5rem);
    }
    
    .navbar > .container {
        padding: 0.6rem 1rem;
    }
    
    /* Navbar Toggler - Custom hamburger */
    .navbar-toggler {
        border: none;
        padding: 0.5rem;
        border-radius: 6px;
        background: transparent;
        position: relative;
        width: 42px;
        height: 42px;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .navbar-toggler:focus {
        box-shadow: none;
        outline: none;
    }
    
    /* Custom Hamburger Icon */
    .navbar-toggler-icon {
        display: block;
        position: relative;
        width: 24px;
        height: 2px;
        background-color: var(--text-primary);
        transition: all 0.3s ease;
    }
    
    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after {
        content: '';
        position: absolute;
        height: 2px;
        background-color: var(--text-primary);
        left: 0;
        transition: all 0.3s ease;
    }
    
    .navbar-toggler-icon::before {
        top: -7px;
        width: 20px;
    }
    
    .navbar-toggler-icon::after {
        bottom: -7px;
        width: 16px;
    }
    
    /* Animated state when menu is open */
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
        background-color: transparent;
        width: 0;
        height: 0;
    }
    
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
        top: 0;
        width: 24px;
        transform: rotate(45deg);
    }
    
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
        bottom: 0;
        width: 24px;
        transform: rotate(-45deg);
    }
    
    /* Mobile Menu Dropdown */
    .navbar-collapse {
        position: static;
        width: 100%;
        background: transparent;
        padding: 0.5rem 0 0.25rem 0;
        box-shadow: none;
        overflow: hidden;
        z-index: 1000;
        margin-top: 0;
        border-radius: 0;
        display: block;
        transition: height 0.35s ease !important;
    }

    .navbar-collapse.collapsing {
        overflow: hidden !important;
        transition: height 0.35s ease !important;
    }

    .navbar-collapse.show {
        overflow: visible;
    }
    
    .navbar-close {
        display: none;
    }
    
    .navbar-nav {
        gap: 0.25rem;
        text-align: left;
        margin-top: 0;
        padding: 0;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    
    .nav-item {
        border: none;
        margin: 0;
        padding: 0;
        display: block;
        width: 100%;
        text-align: left;
    }
    
    .nav-link {
        padding: 0.6rem 1rem !important;
        margin: 0 !important;
        border-radius: 8px;
        transition: all 0.3s ease;
        font-size: 0.99rem;
        text-align: left !important;
        text-shadow: 0 3px 6px rgba(0, 0, 0, 0.18),
             0 1px 3px rgba(0, 0, 0, 0.12);  
        font-weight: 500;
        position: relative;
        display: block !important;
        color: #333;
        background: transparent;
        width: 100%;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-link:hover {
        background: transparent;
        color: #000;
    }
    
    /* ====== FAQ SECTION ====== */
    .faq-title {
        font-size: 2.5rem;
    }
    
    .faq-question h3 {
        font-size: 1rem !important;
    }
    
    .faq-question {
        padding: 1.2rem 1.5rem;
    }
    
    .faq-header {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    /* ====== ABOUT PAGE ====== */
    .about-hero-title {
        font-size: 2.2rem;
    }
    
    .about-agency-content,
    .who-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .about-highlights {
        padding-left: 3rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .banner-text {
        font-size: 2.5rem;
    }
    
    /* ====== MARQUEE BANNER ====== */
    .marquee-banner {
        line-height: 1;
        padding: 1rem;
    }
    
    .marquee-banner-content {
        line-height: 1;
    }
    
    /* ====== SERVICES PAGE ====== */
    .services-hero {
        padding: 10rem 0 6rem;
    }

    .services-hero-title {
        font-size: 3rem;
    }

    .hero-stat-card {
        flex-direction: column;
        text-align: center;
        min-height: 280px;
        height: 280px;
        padding: 2rem;
    }

    .hero-stat-content,
    .hero-stat-content-center {
        text-align: center;
    }

    .hero-stat-btn {
        margin-top: 1rem;
    }

    .customer-avatars {
        justify-content: center;
    }

    .hero-stat-visual-right {
        position: relative;
        right: 0;
        bottom: 0;
        margin-top: 1rem;
    }

    .service-item {
        padding: 3rem 0;
    }

    .service-main-title {
        font-size: 2.2rem;
    }

    .service-info-wrapper {
        flex-direction: column;
        gap: 2rem;
    }

    .service-image-box {
        max-width: 100%;
        margin-bottom: 2rem;
    }

    .service-arrow {
        align-self: flex-start;
    }

    .impact-title {
        font-size: 2.5rem;
    }

    .project-tabs {
        gap: 1rem;
    }

    .project-tab {
        padding: 0.75rem 1.5rem;
        font-size: 0.8rem;
    }

    .project-image {
        height: 350px;
        margin-bottom: 2rem;
    }

    .project-title {
        font-size: 1.75rem;
    }
    
    /* ====== APPOINTMENT CTA ====== */
    .appointment-title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

    .appointment-btn {
        margin-top: 2rem;
    }
    
    .appointment-cta-box {
        padding: 3rem 2rem;
        border-radius: 16px;
    }
    
    .appointment-cta-section .text-end {
        text-align: left !important;
        margin-top: 2rem;
    }
    
    .appointment-cta-section {
        padding: 3rem 0;
        margin-bottom: 2rem;
    }
    
    /* ====== PROJECTS PAGE ====== */
    .projects-hero {
        padding: 10rem 0 5rem;
    }

    .projects-hero-title {
        font-size: 3rem;
    }

    .projects-gallery {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 2rem;
    }
    
    /* ====== CHART/PARALLAX SECTION ====== */
    .parallax-image {
        transform: none !important;
    }
    
    .parallax-image-container {
        height: auto !important;
        min-height: 400px;
        overflow: visible;
    }
    
    .chart-container {
        position: relative !important;
    }
}

/* ===============================================
   TABLET PORTRAIT (768px - 991px)
   =============================================== */
@media (max-width: 991px) and (min-width: 768px) {
    /* ====== INDEX.HTML OPTIMIZATIONS ====== */
    
    /* Hero Section */
    .hero-title {
        font-size: 3.5rem !important;
    }
    
    .hero {
        padding: 10rem 0 7rem !important;
    }
    
    .hero-badge {
        font-size: 0.95rem !important;
        padding: 0.5rem 1.5rem !important;
    }
    
    /* Elevate Section */
    .elevate-title {
        font-size: 2.8rem !important;
    }
    
    .elevate-section {
        padding: 5rem 0 !important;
    }
    
    .elevate-graphic {
        height: 450px !important;
    }
    
    /* Services Grid */
    .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2rem !important;
    }
    
    .service-card {
        padding: 2rem !important;
    }
    
    .service-icon {
        font-size: 2.5rem !important;
        width: 70px !important;
        height: 70px !important;
    }
    
    /* Process Section */
    .process-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2rem !important;
    }
    
    .process-card {
        padding: 2rem !important;
    }
    
    .process-number {
        font-size: 2.5rem !important;
    }
    
    /* Footer */
    .footer-title {
        font-size: 2.2rem !important;
    }
    
    /* ====== ABOUT.HTML OPTIMIZATIONS ====== */
    
    .about-hero-title {
        font-size: 3.2rem !important;
    }
    
    .about-hero {
        padding: 10rem 0 6rem !important;
    }
    
    .about-highlights {
        padding-left: 2rem !important;
        gap: 2rem !important;
    }
    
    .about-agency-title {
        font-size: 2.5rem !important;
    }
    
    /* MVV Cards */
    .mvv-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2rem !important;
    }
    
    .mvv-card {
        padding: 2.5rem !important;
    }
    
    .mvv-icon {
        width: 60px !important;
        height: 60px !important;
        font-size: 1.8rem !important;
    }
    
    /* Stats Grid */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
    }
    
    .stat-number {
        font-size: 3rem !important;
    }
    
    /* ====== SERVICES.HTML OPTIMIZATIONS ====== */
    
    .services-hero-title {
        font-size: 3.2rem !important;
    }
    
    .services-hero {
        padding: 10rem 0 6rem !important;
    }
    
    .hero-stat-number {
        font-size: 3.5rem !important;
    }
    
    .service-main-title {
        font-size: 2.5rem !important;
    }
    
    .service-item {
        padding: 3rem 0 !important;
    }
    
    .service-features {
        gap: 1rem !important;
    }
    
    .feature-item {
        font-size: 0.85rem !important;
        padding: 0.6rem 1.2rem !important;
    }
    
    /* ====== PROJECTS.HTML OPTIMIZATIONS ====== */
    
    .projects-hero-title {
        font-size: 3.2rem !important;
    }
    
    .projects-hero {
        padding: 10rem 0 6rem !important;
    }
    
    .projects-gallery {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2rem !important;
    }
    
    .projects-item-title {
        font-size: 1.3rem !important;
    }
    
    /* ====== CONTACT.HTML OPTIMIZATIONS ====== */
    
    .contact-hero-title {
        font-size: 3.2rem !important;
    }
    
    .contact-email {
        font-size: 2.5rem !important;
    }
    
    .contact-hero {
        padding: 10rem 0 6rem !important;
    }
    
    .contact-form {
        padding: 2.5rem !important;
    }
    
    .form-group {
        margin-bottom: 1.5rem !important;
    }
    
    /* ====== CTA SECTIONS ====== */
    
    .appointment-cta-section {
        padding: 3rem 0 !important;
    }
    
    .appointment-cta-box {
        padding: 3rem 2.5rem !important;
    }
    
    .appointment-title {
        font-size: 2.8rem !important;
        line-height: 1.2 !important;
    }
    
    .appointment-badge {
        font-size: 0.8rem !important;
        padding: 0.45rem 1.3rem !important;
    }
    
    .appointment-btn {
        padding: 1.1rem 2.2rem !important;
        font-size: 1rem !important;
    }
    
    .contact-cta-section {
        padding: 6rem 0 !important;
    }
    
    .contact-cta-title {
        font-size: 3.5rem !important;
        line-height: 1.15 !important;
    }
    
    .contact-cta-badge {
        font-size: 0.9rem !important;
        padding: 0.7rem 1.8rem !important;
    }
    
    .contact-cta-btn {
        font-size: 1.1rem !important;
        padding: 1.2rem 2.5rem !important;
    }
    
    .contact-cta-bg-circle-1 {
        width: 200px !important;
        height: 200px !important;
        top: -30px !important;
        right: -30px !important;
    }
    
    .contact-cta-bg-circle-2 {
        width: 280px !important;
        height: 280px !important;
        bottom: -50px !important;
        left: -50px !important;
    }
    
    /* ====== MARQUEE BANNER ====== */
    .marquee-banner {
        padding: 2rem 0;
    }
    
    .banner-text {
        font-size: 2.5rem;
        line-height: 1;
        vertical-align: middle;
    }
    
    .banner-separator {
        font-size: 2.5rem;
        line-height: 1;
        vertical-align: middle;
        position: relative;
        top: -4px;
    }
    
    /* ====== WHY CHOOSE US ====== */
    .benefits-circular-container {
        height: auto !important;
        min-height: 600px;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
    }

    .why-choose-circle {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        width: 220px !important;
        height: 220px !important;
        margin-bottom: 2rem;
    }

    .why-circle-content h2 {
        font-size: 1.8rem !important;
    }

    .benefits-circle-bg {
        display: none !important;
    }

    .benefit-item {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        bottom: auto !important;
        right: auto !important;
        transform: none !important;
        flex-direction: row !important;
        margin-bottom: 1.5rem;
        width: 100%;
        max-width: 400px;
        justify-content: flex-start !important;
    }

    .benefit-item-1,
    .benefit-item-2,
    .benefit-item-3,
    .benefit-item-4 {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        bottom: auto !important;
    }

    .benefit-icon {
        width: 60px !important;
        height: 60px !important;
        font-size: 1.4rem !important;
    }

    .benefit-line {
        width: 30px !important;
        height: 2px !important;
        margin: 0 12px !important;
    }

    .benefit-label {
        position: relative !important;
        left: auto !important;
    }

    .benefit-label h3 {
        font-size: 1rem !important;
    }

    .benefit-label p {
        font-size: 0.85rem !important;
        max-width: 250px !important;
        white-space: normal !important;
    }
}

/* ===============================================
   MOBILE DEVICES (768px and below)
   =============================================== */
@media (max-width: 768px) {
    /* Hero badge */
    #hero .hero-badge {
        font-size: 0.7rem !important;
    }
    
    /* ====== NAVBAR ====== */
    .navbar {
        margin: 0.5rem;
        width: calc(100% - 1rem);
    }
    
    .navbar > .container {
        padding: 0.5rem 0.8rem;
    }
    
    .navbar-brand {
        font-size: 1.3rem;
    }
    
    .navbar-toggler {
        width: 38px;
        height: 38px;
        padding: 0.4rem;
    }
    
    .navbar-toggler-icon,
    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after {
        width: 20px;
    }
    
    .navbar-toggler-icon::before {
        top: -6px;
    }
    
    .navbar-toggler-icon::after {
        bottom: -6px;
    }
    
    /* ====== SERVICES SECTION ====== */
    #services .row:first-child {
        flex-direction: column;
    }
    
    #services .row:first-child .col-lg-6:last-child {
        margin-top: 2rem;
    }
    
    #services .row:first-child .col-lg-6:last-child > div {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 1.5rem !important;
    }
    
    #services .row:first-child .col-lg-6:last-child p {
        max-width: 100% !important;
    }
    
    .service-icon {
        font-size: 2.2rem !important;
        margin-bottom: 1rem !important;
    }
    
    .service-header {
        padding: 1rem !important;
    }
  
    /* ====== ABOUT SECTION ====== */
    #about .row:first-child {
        flex-direction: column;
    }
    
    #about .row:first-child .col-lg-6:last-child {
        margin-top: 2rem;
    }
    
    #about .row:first-child .col-lg-6:last-child > div {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 1.5rem !important;
    }
    
    #about .row:first-child .col-lg-6:last-child p {
        max-width: 100% !important;
    }
    
    /* ====== CONTACT CTA ====== */
    .contact-cta-title {
        font-size: 4.5rem !important;
        line-height: 1.1 !important;
        margin-bottom: 2.5rem !important;
    }

    .contact-cta-badge {
        font-size: 1rem !important;
        padding: 0.9rem 2rem !important;
        margin-bottom: 2rem !important;
    }

    .contact-cta-btn {
        font-size: 1.3rem !important;
    }
    
    /* ====== CONTACT EMAIL ====== */
    .contact-email {
        font-size: 1.8rem !important;
        word-break: break-all !important;
        overflow-wrap: break-word !important;
        max-width: 100% !important;
    }
        
    }
    
    /* ====== HERO SECTION ====== */
    .hero-content h1 {
        font-size: 2.8rem;
        letter-spacing: -1px;
    }

    .hero-content .subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .about-content {
        flex-direction: column;
    }

    .stats {
        gap: 1rem;
    }

    .stat-item {
        min-width: calc(50% - 0.5rem);
    }
    
    /* ====== PROJECT IMAGES ====== */
    .col-lg-6.fade-in.mb-4 > div {
        padding: 2rem 1.5rem !important;
    }
    
    .col-lg-6.fade-in.mb-4 img {
        max-height: 350px;
        object-fit: contain;
    }
    
    /* ====== ABOUT PAGE ====== */
    .about-hero-title {
        font-size: 2.2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .banner-text {
        font-size: 1.8rem;
        line-height: 1;
        vertical-align: middle;
    }
    
    .banner-separator {
        font-size: 1.8rem;
        line-height: 1;
        vertical-align: middle;
        position: relative;
        top: -3px;
    }
  
    /* ====== STATS GRID ====== */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }
    
    .stat-box {
        padding: 2rem 1rem !important;
    }
    
    .stat-number {
        font-size: 2rem !important;
    }
    
    .stat-label {
        font-size: 0.85rem !important;
    }
    
    /* ====== CHART/PARALLAX SECTION ====== */

    
    .chart-container {
        margin-top: 100px;
        overflow: visible;
    }
    
    #growth-chart {
        width: 100%;
        height: auto;
        min-height: 350px;
    }
    
    .parallax-image-container {
        height: 450px !important;
    }
    
    .parallax-image-container > div > div > div[style*="padding: 2rem"] {
        height: 90% !important;
        padding: 1rem !important;
    }


/* ===============================================
   MOBILE - WHY CHOOSE US (767px and below)
   =============================================== */
@media (max-width: 767px) {
    .benefits-circular-container {
        height: auto !important;
        min-height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 1rem 0;
    }

    .why-choose-circle {
        display: none !important;
    }

    .benefits-circle-bg {
        display: none !important;
    }

    .benefit-item {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        bottom: auto !important;
        right: auto !important;
        transform: none !important;
        flex-direction: row !important;
        margin-bottom: 0.5rem;
        width: 100%;
        padding: 1rem;
        justify-content: flex-start !important;
        gap: 3px;
    }

    .benefit-item-1,
    .benefit-item-2,
    .benefit-item-3,
    .benefit-item-4 {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        bottom: auto !important;
    }

    .benefit-icon {
        width: 55px !important;
        height: 55px !important;
        min-width: 55px !important;
        font-size: 1.2rem !important;
        margin-right: 10px;
    }

    .benefit-line {
        width: 30px !important;
        height: 2px !important;
        margin: 0 12px !important;
    }

    .benefit-label {
        position: relative !important;
        left: auto !important;
        padding-left: 10px;
    }

    .benefit-label h3 {
        font-size: 1rem !important;
        margin-bottom: 0.3rem;
    }

    .benefit-label p {
        font-size: 0.85rem !important;
        max-width: 220px !important;
        white-space: normal !important;
        line-height: 1.4;
    }
}

/* ===============================================
   SMALL MOBILE DEVICES (576px and below)
   =============================================== */
@media (max-width: 576px) {
    /* ====== GLOBAL TYPOGRAPHY ====== */
    
    /* Hero Section Headings */
    .hero-content h1,
    .about-hero-title,
    .services-hero-title,
    .projects-hero-title,
    .contact-hero-title {
        font-size: 2rem !important;
        line-height: 1.2 !important;
    }
    
    /* Section Titles */
    h2,
    .section-title,
    .faq-title,
    .impact-title,
    .appointment-title,
    .service-main-title,
    .contact-cta-title {
        font-size: 1.8rem !important;
        line-height: 1.3 !important;
    }
    
    /* Smaller Headings */
    h3,
    .stats-box h3,
    .service-number,
    .banner-text {
        font-size: 1.4rem !important;
        line-height: 1.3 !important;
    }
    
    /* Paragraphs & Body Text */
    p,
    .quote,
    .hero-content .subtitle,
    .service-desc-text,
    .impact-subtitle,
    .about-intro,
    .who-text,
    .faq-answer {
        font-size: 1rem !important;
        line-height: 1.6 !important;
    }
    
    /* Small Text & Labels */
    .hero-badge,
    .contact-cta-badge,
    .hero-stat-label,
    .feature-item {
        font-size: 0.85rem !important;
    }
    
    /* Buttons */
    .btn-custom,
    .contact-cta-btn,
    .appointment-btn {
        font-size: 1rem !important;
        padding: 1rem 2rem !important;
    }
    
    /* ====== NAVBAR ====== */
    .navbar {
        margin: 0.4rem;
        width: calc(100% - 0.8rem);
    }
    
    .navbar > .container {
        padding: 0.4rem 0.6rem;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .navbar-brand img {
        height: 38px !important;
    }
    
    /* ====== CONTACT CTA ====== */
    .contact-cta-title {
        font-size: 3.5rem !important;
    }

    .contact-cta-badge {
        font-size: 0.9rem !important;
        padding: 0.8rem 1.8rem !important;
    }

    .contact-cta-btn {
        font-size: 1.2rem !important;
        padding: 1.2rem 2.5rem !important;
    }
    
    /* ====== HERO ====== */
    .hero-content .subtitle {
        font-size: 1rem;
    }

    /* ====== SERVICES PAGE ====== */
    .services-hero {
        padding: 10rem 0 4rem;
    }

    .hero-stat-number {
        font-size: 3rem;
    }

    .hero-stat-label {
        font-size: 0.9rem;
    }

    .hero-stat-visual {
        width: 100px;
        height: 100px;
    }
  
    .service-main-title {
        font-size: 1.8rem;
    }

    .service-number {
        font-size: 1rem;
    }

    .feature-item {
        font-size: 0.75rem;
    }

    .service-desc-text {
        font-size: 0.9rem;
    }

    .impact-title {
        font-size: 2rem;
    }

    .impact-subtitle {
        font-size: 1rem;
    }

    .project-tabs {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .project-tab {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }

    .project-image {
        height: 250px;
    }

    .project-title {
        font-size: 1.5rem;
    }

    .project-description {
        font-size: 1rem;
    }

    .impact-stat-number {
        font-size: 2rem;
    }

    .impact-stat-label {
        font-size: 0.85rem;
    }
    
    /* ====== PROJECTS PAGE ====== */
    .projects-hero {
        padding: 9rem 0 4rem;
    }

    .projects-hero-title {
        font-size: 2.2rem;
    }

    .projects-hero-r-section {
        padding: 2rem 0;
    }

    .projects-filter-btn {
        padding: 0.6rem 1.25rem;
        font-size: 0.85rem;
    }

    .projects-gallery {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .projects-image-wrapper {
        height: 250px;
    }

    .project-overlay-title {
        font-size: 1.4rem;
    }

    /* ====== WHY CHOOSE SECTION ====== */
    .benefit-icon-circle {
        min-width: 50px;
        width: 30px;
        height: 50px;
    }

    .benefit-icon-circle i {
        font-size: 1.5rem;
    }

    .benefits-vertical-line {
        left: 23px;
        width: 3px;
    }

    .benefit-item {
        gap: 1rem;
    }

    .benefits-image-container {
        min-height: 300px;
    }

    /* ====== PROCESS SECTION ====== */
    .bg-light-section .col-lg-6 > p {
        margin-bottom: 1.5rem !important;
    }

    .why-choose-circle {
        width: 250px !important;
        height: 250px !important;
    }

    .why-circle-content h2 {
        font-size: 1.8rem !important;
    }

    .benefits-circular-container {
        height: auto !important;
        display: block;
        position: relative;
    }

    .benefits-circle-bg {
        display: none;
    }

    .benefit-item {
        position: static !important;
        transform: none !important;
        flex-direction: row !important;
        margin-bottom: 1.5rem;
        justify-content: flex-start !important;
    }

    .benefit-item-1,
    .benefit-item-2,
    .benefit-item-3,
    .benefit-item-4 {
        position: static !important;
        transform: none !important;
        flex-direction: row !important;
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
    }

    .benefit-icon {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.2rem !important;
        flex-shrink: 0;
    }

    .benefit-line {
        width: 20px !important;
        height: 2px !important;
    }

    .benefit-label {
        min-width: auto;
    }

    .benefit-label h3 {
        font-size: 0.95rem !important;
        margin-bottom: 0.2rem;
    }

    .benefit-label p {
        font-size: 0.85rem !important;
    }
    
    /* ====== CHART/PARALLAX SECTION ====== */
    .chart-container {
        margin-top: 80px;
    }
    
    #growth-chart {
        width: 100%;
        height: auto;
        min-height: 300px;
    }
    
    .parallax-image-container {
        height: 400px !important;
    }
    
    .parallax-image-container > div > div > div[style*="padding: 2rem"] {
        height: 95% !important;
        padding: 0.5rem !important;
    }
}

/* ===============================================
   CONTACT EMAIL - EXTRA SMALL (600px and below)
   =============================================== */
@media (max-width: 600px) {
    .contact-email {
        font-size: 1.5rem !important;
        word-break: break-all !important;
        overflow-wrap: break-word !important;
        max-width: 100% !important;
        text-align: center !important;
        justify-content: center !important;
        flex-wrap: wrap !important;
    }
    
    .contact-email i {
        font-size: 1.2rem !important;
    }
}

@media (max-width: 380px) {
    .contact-email {
        font-size: 1.2rem !important;
        word-break: break-all !important;
        overflow-wrap: break-word !important;
    }
    
    .contact-email i {
        font-size: 1rem !important;
    }
}

/* ===============================================
   CUSTOM DIMENSION (800px - 850px)
   =============================================== */
@media (max-width: 850px) and (min-width: 800px) {
    #services .row.align-items-center {
        flex-direction: column;
        align-items: flex-start !important;
    }
    
    #services .row.align-items-center .col-lg-6 {
        width: 100%;
        max-width: 100%;
    }
    
    #services .row.align-items-center .col-lg-6:first-child {
        text-align: left;
    }
    
    .service-badge {
        margin-left: 0;
        width: auto;
        max-width: 230px;
    }
    
    .section-title {
        text-align: left;
        font-size: 2.5rem;
        margin-bottom: 1rem !important;
    }
    
    #services .row.align-items-center .col-lg-6:last-child {
        margin-top: 1.5rem;
    }
    
    #services .row.align-items-center .col-lg-6:last-child > div {
        justify-content: flex-start !important;
        flex-direction: column;
        align-items: flex-start !important;
        gap: 1.2rem !important;
    }
    
    #services .row.align-items-center .col-lg-6:last-child p {
        max-width: 100% !important;
        text-align: left;
        margin-bottom: 0.5rem;
    }
    
    .btn-with-arrow {
        margin-left: 0;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .service-icon {
        font-size: 2.5rem;
    }
}
