/* ========================================================
   Art Steel - Comprehensive Master Responsive Engine
   Targeting: Ultrawide, Desktop, Laptop, Tablet, Mobile (320px - 2560px)
   ======================================================== */

/* ========================================================
   1. GLOBAL RESPONSIVE FOUNDATIONS & COMPONENT DEFAULTS
   ======================================================== */
*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
    position: relative;
    margin: 0;
    padding: 0;
}

body.menu-open {
    overflow: hidden !important;
    touch-action: none;
}

img, video, iframe, svg {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Fluid Typography Helpers */
.about-story-title,
.home-about-wrapper h2 {
    font-size: clamp(1.45rem, 4vw, 2.3rem);
    color: var(--navy-deep);
    line-height: 1.35;
    margin-bottom: 18px;
    text-align: right;
}

.section-heading-white {
    font-size: clamp(1.4rem, 4.2vw, 2.3rem);
    color: var(--navy-deep);
    margin-bottom: 12px;
    line-height: 1.3;
}

.section-subtitle-gray {
    color: var(--text-body);
    font-size: clamp(0.9rem, 2.2vw, 1.05rem);
    line-height: 1.75;
    margin-bottom: 0;
}

.section-header-centered {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 45px;
}

/* Base Component Rules (Desktop Defaults) */
.about-story-section,
.about-values-section,
.about-tech-section {
    padding: 80px 0;
}

.about-page-grid,
.about-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 50px;
    align-items: center;
    width: 100%;
}

.about-text-col {
    min-width: 0;
}

.about-story-desc {
    font-size: 1.05rem;
    line-height: 1.95;
    color: var(--text-body);
    margin-bottom: 25px;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 28px 0;
}

.about-stat-card {
    background: #ffffff;
    border: 1px solid rgba(15, 39, 66, 0.12);
    border-radius: 14px;
    padding: 18px 14px;
    text-align: center;
    box-shadow: var(--shadow-card);
}

.about-stat-number {
    color: var(--primary);
    font-size: 1.9rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 6px;
}

.about-stat-text {
    color: var(--text-body);
    font-size: 0.85rem;
    font-weight: 600;
}

.about-actions-row {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-top: 32px;
    flex-wrap: wrap;
}

.about-media-col {
    min-width: 0;
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-card);
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.about-image-wrapper:hover img {
    transform: scale(1.04);
}

.about-floating-experience {
    position: absolute;
    bottom: 22px;
    right: 22px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--primary);
    border-radius: 14px;
    padding: 14px 20px;
    text-align: center;
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(8px);
}

.about-floating-experience strong {
    font-size: 1.75rem;
    color: var(--primary-dark);
    display: block;
    line-height: 1;
    margin-bottom: 4px;
}

.about-floating-experience span {
    font-size: 0.8rem;
    color: var(--navy-deep);
    font-weight: 700;
}

/* Home About Components */
.home-about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    width: 100%;
}

.home-about-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 25px 0;
}

.home-about-feature-item {
    background: #ffffff;
    padding: 13px 16px;
    border-radius: 10px;
    border: 1px solid rgba(15, 39, 66, 0.08);
    border-right: 3px solid var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-card);
}

.home-about-feature-item i {
    color: var(--primary);
    font-size: 1.05rem;
    flex-shrink: 0;
}

.home-about-feature-item span {
    font-size: 0.92rem;
    color: var(--navy-deep);
    font-weight: 700;
}

.home-about-actions-row {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-top: 28px;
    flex-wrap: wrap;
}

/* Detail Page Layout (Services & Projects Detail) */
.detail-page-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    align-items: start;
    width: 100%;
}

.detail-sidebar {
    position: sticky;
    top: 100px;
}

/* Features Grid (Pillars & Values) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    width: 100%;
}

.feature-item {
    background: #ffffff;
    border: 1px solid rgba(15, 39, 66, 0.1);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-card);
}

.feature-item:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: var(--shadow-hover);
}

.feature-icon-box {
    width: 62px;
    height: 62px;
    border-radius: 16px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.3);
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    color: var(--primary);
    transition: transform 0.3s;
}

.feature-item:hover .feature-icon-box {
    transform: scale(1.08) rotate(-5deg);
    background: var(--navy-deep);
    color: #ffffff;
}

.feature-item h3 {
    color: var(--navy-deep);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.feature-item p {
    color: var(--text-body);
    font-size: 0.9rem;
    line-height: 1.75;
    margin-bottom: 0;
}

/* Factory Tech Banner */
.factory-tech-banner {
    background: linear-gradient(135deg, #0d2744 0%, #15385f 100%);
    border: 1px solid rgba(184, 142, 68, 0.25);
    border-radius: 20px;
    padding: 42px 35px;
    box-shadow: var(--shadow-card);
}

.factory-tech-title {
    font-size: clamp(1.35rem, 3.5vw, 1.9rem);
    color: #ffffff;
    margin-bottom: 14px;
}

.factory-tech-desc {
    color: #e2e8f0;
    font-size: clamp(0.92rem, 2vw, 1.05rem);
    line-height: 1.85;
    margin-bottom: 22px;
}

.factory-tags-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.factory-tags-strip span {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.88rem;
    color: #ffffff;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Services and Projects Card Action Buttons */
.service-actions-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-top: 20px;
}

.service-actions-row a {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    justify-content: center;
}

/* ========================================================
   2. ULTRAWIDE & LARGE MONITORS (>= 1400px)
   ======================================================== */
@media (min-width: 1400px) {
    .container {
        max-width: 1340px;
    }
    
    .hero-main-title {
        font-size: 4.2rem;
    }

    .hero-container {
        max-width: 1150px;
    }

    .modern-hero-title {
        font-size: 3.2rem;
    }

    .luxury-services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }

    .projects-masonry-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }
}

/* ========================================================
   3. STANDARD DESKTOP & LAPTOPS (1025px - 1399px)
   ======================================================== */
@media (min-width: 1025px) and (max-width: 1399px) {
    .container {
        max-width: 1180px;
    }

    .hero-main-title {
        font-size: 3.4rem;
    }

    .nav-links {
        gap: 6px;
    }

    .nav-links li a {
        padding: 8px 11px;
        font-size: 0.9rem;
    }

    .footer-columns-grid {
        grid-template-columns: 1.2fr 1fr 0.9fr 1.2fr;
        gap: 35px;
    }

    .luxury-services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 26px;
    }

    .projects-masonry-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

/* ========================================================
   4. TABLETS & SMALL LAPTOPS (769px - 1024px)
   ======================================================== */
@media (max-width: 1024px) {
    /* Header & Nav */
    .nav-links {
        gap: 4px;
    }

    .nav-links li a {
        padding: 7px 9px;
        font-size: 0.88rem;
    }

    .brand-name {
        font-size: 1.15rem;
    }

    .brand-sub {
        font-size: 0.68rem;
    }

    .header-phone-btn {
        padding: 8px 12px;
        font-size: 0.85rem;
    }

    .header-quote-btn {
        padding: 9px 15px;
        font-size: 0.88rem;
    }

    /* Hero Section */
    .modern-hero-section {
        padding: 55px 0 45px !important;
        min-height: auto !important;
    }

    .hero-split-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-lead-column {
        align-items: center;
        text-align: center;
    }

    .hero-main-title {
        font-size: 2.8rem;
        text-align: center;
    }

    .hero-main-desc {
        font-size: 1.05rem;
        max-width: 700px;
        text-align: center;
        margin: 0 auto 30px;
    }

    .hero-actions-group {
        justify-content: center;
    }

    .hero-metrics-strip {
        margin: 0 auto;
        width: 100%;
    }

    .hero-visual-column {
        max-width: 650px;
        margin: 0 auto;
        width: 100%;
    }

    /* Grids to 2 Columns */
    .luxury-services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 25px;
    }

    .projects-masonry-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px;
    }

    .modern-blog-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 25px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px;
    }

    .video-reels-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px;
    }

    /* Detail Page Layout Collapse */
    .detail-page-layout {
        display: flex !important;
        flex-direction: column !important;
        gap: 35px !important;
        width: 100% !important;
    }

    .detail-page-layout > div {
        width: 100% !important;
    }

    .detail-sidebar {
        position: static !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .contact-luxury-layout {
        display: flex !important;
        flex-direction: column !important;
        gap: 35px !important;
        width: 100% !important;
    }


    .article-detail-layout {
        display: flex !important;
        flex-direction: column !important;
        gap: 35px !important;
        width: 100% !important;
    }

    .article-detail-layout aside {
        position: static !important;
        width: 100% !important;
    }

    /* Footer */
    .footer-columns-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }
}

/* ========================================================
   5. MOBILE MENU ACTIVATION BREAKPOINT (<= 992px)
   ======================================================== */
@media (max-width: 992px) {
    /* Hide desktop nav links & desktop CTAs on tablet/mobile */
    .nav-links {
        display: none !important;
    }

    .header-phone-link {
        display: none !important;
    }

    .mobile-quick-call {
        display: inline-flex !important;
    }

    .mobile-menu-btn {
        display: flex !important;
    }

    .hide-mobile {
        display: none !important;
    }

    .show-mobile {
        display: inline-block !important;
    }

    /* Full Width Column Stacking for About Sections */
    .about-page-grid,
    .about-grid,
    .home-about-wrapper {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        gap: 35px !important;
    }

    .about-text-col,
    .about-media-col,
    .home-about-wrapper > div {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }
}

/* ========================================================
   6. PHABLETS & LARGE PHONES (576px - 768px)
   ======================================================== */
@media (max-width: 768px) {
    /* Container spacing */
    .container {
        padding: 0 16px;
    }

    section,
    .about-story-section,
    .about-values-section,
    .about-tech-section {
        padding: 55px 0 !important;
    }

    /* Executive Topbar on Mobile */
    .executive-topbar {
        padding: 5px 0 !important;
        font-size: 0.78rem !important;
        white-space: nowrap !important;
        line-height: 1 !important;
    }

    .topbar-inner {
        gap: 8px !important;
        white-space: nowrap !important;
    }

    .topbar-info-group,
    .topbar-actions-group {
        white-space: nowrap !important;
    }

    .topbar-phone-highlight {
        gap: 5px !important;
        white-space: nowrap !important;
    }

    .topbar-phone-highlight strong {
        font-size: 0.84rem !important;
        letter-spacing: 0.3px !important;
        white-space: nowrap !important;
    }

    .topbar-whatsapp-btn {
        padding: 3px 10px !important;
        font-size: 0.76rem !important;
        gap: 6px !important;
        white-space: nowrap !important;
        flex-shrink: 0 !important;
    }

    .topbar-whatsapp-btn span {
        font-size: 0.76rem !important;
        white-space: nowrap !important;
    }

    .topbar-live-dot {
        width: 5px !important;
        height: 5px !important;
    }

    /* Main Site Header */
    .main-site-header {
        padding: 10px 0;
    }

    .brand-logo-img {
        height: 42px;
        width: 42px;
    }

    .brand-name {
        font-size: 1.15rem;
    }

    .brand-sub {
        font-size: 0.65rem;
    }

    .header-quote-btn {
        padding: 8px 14px;
        font-size: 0.85rem;
    }

    /* Hero Section */
    .modern-hero-section {
        min-height: auto;
        padding: 75px 0 45px;
    }

    .hero-top-badge {
        font-size: 0.78rem;
        padding: 6px 14px;
        margin-bottom: 16px;
        max-width: 96%;
        text-align: center;
        white-space: normal;
        line-height: 1.4;
    }

    .modern-hero-section {
        padding: 35px 0 28px !important;
        min-height: auto !important;
    }

    .hero-top-badge {
        font-size: 0.76rem !important;
        padding: 4px 12px !important;
        margin-bottom: 12px !important;
        align-self: center !important;
    }

    .hero-main-title {
        font-size: 1.85rem !important;
        line-height: 1.3 !important;
        margin-bottom: 10px !important;
        text-align: center !important;
    }

    .hero-main-desc {
        font-size: 0.88rem !important;
        line-height: 1.6 !important;
        margin: 0 auto 16px !important;
        text-align: center !important;
        max-width: 95% !important;
        color: #cbd5e1 !important;
    }

    .hero-actions-group {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 8px !important;
        width: 100% !important;
        max-width: 420px !important;
        margin: 0 auto 16px !important;
    }

    .btn-hero-primary {
        width: 100% !important;
        justify-content: center !important;
        padding: 12px 18px !important;
        font-size: 0.92rem !important;
        border-radius: 10px !important;
        box-sizing: border-box !important;
    }

    .btn-hero-secondary,
    .btn-hero-whatsapp {
        flex: 1 1 calc(50% - 6px) !important;
        width: auto !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        height: 42px !important;
        padding: 0 12px !important;
        font-size: 0.82rem !important;
        border-radius: 10px !important;
        box-sizing: border-box !important;
        white-space: nowrap !important;
    }

    /* Refined Trust Metrics Micro-Strip on Mobile */
    .hero-metrics-strip {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 6px !important;
        padding: 8px 10px !important;
        border-radius: 12px !important;
        background: rgba(12, 35, 60, 0.75) !important;
        border: 1px solid rgba(184, 142, 68, 0.25) !important;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25) !important;
        width: 100% !important;
        max-width: 500px !important;
        margin: 0 auto !important;
        box-sizing: border-box !important;
    }

    .metric-divider {
        display: none !important;
    }

    .hero-metrics-strip .metric-item {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 2px !important;
        padding: 3px !important;
    }

    .hero-metrics-strip .metric-icon {
        display: none !important;
    }

    .hero-metrics-strip .metric-info {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .hero-metrics-strip .metric-val {
        font-size: 0.85rem !important;
        font-weight: 800 !important;
        color: #ffffff !important;
        line-height: 1.15 !important;
        white-space: nowrap !important;
    }

    .hero-metrics-strip .metric-lbl {
        font-size: 0.65rem !important;
        color: #cbd5e1 !important;
        line-height: 1.15 !important;
        white-space: nowrap !important;
    }

    /* Showcase Slider on Mobile */
    .hero-visual-column {
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 0 4px !important;
    }

    .showcase-media-frame {
        height: 220px !important;
        border-radius: 14px !important;
    }

    .hero-float-badge {
        display: none !important;
    }

    .showcase-caption-overlay {
        padding: 12px 14px !important;
    }

    .caption-tag {
        font-size: 0.72rem !important;
        padding: 3px 8px !important;
        margin-bottom: 4px !important;
    }

    .caption-title {
        font-size: 1.05rem !important;
        margin-bottom: 2px !important;
    }

    .caption-subtitle {
        font-size: 0.75rem !important;
    }

    .hero-service-pills {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Filter Tabs & Horizontal Scroll Strips */
    .filter-tabs-wrapper,
    .project-filter-bar {
        display: flex;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 10px;
        gap: 8px;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .filter-tabs-wrapper::-webkit-scrollbar,
    .project-filter-bar::-webkit-scrollbar {
        display: none;
    }

    .filter-tab-btn,
    .filter-pill {
        flex-shrink: 0;
        padding: 9px 16px;
        font-size: 0.85rem;
    }

    /* Grids to 1 Column */
    .luxury-services-grid {
        grid-template-columns: 1fr !important;
        gap: 22px;
    }

    .projects-masonry-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .modern-blog-grid {
        grid-template-columns: 1fr !important;
        gap: 22px;
    }

    .video-reels-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .workflow-section {
        padding: 35px 16px !important;
        margin: 45px 0 !important;
    }

    .workflow-steps-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        margin-top: 30px !important;
    }

    .standards-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .standard-card {
        padding: 18px 14px !important;
        gap: 12px !important;
    }

    .contact-container {
        flex-direction: column !important;
        gap: 25px !important;
    }

    .contact-info,
    .contact-form {
        width: 100% !important;
        max-width: 100% !important;
        padding: 24px 18px !important;
    }

    /* Forms */
    .form-inputs-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .form-group-full {
        grid-column: span 1;
    }

    .luxury-contact-form-card {
        padding: 24px 16px;
        border-radius: 16px;
    }

    .form-card-title {
        font-size: 1.4rem;
    }

    .form-card-subtitle {
        font-size: 0.88rem;
        margin-bottom: 20px;
    }

    /* Pre-Footer Banner */
    .pre-footer-banner {
        padding: 30px 0;
    }

    .pre-footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 18px;
    }

    .pre-footer-title {
        font-size: 1.3rem;
    }

    .pre-footer-actions {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }

    .btn-prefooter-quote,
    .btn-prefooter-whatsapp {
        width: 100%;
        justify-content: center;
        padding: 12px 18px;
    }

    /* Footer Columns */
    .footer-columns-grid {
        grid-template-columns: 1fr !important;
        gap: 28px;
        padding: 40px 0 30px;
    }

    .footer-col-about {
        align-items: center;
        text-align: center;
    }

    .footer-about-text {
        text-align: center;
    }

    .footer-trust-chips {
        justify-content: center;
    }

    .footer-social-row {
        justify-content: center;
    }

    .footer-col-heading {
        text-align: center;
        margin-bottom: 16px;
    }

    .footer-col-heading::after {
        right: 50%;
        transform: translateX(50%);
    }

    .footer-nav-list {
        align-items: center;
    }

    .footer-contact-cards {
        align-items: center;
    }

    .footer-contact-card {
        width: 100%;
        max-width: 380px;
    }

    /* Sub-Footer */
    .sub-footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .copyright-text {
        justify-content: center;
        font-size: 0.82rem;
    }

    .back-to-top-btn {
        width: 100%;
        justify-content: center;
    }

    /* Floating WhatsApp on Mobile */
    .floating-whatsapp {
        bottom: 18px;
        left: 16px;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }

    .whatsapp-tooltip {
        display: none !important;
    }

    .factory-tech-banner {
        padding: 28px 18px;
    }

    /* Footer Responsive 768px */
    .pre-footer-banner {
        padding: 35px 0 !important;
    }

    .pre-footer-inner {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 20px !important;
    }

    .pre-footer-actions {
        width: 100% !important;
        flex-direction: column !important;
        gap: 10px !important;
    }

    .btn-prefooter-quote,
    .btn-prefooter-whatsapp {
        width: 100% !important;
        justify-content: center !important;
    }

    .footer-columns-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 30px !important;
        padding: 45px 0 35px !important;
    }

    .sub-footer-inner {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 14px !important;
    }

    .copyright-text {
        justify-content: center !important;
        text-align: center !important;
    }
}

/* ========================================================
   7. PHABLETS / LARGE MOBILES (<= 576px)
   ======================================================== */
@media (max-width: 576px) {
    .home-about-features-grid {
        grid-template-columns: 1fr !important;
        gap: 10px;
        margin: 18px 0;
    }

    .home-about-actions-row {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .home-about-actions-row a {
        width: 100%;
        justify-content: center;
    }

    .about-actions-row {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .about-actions-row a {
        width: 100%;
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: 1fr !important;
        gap: 14px;
    }

    .factory-tags-strip span {
        width: 100%;
        justify-content: flex-start;
    }

    .archive-stream-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px;
    }

    .footer-columns-grid {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
    }
}

/* ========================================================
   8. SMALL SMARTPHONES (<= 480px down to 320px)
   ======================================================== */
@media (max-width: 480px) {
    .container {
        padding: 0 14px;
    }

    section,
    .about-story-section,
    .about-values-section,
    .about-tech-section {
        padding: 45px 0 !important;
    }

    /* Executive Topbar on Small Phones */
    .executive-topbar {
        padding: 4px 0 !important;
        font-size: 0.74rem !important;
    }

    .topbar-phone-highlight {
        gap: 4px !important;
    }

    .topbar-phone-highlight strong {
        font-size: 0.8rem !important;
        letter-spacing: 0.2px !important;
    }

    .topbar-whatsapp-btn {
        padding: 2.5px 8px !important;
        font-size: 0.72rem !important;
        gap: 4px !important;
    }

    .topbar-whatsapp-btn span {
        font-size: 0.72rem !important;
    }

    /* Header Compact on Small Phones */
    .main-site-header {
        padding: 8px 0 !important;
    }

    .brand-logo-img {
        height: 38px !important;
        width: 38px !important;
    }

    .brand-name {
        font-size: 1.05rem !important;
    }

    .brand-sub {
        display: none !important;
    }

    .header-quote-btn {
        display: none !important;
    }

    .mobile-quick-call {
        width: 36px !important;
        height: 36px !important;
        font-size: 0.85rem !important;
    }

    .mobile-menu-btn {
        width: 36px !important;
        height: 36px !important;
    }

    /* Hero on Small Mobile */
    .modern-hero-section {
        padding: 24px 0 20px !important;
    }

    .hero-top-badge {
        font-size: 0.72rem !important;
        padding: 3px 10px !important;
        margin-bottom: 8px !important;
    }

    .hero-main-title {
        font-size: 1.5rem !important;
        line-height: 1.28 !important;
        margin-bottom: 8px !important;
    }

    .hero-main-desc {
        font-size: 0.82rem !important;
        line-height: 1.55 !important;
        margin-bottom: 14px !important;
    }

    .hero-metrics-strip {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 6px !important;
        padding: 8px 10px !important;
        border-radius: 10px !important;
    }

    .hero-metrics-strip .metric-item {
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 6px !important;
        padding: 4px 6px !important;
        background: rgba(255, 255, 255, 0.04) !important;
        border-radius: 6px !important;
    }

    .hero-metrics-strip .metric-icon {
        display: none !important;
    }

    .hero-metrics-strip .metric-info {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .hero-metrics-strip .metric-val {
        font-size: 0.82rem !important;
        font-weight: 800 !important;
        color: #ffffff !important;
        line-height: 1.1 !important;
    }

    .hero-metrics-strip .metric-lbl {
        font-size: 0.62rem !important;
        color: #cbd5e1 !important;
        line-height: 1.1 !important;
    }

    .showcase-media-frame {
        height: 185px !important;
    }

    .caption-title {
        font-size: 0.95rem !important;
    }

    /* About Stats on Mobile */
    .about-stats-grid {
        grid-template-columns: 1fr !important;
        gap: 10px;
    }

    .about-stat-card {
        padding: 14px 12px;
    }

    .about-stat-number {
        font-size: 1.65rem;
    }

    .about-floating-experience {
        bottom: 12px;
        right: 12px;
        padding: 10px 14px;
    }

    .about-floating-experience strong {
        font-size: 1.45rem;
    }

    /* Service & Project Cards & Videos */
    .service-card-media,
    .project-card-media {
        height: 190px !important;
    }

    .video-reel-card video {
        height: 230px !important;
    }

    .featured-project-box {
        height: 280px !important;
    }

    .service-card-title {
        font-size: 1.15rem;
    }

    .service-card-desc {
        font-size: 0.85rem;
    }

    .service-card-header {
        gap: 10px;
    }

    .service-icon-box {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .btn-card-explore,
    .btn-card-whatsapp {
        font-size: 0.85rem;
        padding: 11px 12px;
    }

    /* Modern Page Hero (Internal Pages) */
    .modern-page-hero {
        padding: 75px 0 40px;
    }

    .modern-hero-title {
        font-size: 1.75rem;
    }

    .modern-hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-metrics-strip {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 4px !important;
        padding: 6px 8px !important;
        border-radius: 8px !important;
    }

    /* Contact Channel Cards */
    .contact-channel-card {
        padding: 14px 12px;
        gap: 10px;
    }

    .contact-channel-icon {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }

    .contact-channel-title {
        font-size: 1rem;
    }

    .contact-channel-desc {
        font-size: 0.8rem;
    }

    /* Blog */
    .blog-search-toolbar {
        padding: 12px;
        gap: 10px;
    }

    .blog-search-form {
        flex-direction: column;
    }

    .btn-blog-search {
        width: 100%;
    }

    .article-main-card {
        padding: 16px 12px;
    }

    .article-body-text {
        font-size: 0.95rem;
        line-height: 1.8;
    }

    .article-inner-cta {
        padding: 18px 12px;
    }

    .article-author-box {
        flex-direction: column;
        text-align: center;
    }

    /* Lightbox Modal */
    .lightbox-modal-content {
        max-width: 96vw;
        max-height: 80vh;
    }

    .lightbox-nav-btn {
        width: 36px;
        height: 36px;
        font-size: 0.95rem;
    }

    .lightbox-prev-btn { right: 4px; }
    .lightbox-next-btn { left: 4px; }

    /* Buttons */
    .btn,
    .btn-luxury-whatsapp {
        font-size: 0.92rem;
        padding: 12px 18px;
    }
}

/* ========================================================
   9. PRINT STYLESHEET OPTIMIZATION
   ======================================================== */
@media print {
    .executive-topbar,
    .main-site-header,
    .floating-whatsapp,
    .pre-footer-banner,
    .sub-footer-bar,
    .back-to-top-btn,
    .hero-actions-group {
        display: none !important;
    }

    body {
        background: #fff !important;
        color: #000 !important;
    }
}