/*--------------------------------------------------------------------- 
Modern Responsive Design - Yiucon Unlimited Concepts
---------------------------------------------------------------------*/

/* Large Desktops (1400px+) */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
    
    h1, .banner_taital {
        font-size: 4rem;
    }
    
    h2, .highest_text, .care_text {
        font-size: 3rem;
    }
}

/* Desktops (992px - 1399px) */
@media (max-width: 1399px) {
    .container {
        max-width: 1200px;
    }
}

/* Tablets & Small Desktops (768px - 991px) */
@media (max-width: 991px) {
    /* Layout Adjustments */
    .banner-grid,
    .about-grid,
    .care-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .banner_section {
        min-height: auto;
        padding: 120px 0 60px;
    }
    
    .banner-image {
        height: auto;
        min-height: 400px;
    }
    
    .section-padding {
        padding: 4rem 0;
    }
    
    .section-padding-small {
        padding: 3rem 0;
    }
    
    /* Typography */
    h1, .banner_taital {
        font-size: 2.75rem;
    }
    
    h2, .highest_text, .care_text, .contact_text {
        font-size: 2.25rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .long_text,
    .lorem_text,
    .ipsum_text {
        font-size: 1rem;
    }
    
    /* Navigation */
    .header_section {
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
    }
    
    .destop_header {
        display: none !important;
    }
    
    .mobile_header {
        display: block !important;
    }
    
    .mobile_header .container {
        max-width: 100%;
    }
    
    .mobile_header .navbar {
        width: 100%;
        padding: 0.875rem 1rem;
    }
    
    .mobile_header .logo img {
        height: 32px;
    }
    
    .navbar-toggler {
        padding: 0.45rem 0.55rem;
    }
    
    .navbar-nav {
        padding: 0.75rem 0;
        gap: 0;
    }
    
    .nav-link {
        padding: 0.75rem 1rem !important;
        font-size: 0.9375rem;
    }
    
    /* Stats Grid */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    /* Partners Slider */
    .partners-slider {
        gap: 1.5rem;
    }
    
    @keyframes slidePartners {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-220px * 9 - 1.5rem * 9));
        }
    }
    
    .partner-card {
        min-width: 220px;
        padding: 2.5rem 1.5rem;
        min-height: 160px;
    }
    
    .partner-logo {
        max-width: 150px;
        max-height: 70px;
    }
    
    /* Buttons */
    .btn_main {
        gap: 0.75rem;
    }
    
    .btn-primary,
    .btn-secondary,
    .about_us a,
    .read_bt a,
    .main_bt a {
        padding: 0.875rem 2rem;
        font-size: 0.9375rem;
    }
    
    /* Banner Showcase Grid - 3-column layout */
    .banner-showcase-grid {
        grid-template-columns: 2fr 1fr 1fr;
        grid-template-rows: repeat(3, 1fr);
        gap: 0.875rem;
        min-height: 560px;
    }
    
    .showcase-featured-service {
        grid-row: 1 / 3;
        padding: 2.5rem 1.75rem;
    }
    
    .service-icon-box-large {
        width: 100px;
        height: 100px;
    }
    
    .service-icon-box-large svg {
        width: 64px;
        height: 64px;
    }
    
    .showcase-featured-service h3 {
        font-size: 1.75rem;
    }
    
    .showcase-featured-service p {
        font-size: 0.9375rem;
    }
    
    .service-icon-box {
        width: 52px;
        height: 52px;
    }
    
    .stat-icon {
        width: 52px;
        height: 52px;
    }
    
    .stat-icon svg {
        width: 26px;
        height: 26px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .showcase-service {
        padding: 1rem;
    }
    
    .service-icon-box {
        width: 40px;
        height: 40px;
    }
    
    .service-icon-box svg {
        width: 24px;
        height: 24px;
    }
    
    /* Care Section - Reverse Order on Mobile for Better Flow */
    .care-grid {
        gap: 2rem;
    }
    
    .care-grid > *:first-child {
        order: 2;
    }
    
    .care-grid > *:last-child {
        order: 1;
    }
}

/* Mobile Landscape & Portrait Tablets (576px - 767px) */
@media (max-width: 767px) {
    /* Containers - FORCE OVERRIDE */
    body .container,
    body .container-fluid,
    section .container,
    .banner_section .container {
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
    }
    
    /* Header */
    .header_section {
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
    }
    
    /* Back to Home on smaller screens */
    .back-to-home-wrapper {
        padding: 1rem 0;
    }
    
    .back-to-home {
        font-size: 0.9375rem;
        padding: 0.4rem 0.75rem;
    }
    
    .destop_header {
        display: none !important;
    }
    
    .mobile_header {
        display: block !important;
    }
    
    .mobile_header .navbar {
        padding: 0.75rem 1rem;
    }
    
    .mobile_header .logo img,
    .logo_main img {
        height: 30px;
    }
    
    .navbar-toggler {
        padding: 0.4rem 0.5rem;
        border-width: 2px;
    }
    
    .navbar-toggler-icon {
        width: 26px;
        height: 26px;
    }
    
    /* Banner Section - FORCE OVERRIDE */
    body .banner_section {
        padding: 80px 0 40px !important;
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }
    
    body .banner_section .container {
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    .banner-label,
    .section-label {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }
    
    /* Hero Modern Section Overrides - MAXIMUM SPECIFICITY */
    body section#home .hero-modern-grid,
    body .banner_section .hero-modern-grid {
        gap: 1.5rem !important;
        padding: 1.5rem 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow: visible !important;
    }
    
    body section#home .hero-content-modern,
    body .banner_section .hero-content-modern {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        box-sizing: border-box !important;
    }
    
    body section#home .hero-content-modern *,
    body .banner_section .hero-content-modern * {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    body section#home .hero-title-modern,
    body .banner_section .hero-title-modern {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
        margin-bottom: 1rem !important;
    }
    
    body section#home .hero-gradient-text,
    body .banner_section .hero-gradient-text {
        font-size: 1.5rem !important;
    }
    
    body section#home .hero-description,
    body .banner_section .hero-description {
        font-size: 0.875rem !important;
        line-height: 1.6 !important;
        margin-bottom: 1.5rem !important;
    }
    
    body section#home .hero-features-grid,
    body .banner_section .hero-features-grid {
        grid-template-columns: 1fr !important;
        gap: 0.5rem !important;
    }
    
    body section#home .hero-feature-item,
    body .banner_section .hero-feature-item {
        font-size: 0.813rem !important;
    }
    
    body section#home .hero-cta-group,
    body .banner_section .hero-cta-group {
        width: 100% !important;
        flex-direction: column !important;
        gap: 0.75rem !important;
    }
    
    body section#home .btn-hero-primary,
    body section#home .btn-hero-secondary,
    body .banner_section .btn-hero-primary,
    body .banner_section .btn-hero-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 1rem 1.5rem !important;
        font-size: 0.938rem !important;
        box-sizing: border-box !important;
    }
    
    body section#home .hero-trust-badges,
    body .banner_section .hero-trust-badges {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    body section#home .trust-logos-slider,
    body .banner_section .trust-logos-slider {
        max-width: 100% !important;
        overflow: hidden !important;
    }
    
    /* Typography */
    h1, .banner_taital {
        font-size: 2.25rem;
        margin-bottom: 1rem;
    }
    
    h2, .highest_text, .care_text, .contact_text {
        font-size: 1.875rem;
        margin-bottom: 1.25rem;
    }
    
    h3, .selfideno_text {
        font-size: 1.25rem;
    }
    
    p, .long_text, .lorem_text, .ipsum_text, .lorem_ipsum_text {
        font-size: 0.9375rem;
        line-height: 1.6;
    }
    
    /* Buttons */
    .btn_main {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }
    
    .btn_main .about_us {
        margin-left: 0 !important;
    }
    
    .btn-primary,
    .btn-secondary,
    .about_us,
    .about_bt,
    .read_bt {
        width: 100%;
    }
    
    .btn-primary,
    .btn-secondary,
    .about_us a,
    .about_bt a,
    .read_bt a,
    .main_bt a {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }
    
    /* Sections */
    .section-padding {
        padding: 3rem 0;
    }
    
    .section-padding-small {
        padding: 2rem 0;
    }
    
    /* Banner Showcase Grid - Tablet */
    .banner-image {
        height: 520px;
    }
    
    /* 2-Column Layout (Featured Left, Services Stacked Right) */
    .banner-showcase-grid {
        grid-template-columns: 1.5fr 1fr;
        grid-template-rows: repeat(4, 1fr);
        gap: 0.75rem;
        min-height: 500px;
    }
    
    .showcase-featured-service {
        grid-column: 1 / 2;
        grid-row: 1 / 3;
        padding: 2rem 1.5rem;
    }
    
    .service-icon-box-large {
        width: 90px;
        height: 90px;
        margin-bottom: 1.5rem;
    }
    
    .service-icon-box-large svg {
        width: 52px;
        height: 52px;
    }
    
    .showcase-featured-service h3 {
        font-size: 1.625rem;
        margin-bottom: 0.875rem;
    }
    
    .showcase-featured-service p {
        font-size: 0.9375rem;
    }
    
    .service-icon-box {
        width: 52px;
        height: 52px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .service-icon-box {
        width: 48px;
        height: 48px;
    }
    
    .service-icon-box svg {
        width: 28px;
        height: 28px;
    }
    
    .showcase-service {
        padding: 1.5rem 1.25rem;
    }
    
    .showcase-service h4 {
        font-size: 1rem;
    }
    
    .showcase-service p {
        font-size: 0.8125rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .showcase-service {
        padding: 0.75rem;
    }
    
    .showcase-service h4 {
        font-size: 0.875rem;
    }
    
    .showcase-service p {
        font-size: 0.7rem;
    }
    
    .scroll-indicator {
        bottom: -35px;
        font-size: 0.7rem;
    }
    
    .image-card {
        padding: 1.25rem;
    }
    
    .image-card-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 1rem;
    }
    
    .image-card-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .image-card h4 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }
    
    .image-card p {
        font-size: 0.75rem;
    }
    
    /* Stats Section */
    .stats-section {
        padding: 3rem 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-card {
        padding: 2rem 1.5rem;
        animation: none !important;
    }
    
    .stat-card:hover {
        transform: translateY(-4px);
    }
    
    .stat-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 1.25rem;
    }
    
    .stat-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    /* Partners Section */
    .partners-section {
        padding: 3rem 0;
    }
    
    .partners-header {
        margin-bottom: 2.5rem;
    }
    
    .partners-label {
        font-size: 0.7rem;
        padding: 0.4rem 1.25rem;
        margin-bottom: 1rem;
    }
    
    .partners-title {
        font-size: 2rem;
    }
    
    .partners-description {
        font-size: 0.9375rem;
        line-height: 1.7;
        margin: 1.25rem auto 0;
    }
    
    .partners-slider {
        gap: 1rem;
    }
    
    @keyframes slidePartners {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-200px * 9 - 1rem * 9));
        }
    }
    
    .partner-card {
        min-width: 200px;
        padding: 2rem 1.25rem;
        min-height: 140px;
    }
    
    .partner-logo {
        max-width: 130px;
        max-height: 60px;
    }
    
    /* About Section */
    .about-grid,
    .care-grid,
    .contact-grid {
        gap: 2rem;
    }
    
    .about-content,
    .care-content {
        text-align: left;
    }
    
    /* Contact Form */
    .form-group {
        margin-bottom: 1.25rem;
    }
    
    .email-bt,
    .massage-bt {
        padding: 0.875rem 1rem;
        font-size: 0.9375rem;
    }
    
    .massage-bt {
        min-height: 130px;
    }
    
    /* Testimonials */
    .client_main {
        padding: 1.5rem;
    }
    
    .lorem_ipsum_text {
        font-size: 0.9375rem;
        line-height: 1.6;
    }
    
    .carousel-indicators {
        bottom: -40px;
    }
    
    .carousel-indicators li {
        width: 10px;
        height: 10px;
    }
    
    /* Carousel Controls */
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    /* Popup/Modal */
    .popup-overlay {
        padding: 0.75rem;
    }
    
    .popup-box {
        padding: 2rem 1.5rem;
        max-width: 100%;
    }
    
    .popup-box h2 {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }
    
    .popup-box p {
        font-size: 0.9375rem;
        margin-bottom: 1rem;
    }
    
    .popup-box button {
        padding: 0.875rem;
        font-size: 0.9375rem;
    }
    
    /* Footer */
    .copyright_section {
        padding: 1.5rem 0;
    }
    
    .copyright {
        font-size: 0.8125rem;
    }
}

/* Small Mobile (up to 575px) */
@media (max-width: 575px) {
    /* Even Smaller Adjustments - FORCE OVERRIDE */
    body .container,
    body .container-fluid,
    section .container,
    .banner_section .container {
        padding-left: 0.625rem !important;
        padding-right: 0.625rem !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    /* Mobile Navigation */
    .mobile_header .logo img {
        height: 28px;
    }
    
    .navbar-toggler {
        padding: 0.35rem 0.45rem;
    }
    
    h1, .banner_taital {
        font-size: 1.875rem;
    }
    
    h2, .highest_text, .care_text, .contact_text {
        font-size: 1.5rem;
    }
    
    /* Banner Section - FORCE OVERRIDE */
    body .banner_section {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }
    
    body .banner_section .container {
        padding-left: 0.625rem !important;
        padding-right: 0.625rem !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    /* Hero Modern Section - Extra Small Screens - MAXIMUM SPECIFICITY */
    body section#home .hero-modern-grid,
    body .banner_section .hero-modern-grid {
        gap: 1.25rem !important;
        padding: 1.25rem 0 !important;
    }
    
    body section#home .hero-title-modern,
    body .banner_section .hero-title-modern {
        font-size: 1.375rem !important;
        line-height: 1.3 !important;
    }
    
    body section#home .hero-gradient-text,
    body .banner_section .hero-gradient-text {
        font-size: 1.375rem !important;
    }
    
    body section#home .hero-description,
    body .banner_section .hero-description {
        font-size: 0.813rem !important;
        line-height: 1.5 !important;
    }
    
    body section#home .hero-badge,
    body .banner_section .hero-badge {
        font-size: 0.625rem !important;
        padding: 0.3rem 0.625rem !important;
    }
    
    body section#home .hero-feature-item,
    body .banner_section .hero-feature-item {
        font-size: 0.75rem !important;
    }
    
    body section#home .btn-hero-primary,
    body section#home .btn-hero-secondary,
    body .banner_section .btn-hero-primary,
    body .banner_section .btn-hero-secondary {
        padding: 0.875rem 1.25rem !important;
        font-size: 0.875rem !important;
    }
    
    /* Banner Showcase - Mobile */
    .banner-image {
        min-height: 520px;
        height: auto;
    }
    
    /* Compact 2-Column Grid for Mobile */
    .banner-showcase-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(4, auto);
        gap: 0.625rem;
        min-height: auto;
    }
    
    .showcase-featured-service {
        grid-column: 1 / 2;
        grid-row: 1 / 3;
        padding: 1.5rem 1.25rem;
        min-height: 240px;
    }
    
    .service-icon-box-large {
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }
    
    .service-icon-box-large svg {
        width: 44px;
        height: 44px;
    }
    
    .showcase-featured-service h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .showcase-featured-service p {
        font-size: 0.8125rem;
        line-height: 1.4;
    }
    
    .service-icon-box {
        width: 40px;
        height: 40px;
        margin-bottom: 0.625rem;
    }
    
    .service-icon-box svg {
        width: 24px;
        height: 24px;
    }
    
    .showcase-service {
        padding: 1.25rem 1rem;
        min-height: 120px;
    }
    
    .showcase-service h4 {
        font-size: 0.875rem;
        margin-bottom: 0.375rem;
    }
    
    .showcase-service p {
        font-size: 0.75rem;
        line-height: 1.3;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.6875rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }
    
    .showcase-stat {
        padding: 1.25rem 1rem;
        min-height: 120px;
    }
    
    .showcase-stat-highlight {
        min-height: 120px;
    }
    
    .showcase-stat-highlight .stat-number {
        font-size: 2rem;
        margin-bottom: 0.25rem;
    }
    
    .showcase-stat-highlight .stat-label {
        font-size: 0.75rem;
    }
    }
    
    .scroll-indicator {
        bottom: -30px;
    }
    
    .banner-image-grid {
        grid-template-columns: 1fr;
    }
    
    .image-card {
        aspect-ratio: auto;
        padding: 1.5rem;
    }
    
    .image-card-icon {
        width: 56px;
        height: 56px;
    }
    
    .image-card-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .section-padding {
        padding: 2.5rem 0;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Very Small Mobile (up to 375px) */
@media (max-width: 375px) {
    h1, .banner_taital {
        font-size: 1.625rem;
    }
    
    h2, .highest_text, .care_text, .contact_text {
        font-size: 1.375rem;
    }
    
    .logo_main img {
        height: 30px;
    }
    
    .btn-primary,
    .btn-secondary,
    .about_us a,
    .read_bt a,
    .main_bt a {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }
    
    .popup-box {
        padding: 1.5rem 1rem;
    }
    
    .partners-title {
        font-size: 1.75rem;
    }
    
    .partners-description {
        font-size: 0.875rem;
        line-height: 1.6;
        margin: 1rem auto 0;
        padding: 0 1rem;
    }
    
    .partners-slider {
        gap: 0.75rem;
    }
    
    @keyframes slidePartners {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-180px * 9 - 0.75rem * 9));
        }
    }
    
    .partner-card {
        min-width: 180px;
        padding: 1.5rem 1rem;
        min-height: 120px;
    }
    
    .partner-logo {
        max-width: 110px;
        max-height: 50px;
    }
}

/* Print Styles */
@media print {
    .header_section,
    .popup-overlay,
    .carousel-control-prev,
    .carousel-control-next,
    .carousel-indicators {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .banner_section,
    .about_section,
    .care_section {
        page-break-inside: avoid;
    }
}

/* High Resolution Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    img {
        image-rendering: -webkit-optimize-contrast;
    }
}

/* Landscape Orientation Specific */
@media (orientation: landscape) and (max-height: 600px) {
    .banner_section {
        min-height: auto;
        padding: 100px 0 40px;
    }
    
    .banner-image {
        min-height: 300px;
    }
}

/* Dark Mode Support (Future Enhancement) */
@media (prefers-color-scheme: dark) {
    /* Already using dark theme by default */
}

/* Reduced Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Inner Pages Responsive Adjustments */
@media (max-width: 991px) {
    .page-header {
        padding: 7.5rem 0 3rem;
    }
    
    .content-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .content-text {
        padding-right: 0;
    }
    
    .content-image,
    .contact-image-wrapper {
        position: relative;
        top: 0;
    }
    
    .services-grid-features {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .page-header {
        padding: 6.5rem 0 2.5rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header .lead {
        font-size: 1rem;
    }
    
    .section-intro {
        margin-bottom: 2.5rem;
    }
    
    .feature-list {
        gap: 1.5rem;
    }
    
    .feature-item {
        gap: 1rem;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .service-number {
        font-size: 3rem;
        top: -0.75rem;
        right: 1.5rem;
    }
    
    .services-grid-features {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.875rem;
    }
    
    .service-feature-card {
        padding: 1.25rem 0.875rem;
    }
    
    .service-icon {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .service-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .service-feature-card h4 {
        font-size: 0.875rem;
        line-height: 1.3;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .team-member-card {
        padding: 2rem 1.5rem;
    }
    
    .team-cta {
        padding: 3rem 1.5rem;
    }
}

@media (max-width: 575px) {
    .page-header {
        padding: 6rem 0 2rem;
    }
    
    .services-grid-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .service-feature-card {
        padding: 1.25rem 0.875rem;
        min-height: 120px;
    }
    
    .service-icon {
        margin-bottom: 0.625rem;
    }
    
    .service-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .service-feature-card h4 {
        font-size: 0.8125rem;
        line-height: 1.3;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* Touch Device Specific */
@media (hover: none) and (pointer: coarse) {
    .btn-primary:hover,
    .btn-secondary:hover,
    .nav-link:hover,
    .about_us a:hover,
    .read_bt a:hover {
        transform: none;
    }
    
    .image-card:hover {
        transform: none;
    }
}
