/* Root Variables for Modern UI Framework */
:root {
    --primary-color: #007bff;
    --secondary-color: #28a745;
    --dark-neutral: #212529;
    --light-neutral: #f8f9fa;
    --white: #ffffff;
    --text-muted: #6c757d;
    --border-color: #e9ecef;
    --transition-speed: 0.3s;
}

/* Global Reset resets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-neutral);
    /* line-height: 1.6; */
    /* background-color: var(--white); */
    /* background-image: url(./office_cleaning_services_pic.webp); */
}





/* --- Global Body Background Configuration --- */
body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-neutral);
    line-height: 1.6;
    
    /* Premium Full-Screen Background Image Setup */
    background-image: linear-gradient(rgba(255, 255, 255, 0.762), rgba(255, 255, 255, 0.625)), 
                      url('./img/background2.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Keeps image structurally fixed while scrolling */
    background-size: cover;       /* Dynamically covers entire viewport aspect ratio */
}

/* --- Navigation Polish for Fixed Background Compatibility --- */
.main-header {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px); /* Elegant glassmorphism blur effect over the body image */
    -webkit-backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* --- Hero Section Refinement --- */
.hero-section {
    position: relative;
    min-height: 620px;
    height: 85vh;
    overflow: hidden;
    /* Removed solid black background fallback to let body layers blend gracefully */
}

/* --- Inner Section Blending Blocks --- */
.services-section {
    padding: 80px 0;
    /* Making section containers transparent lets the fixed body background shine through */
    background-color: transparent; 
}

.service-card {
    /* Glassmorphism finish on cards for crisp contrast over the background graphic */
    background-color: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 30px 20px;
    border-radius: 8px;
    border: 1px solid rgba(233, 236, 239, 0.6);
    text-align: center;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed), background-color var(--transition-speed);
}

.service-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 12px 24px rgba(0,0,0,0.06);
}

/* --- Footer Refinement --- */
.main-footer {
    background-color: rgba(33, 37, 41, 0.95);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    color: var(--white);
    padding: 30px 0;
    font-size: 14px;
}

/* --- Mobile System Layer Refinement --- */
@media (max-width: 992px) {
    .hero-form-container {
        position: relative;
        height: auto;
        padding-bottom: 60px;
        /* Updated to semi-transparent modern dark style to show the background beneath */
        background-color: rgba(18, 20, 22, 0.9);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }
}














/* --- Multi-Level Dropdown Layout Core Settings --- */
.nav-dropdown-item {
    position: relative;
    display: inline-block;
}

.nav-links a.dropdown-trigger i {
    font-size: 11px;
    margin-left: 3px;
    transition: transform var(--transition-speed) ease;
}

/* Glassmorphic Dropdown Floating Panel Box */
.dropdown-menu-card {
    position: absolute;
    top: 100%;
    left: 20px;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(12, 74, 110, 0.08);
    min-width: 220px;
    border-radius: 8px;
    box-shadow: 0 15px 35px -10px rgba(15, 23, 42, 0.12);
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 100005;
}

.dropdown-menu-card.long-dropdown {
    min-width: 260px; /* Wider footprint to allow services text layout rows */
}

/* Hover Interface Activation Matrix on PC Views */
@media (min-width: 1201px) {
    .nav-dropdown-item:hover .dropdown-menu-card {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .nav-dropdown-item:hover a.dropdown-trigger i {
        transform: rotate(180deg);
        color: var(--primary-light);
    }
}

/* Inner Dropdown Link Anchors Style Map */
.dropdown-menu-card a {
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 10px 20px !important;
    margin-left: 0 !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #475569 !important;
    border: none !important;
    width: 100%;
    transition: all var(--transition-speed) ease !important;
}

.dropdown-menu-card a::after {
    display: none !important; /* Strips slider bar decoration from lists */
}

.dropdown-menu-card a i {
    color: var(--text-muted);
    font-size: 14px;
    width: 16px;
    text-align: center;
    transition: color var(--transition-speed) ease;
}

.dropdown-menu-card a:hover {
    background-color: rgba(12, 74, 110, 0.04);
    color: var(--primary-color) !important;
    padding-left: 24px !important; /* Premium slide right effect on hover */
}

.dropdown-menu-card a:hover i {
    color: var(--primary-light);
}

/* --- Mobile Drawer Accordion Adaptations --- */
@media (max-width: 1200px) {
    
     /* ACTIVE STATE INJECTED BY JS: Slides drawer into active viewport range immediately */
    .nav-links.active {
        right: 0 !important;
    }
/* Initial state: Dark transparent overlay backdrop is invisible */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(15, 23, 42, 0.4);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 100001;
    }

     .nav-overlay.active {
        opacity: 1 !important;
        visibility: visible !important;
    }

    /* Animated Hamburger Morphing into Close X Icon */
    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
        background-color: var(--primary-color);
    }
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
        background-color: var(--primary-color);
    }
}







/* --- Mobile Drawer Navigation Breakpoints --- */
@media (max-width: 1024px) {
    .nav-toggle {
        display: flex;
    }

  

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        margin: 12px 0;
        width: 100%;
        font-size: 16px;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 10px;
    }

    .nav-links a::after {
        display: none; /* Disables underline loops on vertical mobile stacks */
    }

    .btn-nav-quote {
        display: block !important;
        background-color: var(--primary-color);
        color: var(--white) !important;
        padding: 12px 20px !important;
        border-radius: 6px;
        text-align: center;
        margin-top: 20px !important;
        font-weight: 700;
        border: none;
    }
}














/* --- Standalone About Us Layout Settings --- */
.about-standalone-workspace {
    padding: 120px 0;
    background-color: transparent;
}

/* 200 Characters Block Core Highlight Typography Tuning */
.professional-200-char-narrative {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color); /* Highlight color anchor brand theme link look */
    line-height: 1.6;
    margin-bottom: 20px;
    border-left: 4px solid var(--primary-light);
    padding-left: 20px;
    letter-spacing: -0.3px;
}

.supporting-narrative-paragraph {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 35px;
}

/* Value Perks Matrix Blocks Stack Layout */
.about-perks-checklist-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.perk-pillar-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.perk-pillar-item .pillar-icon {
    width: 44px;
    height: 44px;
    background-color: rgba(12, 74, 110, 0.05);
    color: var(--primary-color);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.perk-pillar-item h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark-neutral);
    margin-bottom: 3px;
}

.perk-pillar-item p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Right Media Showcase Enclosure Window */
.about-premium-visual-frame {
    position: relative;
    width: 100%;
    height: 440px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--luxury-shadow);
    border: 4px solid var(--white);
}

.about-premium-visual-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Absolute Floating Bottom Media Badge Component */
.media-accent-glassmorphic-tag {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--white);
}

.media-accent-glassmorphic-tag i {
    color: #ffc107;
    font-size: 22px;
}

.media-accent-glassmorphic-tag span {
    font-size: 12.5px;
    font-weight: 600;
    line-height: 1.4;
}

/* --- Responsive Device Width Media Mutations Overrides --- */
@media (max-width: 1024px) {
    .about-standalone-workspace { padding: 80px 0; }
    .about-premium-visual-frame { height: 350px; }
}

@media (max-width: 768px) {
    .about-standalone-workspace .grid-2 { 
        grid-template-columns: 1fr; 
        gap: 50px; 
    }
    .about-media-presentation-column {
        order: 2; /* Drops the showcase media column safely below texts layers on touch mobile viewports */
    }
    .about-narrative-block-column {
        order: 1;
    }
    .professional-200-char-narrative { font-size: 16px; }
}















a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: center;
}

/* Top Bar Styling */
.top-bar {
    background-color: var(--dark-neutral);
    color: var(--white);
    padding: 8px 0;
    font-size: 13px;
}

.top-bar .contact-info span {
    margin-right: 20px;
}

.top-bar i {
    color: var(--primary-color);
    margin-right: 5px;
}

/* Main Header */
.main-header {
    background-color: var(--white);
    padding: 15px 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo a {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-neutral);
}

.logo span {
    color: var(--primary-color);
}

.nav-links a {
    margin-left: 25px;
    font-weight: 600;
    font-size: 15px;
    transition: color var(--transition-speed);
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    font-size: 22px;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #eef2f7 0%, #dfe7f0 100%);
    padding: 80px 0;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: var(--primary-color);
}

.hero-content p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 5px;
    transition: background var(--transition-speed), transform var(--transition-speed);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    margin-right: 15px;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.btn-secondary {
    background-color: transparent;
    color: var(--dark-neutral);
    border: 2px solid var(--dark-neutral);
}

.btn-secondary:hover {
    background-color: var(--dark-neutral);
    color: var(--white);
}

/* Hero Form Design */
.hero-form-box {
    background-color: var(--white);
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.hero-form-box h3 {
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 600;
}

.form-group {
    margin-bottom: 15px;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
    outline: none;
}

.form-group input:focus, .form-group select:focus {
    border-color: var(--primary-color);
}

.btn-submit {
    background-color: var(--secondary-color);
    color: var(--white);
    width: 100%;
    padding: 12px;
    font-size: 16px;
}

.btn-submit:hover {
    background-color: #218838;
}

.form-feedback {
    margin-top: 15px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

/* Services Section Grid Layout */
.services-section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-title p {
    color: var(--text-muted);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.service-card {
    background-color: var(--white);
    padding: 30px 20px;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.service-card .icon-box {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.service-card p {
    font-size: 13px;
    color: var(--text-muted);
}

/* Main Footer Container */
.main-footer {
    background-color: var(--dark-neutral);
    color: var(--white);
    padding: 30px 0;
    font-size: 14px;
}

/* Tablet & Mobile Media Queries Breakpoints */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
    .top-bar {
        display: none;
    }
    .nav-toggle {
        display: block;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links a {
        margin: 10px 0;
        text-align: center;
        width: 100%;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .hero-content h1 {
        font-size: 32px;
    }
}









/* --- Modern Navigation & Hamburger System --- */
.main-header {
    background-color: var(--white);
    padding: 15px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.btn-nav-quote {
    display: none; /* Shows only on mobile drawer menu */
    background-color: var(--primary-color);
    color: var(--white) !important;
    padding: 12px 20px;
    border-radius: 5px;
    text-align: center;
    font-weight: 600;
    margin-top: 15px;
}

/* Premium Hamburger Bars Transformation */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
    z-index: 1010;
}

.nav-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: var(--dark-neutral);
    border-radius: 2px;
    transition: all var(--transition-speed) ease-in-out;
}







.btn-secondary-light {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary-light:hover {
    background-color: var(--white);
    color: var(--dark-neutral);
}

/* --- Modular Text Entry CSS Animations --- */
.animate-item {
    opacity: 0;
    transform: translateY(25px);
    will-change: transform, opacity;
}

/* Custom CSS Keyframes Engine */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-item.fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Staggered Delay Tokens */
.delay-1 { animation-delay: 0.2s !important; }
.delay-2 { animation-delay: 0.4s !important; }
.delay-3 { animation-delay: 0.6s !important; }

/* --- Responsive Tablet & Mobile Drawers --- */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    /* Dimmed Background Overlay curtain */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.4);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-speed) ease;
        z-index: 998;
    }

    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* Premium Mobile Sidebar Drawer sliding from right edge */
    .nav-links {
        position: fixed;
        top: 0;
        right: -300px;
        width: 280px;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        padding: 80px 30px;
        box-shadow: -5px 0 25px rgba(0,0,0,0.15);
        transition: right var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        display: none;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        margin: 15px 0;
        text-align: left;
        width: 100%;
        font-size: 18px;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 8px;
    }

    .btn-nav-quote {
        display: block;
    }

    /* Active Hamburger Close Icon Transformation Structure */
    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-section {
        padding: 60px 0;
    }
    .hero-content h1 {
        font-size: 32px;
    }
}













/* --- Core Structural Hero Layout Configs --- */
.hero-section {
    position: relative;
    min-height: 620px;
    height: 85vh; /* Responsive scale covering screen dimensions gracefully */
    overflow: hidden;
    background-color: #000;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Base Hidden Slide State Architecture */
.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
    display: flex;
    align-items: center;
}

/* Active Visible Slide State Architecture */
.hero-slider .slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Scale effect strictly bound to background graphic layer */
.hero-slider .slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.08);
    transition: transform 6s ease-out;
    z-index: 1;
}

.hero-slider .slide.active .slide-bg {
    transform: scale(1);
}

/* Formatting Context Layout Grid Spacing */
.slide-content-wrapper {
    position: relative;
    z-index: 5;
    width: 90%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: center;
    pointer-events: none; /* Allows form clicks beneath absolute layers if overlap occurs */
}

.hero-content {
    pointer-events: auto; /* Restores interactive links and button triggers */
}

.hero-content h1 {
    color: var(--white);
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: #4dabf7;
}

.hero-content p {
    color: #f1f3f5;
    font-size: 16px;
    margin-bottom: 30px;
}

/* --- Fixed Absolute Form Position Engine --- */
.hero-form-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10; /* Locked high above changing text content panels */
    display: flex;
    align-items: center;
    pointer-events: none;
}

.form-only-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    width: 100%;
}

.hero-form-box {
    grid-column: 2; /* Force placement into the right-side grid track */
    pointer-events: auto; /* Restores select fields, inputs, and button click mechanics */
}

/* --- Premium CSS Text Animations Configuration --- */
.hero-slider .animate-text {
    opacity: 0;
    transform: translateY(35px);
    transition: transform 0.8s cubic-bezier(0.215, 0.610, 0.355, 1), opacity 0.8s ease;
}

/* Reset translation matrices immediately when slide unlocks active status */
.hero-slider .slide.active .animate-text {
    opacity: 1;
    transform: translateY(0);
}

/* Ordered CSS Time-delay intervals */
.hero-slider .slide.active .animate-text.delay-1 {
    transition-delay: 0.25s;
}

.hero-slider .slide.active .animate-text.delay-2 {
    transition-delay: 0.5s;
}

/* --- Responsive Adaptations For Screens Breakpoints --- */
@media (max-width: 992px) {
    .hero-section {
        height: auto;
        min-height: auto;
    }
    .hero-slider .slide {
        position: relative;
        display: none; /* Reverts framework away from overlay positioning grid layouts */
        height: auto;
        padding: 60px 0;
    }
    .hero-slider .slide.active {
        display: block;
    }
    .slide-content-wrapper, .form-only-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .hero-form-container {
        position: relative;
        height: auto;
        padding-bottom: 60px;
        background-color: #121416; /* Clean background anchoring content elements on smaller devices */
    }
    .hero-form-box {
        grid-column: 1;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 30px;
    }
    .hero-content p {
        font-size: 15px;
    }
}












/* --- Infinite Scrolling Ticker Frame Layout --- */
.reviews-ticker-section {
    padding: 80px 0 100px 0;
    background-color: transparent;
    overflow: hidden;
}

.reviews-ticker-header {
    margin-bottom: 40px;
    align-items: flex-end;
}

/* Glassmorphism Google verification top badge */
.google-ticker-badge {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 123, 255, 0.15);
    padding: 15px 25px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.03);
}

.google-ticker-badge i {
    color: #4285F4;
    font-size: 22px;
}

.google-ticker-badge .rating-txt {
    font-size: 14px;
    color: var(--dark-neutral);
}

.google-ticker-badge .rating-txt strong {
    color: #ffc107;
    font-size: 16px;
}

.btn-ticker-link {
    background-color: #4285F4;
    color: var(--white) !important;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 12.5px;
    font-weight: 600;
    transition: background var(--transition-speed);
}

.btn-ticker-link:hover {
    background-color: #357ae8;
}

/* Outer Window Mask hidden boundary overflows */
.ticker-viewport-window {
    width: 100%;
    overflow: hidden;
    position: relative;
    /* Soft shading gradient masks to blend text layers smoothly at the viewport borders */
    mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
    padding: 15px 0;
}

/* Flex track containing structural layers running hardware-accelerated loops */
.ticker-flex-track {
    display: flex;
    width: max-content;
    gap: 30px;
    animation: scrollRightToLeftLoop 10s linear infinite;
    will-change: transform;
}

/* Pause scroll movement immediately on user hover context */
.ticker-viewport-window:hover .ticker-flex-track {
    animation-play-state: paused;
}

/* Review Card Styling */
.ticker-review-card {
    width: 380px;
    background-color: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(233, 236, 239, 0.7);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    flex-shrink: 0; /* Prevents flex track compression */
}

.card-photo-banner {
    position: relative;
    width: 100%;
    height: 160px;
    overflow: hidden;
}

.card-photo-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-badge-label {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: var(--white);
    padding: 3px 8px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 4px;
}

.card-body-wrapper {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.reviewer-row {
    margin-bottom: 12px;
}

.profile-meta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.avatar-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.profile-meta h4 {
    font-size: 14.5px;
    font-weight: 600;
}

.date-stamp {
    font-size: 11px;
    color: var(--text-muted);
    display: block;
}

.brand-g-icon {
    color: #cbd5e1;
    font-size: 16px;
}

.stars-row {
    margin-bottom: 10px;
}

.stars-row i {
    color: #ffc107;
    font-size: 13px;
}

.quote-txt {
    font-size: 13.5px;
    color: #4a5568;
    line-height: 1.5;
    font-style: italic;
}

/* --- Hardware Accelerated Translation Animation Ticker Loop --- */
@keyframes scrollRightToLeftLoop {
    0% {
        transform: translateX(0);
    }
    100% {
        /* Translates exact half metric width point matching duplicated boundary edges perfectly */
        transform: translateX(calc(-50% - 15px)); 
    }
}

/* --- Responsive Layout Breaks System --- */
@media (max-width: 992px) {
    .reviews-ticker-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .google-ticker-badge {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 480px) {
    .ticker-review-card {
        width: 300px; /* Slims down the card profile footprint to safely clear mobile dimensions */
    }
}

















/* --- About Us Section Layout Design --- */
.about-section {
    padding: 100px 0;
    background-color: transparent;
    overflow: hidden;
}

.section-top-subtitle {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 10px;
}

.about-narrative-content h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 20px;
}

.about-narrative-content h2 span {
    color: var(--primary-color);
}

.narrative-lead-paragraph {
    font-size: 16px;
    color: var(--dark-neutral);
    font-weight: 600;
    margin-bottom: 15px;
}

.narrative-body-text {
    font-size: 14.5px;
    color: var(--text-muted);
    margin-bottom: 25px;
}

/* Structural Pillars Grid Setup */
.pillars-checklist-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 35px;
}

.pillar-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pillar-item i {
    color: var(--secondary-color);
    font-size: 16px;
}

.pillar-item span {
    font-size: 14px;
    font-weight: 600;
    color: #495057;
}

/* Visual Collage System Layout Settings */
.about-visuals-collage {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.collage-main-frame {
    width: 85%;
    height: 420px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    z-index: 5;
    border: 4px solid var(--white);
}

.primary-collage-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.about-visuals-collage:hover .primary-collage-img {
    transform: scale(1.04);
}

/* Floating Shield Trust Badge Module */
.floating-trust-badge {
    position: absolute;
    bottom: -15px;
    left: 0;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    padding: 15px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10;
    animation: floatBadgeLoop 4s ease-in-out infinite;
}

.badge-icon-shield i {
    font-size: 28px;
    color: var(--secondary-color);
}

.badge-text-strings h5 {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark-neutral);
}

.badge-text-strings p {
    font-size: 12px;
    color: var(--text-muted);
}

/* Dynamic Counter Cards Structure */
.statistics-counter-matrix {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.counter-block-card {
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(233, 236, 239, 0.5);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.01);
}

.counter-number-string {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
}

.counter-plus, .counter-decimal {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.counter-label-txt {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 5px;
}

/* Collage Structural Accent Dot Array Pattern */
.collage-accent-pattern {
    position: absolute;
    top: -20px;
    right: 20px;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(#cbd5e1 2px, transparent 2px);
    background-size: 12px 12px;
    z-index: 2;
}

/* --- Entrance Scrolling Keyframe Animations System --- */
.animate-on-scroll {
    opacity: 1;
    will-change: transform, opacity;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.8s ease;
}

.slide-in-left { transform: translateX(-50px); }
.slide-in-right { transform: translateX(50px); }

/* Trigger active injection token hooks mapped from IntersectionObserver in Javascript */
.animate-on-scroll.scroll-active {
    opacity: 1;
    transform: translateX(0);
}

@keyframes floatBadgeLoop {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* --- Responsive Layout Breaks System --- */
@media (max-width: 992px) {
    .about-section { padding: 60px 0; }
    .collage-main-frame { height: 320px; width: 100%; }
    .floating-trust-badge { left: 10px; bottom: -10px; }
}

@media (max-width: 768px) {
    .about-section .grid-2 { grid-template-columns: 1fr; gap: 50px; }
    .about-visuals-collage { order: 2; } /* Shifts collage images below narrative on mobile views */
    .about-narrative-content { order: 1; }
    .pillars-checklist-grid { grid-template-columns: 1fr; }
    .about-narrative-content h2 { font-size: 28px; }
    .statistics-counter-matrix { grid-template-columns: 1fr; gap: 15px; }
}













/* --- Interactive Calculator Layout Engine --- */
.calculator-section {
    padding: 100px 0;
    background-color: transparent;
}

.calculator-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 40px;
    align-items: flex-start;
}

.calculator-controls-panel {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(233, 236, 239, 0.6);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.calc-control-group {
    margin-bottom: 35px;
}

.calc-control-group:last-child {
    margin-bottom: 0;
}

.group-title-label {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-neutral);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.step-num {
    background-color: var(--primary-color);
    color: var(--white);
    width: 24px;
    height: 24px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Service Radio Selector Grid Layout */
.service-radio-tile-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.radio-tile-card {
    position: relative;
    cursor: pointer;
}

.radio-tile-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.tile-content {
    background-color: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 20px 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: all var(--transition-speed) ease;
}

.tile-content i {
    font-size: 24px;
    color: var(--text-muted);
    transition: color var(--transition-speed);
}

.tile-content span {
    font-size: 14px;
    font-weight: 600;
    color: #495057;
}

/* Active Highlight Interactions Mapping */
.radio-tile-card input[type="radio"]:checked + .tile-content {
    border-color: var(--primary-color);
    background-color: rgba(0, 123, 255, 0.03);
}

.radio-tile-card input[type="radio"]:checked + .tile-content i {
    color: var(--primary-color);
}

/* Range Slider Control Polish */
.slider-display-row {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.modern-range-slider {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    background: #dee2e6;
    border-radius: 5px;
    outline: none;
}

.modern-range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 123, 255, 0.4);
    transition: transform 0.1s ease;
}

.modern-range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.slider-ticks {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    padding: 0 4px;
}

.slider-ticks span {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Add-ons Checklist Architecture */
.addons-checkbox-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.addon-checkbox-row {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    padding: 15px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color var(--transition-speed);
}

.addon-toggle-input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.custom-checkbox-box {
    width: 20px;
    height: 20px;
    border: 2px solid #cbd5e1;
    border-radius: 4px;
    display: inline-block;
    position: relative;
    flex-shrink: 0;
    transition: all var(--transition-speed);
}

.addon-toggle-input:checked ~ .custom-checkbox-box {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.addon-toggle-input:checked ~ .custom-checkbox-box::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid var(--white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.addon-meta-text {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-size: 13.5px;
}

.addon-name {
    font-weight: 600;
    color: #495057;
}

.addon-rate {
    color: var(--text-muted);
    font-weight: 600;
}

.addon-toggle-input:checked ~ .addon-meta-text .addon-name {
    color: var(--dark-neutral);
}

/* Sticky Summary Card Framework */
.summary-sticky-card {
    position: sticky;
    top: 100px;
    background-color: rgba(33, 37, 41, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.summary-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.summary-card-header h4 {
    font-size: 16px;
    font-weight: 600;
}

.location-tag-badge {
    background-color: rgba(0, 123, 255, 0.2);
    border: 1px solid var(--primary-color);
    color: #4dabf7;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
}

.summary-breakdown-ledger .ledger-row {
    display: flex;
    justify-content: space-between;
    font-size: 13.5px;
    color: #e9ecef;
    margin-bottom: 12px;
}

.ledger-divider-line {
    height: 1px;
    background-color: rgba(255,255,255,0.1);
    margin: 15px 0;
}

.summary-breakdown-ledger .total-row {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0;
}

.grand-total-amount {
    font-size: 26px;
    font-weight: 700;
    color: var(--secondary-color);
}

.summary-notice-box {
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #ffc107;
    padding: 12px;
    border-radius: 4px;
    display: flex;
    gap: 10px;
    margin: 25px 0;
}

.summary-notice-box i {
    color: #ffc107;
    font-size: 14px;
    margin-top: 2px;
}

.summary-notice-box p {
    font-size: 11.5px;
    color: #ced4da;
    line-height: 1.4;
}

/* Call To Action Custom Buttons */
.btn-calculator-action {
    background-color: var(--primary-color);
    color: var(--white);
    width: 100%;
    padding: 14px;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    border-radius: 6px;
    margin-bottom: 12px;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.btn-calculator-action:hover {
    background-color: #0056b3;
}

.btn-calculator-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: transparent;
    color: #28a745 !important;
    border: 2px solid #28a745;
    width: 100%;
    padding: 12px;
    font-size: 14.5px;
    font-weight: 700;
    border-radius: 6px;
    transition: all var(--transition-speed);
}

.btn-calculator-whatsapp:hover {
    background-color: #28a745;
    color: var(--white) !important;
}

/* --- Responsive Calculator Breakpoints --- */
@media (max-width: 992px) {
    .calculator-grid {
        grid-template-columns: 1fr;
    }
    .summary-sticky-card {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .service-radio-tile-grid {
        grid-template-columns: 1fr;
    }
    .addons-checkbox-list {
        grid-template-columns: 1fr;
    }
    .calculator-controls-panel {
        padding: 20px;
    }
}













/* --- Premium Why Choose Us Layout Design --- */
.why-us-section {
    padding: 100px 0;
    background-color: transparent;
    overflow: hidden;
}

.text-center {
    text-align: center;
    margin-bottom: 60px;
}

/* 4-Column Feature Cards Row Configuration Grid */
.why-us-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Glassmorphic Interactive Advantage Card Base Layer */
.feature-interactive-card {
    position: relative;
    background-color: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(233, 236, 239, 0.5);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.01);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform var(--transition-speed) cubic-bezier(0.25, 1, 0.5, 1), 
                box-shadow var(--transition-speed) ease, 
                border-color var(--transition-speed) ease;
}

/* Interactive Hover Transformation State Updates */
.feature-interactive-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 123, 255, 0.25);
    box-shadow: 0 15px 35px rgba(0, 123, 255, 0.06);
}

/* Soft Radial Backdrop Hover Glow Mask */
.card-glow-layer {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0,123,255,0.03) 0%, transparent 60%);
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--transition-speed) ease;
    z-index: 1;
}

.feature-interactive-card:hover .card-glow-layer {
    opacity: 1;
}

/* Feature Icon Sphere Enclosure Frame */
.feature-icon-container {
    position: relative;
    width: 60px;
    height: 60px;
    background-color: rgba(0, 123, 255, 0.06);
    color: var(--primary-color);
    font-size: 24px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    z-index: 2;
    transition: background-color var(--transition-speed) ease, color var(--transition-speed) ease;
}

.feature-interactive-card:hover .feature-icon-container {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Pulse Node Indicator Dot Component */
.badge-dot-indicator {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 8px;
    height: 8px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    border: 1.5px solid var(--white);
}

.feature-interactive-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-neutral);
    margin-bottom: 12px;
    z-index: 2;
}

.feature-interactive-card p {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
    z-index: 2;
}

/* Subtle Interactive Bottom Right Indicator Arrow */
.card-hover-arrow {
    margin-top: auto;
    padding-top: 25px;
    font-size: 14px;
    color: var(--primary-color);
    opacity: 0;
    transform: translateX(-10px);
    transition: all var(--transition-speed) ease;
    z-index: 2;
}

.feature-interactive-card:hover .card-hover-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* --- Scroll Entrance Keyframe Translation Configurations --- */
.shift-up-entry {
    opacity: 1;
    transform: translateY(40px);
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.8s ease;
}

.shift-up-entry.scroll-active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive Tablet & Mobile Media Queries --- */
@media (max-width: 1200px) {
    .why-us-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .why-us-features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .feature-interactive-card {
        padding: 30px 25px;
    }
    .why-us-section {
        padding: 60px 0;
    }
}

















/* ==========================================================================
   PRODUCTION BLOGS MODULE - SYSTEM ARCHITECTURE
   ========================================================================== */

.blogs-section {
    padding: 120px 0;
    background-color: transparent;
    position: relative;
}

/* --- Category Navigation Tabs Bar --- */
.blog-filter-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin: 40px 0 60px 0;
    flex-wrap: wrap;
}

.filter-tab {
    background-color: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--border-color);
    padding: 12px 26px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-neutral);
    border-radius: 50px; /* Capsule profile anchor design */
    cursor: pointer;
    transition: all var(--transition-speed) cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, box-shadow;
}

.filter-tab:hover, 
.filter-tab.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -6px rgba(12, 74, 110, 0.3);
}

.filter-tab:active {
    transform: translateY(0);
}

/* --- Core Articles Grid Frame --- */
.blogs-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    will-change: transform;
}

/* --- Glassmorphic Premium Blog Card Architecture --- */
.blog-article-card {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--luxury-shadow);
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-speed) cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow var(--transition-speed) ease, 
                border-color var(--transition-speed) ease;
}

/* High-Performance Category Filter Toggles Managed by app.js Runtime */
.blog-article-card.card-hidden {
    display: none !important;
}

.blog-article-card:hover {
    transform: translateY(-8px);
    border-color: rgba(12, 74, 110, 0.2);
    box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.08);
}

/* --- Thumbnail Media Mask Enclosure --- */
.article-thumb-box {
    position: relative;
    width: 100%;
    height: 230px;
    overflow: hidden;
    background-color: #e2e8f0;
}

.article-thumb-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-article-card:hover .article-thumb-box img {
    transform: scale(1.06);
}

/* Overlay Metadata Category Badge */
.category-pill {
    position: absolute;
    top: 18px;
    left: 18px;
    background-color: var(--primary-light);
    color: var(--white);
    padding: 5px 14px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    letter-spacing: 0.7px;
    box-shadow: 0 4px 10px rgba(14, 165, 233, 0.25);
    z-index: 2;
}

/* --- Typography & Text Formatting Compartment --- */
.article-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.article-meta-row {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 12.5px;
    color: var(--text-muted);
    margin-bottom: 14px;
    font-weight: 500;
}

.article-meta-row i {
    color: var(--primary-light);
    margin-right: 4px;
}

.article-body h3 {
    font-size: 19px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--dark-neutral);
    margin-bottom: 14px;
    letter-spacing: -0.4px;
    transition: color var(--transition-speed) ease;
}

.blog-article-card:hover .article-body h3 {
    color: var(--primary-color);
}

.article-body p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 25px;
}

/* --- Inline CTA Link Micro-Interactions --- */
.btn-read-article {
    margin-top: auto; /* Locks anchor strictly to card lower bounds layout */
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-light);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color var(--transition-speed) ease, gap var(--transition-speed) ease;
}

.btn-read-article i {
    font-size: 12px;
    transition: transform var(--transition-speed) ease;
}

.blog-article-card:hover .btn-read-article {
    color: var(--primary-color);
    gap: 12px;
}

.blog-article-card:hover .btn-read-article i {
    transform: translateX(2px);
}

/* --- Pagination Actions Row Layout --- */
.blogs-footer-actions {
    margin-top: 60px;
}

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS - SYSTEM MEDIA QUERIES
   ========================================================================== */

@media (max-width: 1024px) {
    .blogs-grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    .article-thumb-box {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .blogs-section {
        padding: 80px 0;
    }
    .blogs-grid-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .blog-filter-tabs {
        margin: 30px 0 40px 0;
        gap: 8px;
    }
    .filter-tab {
        padding: 10px 20px;
        font-size: 13px;
    }
    .article-body {
        padding: 25px;
    }
    .article-body h3 {
        font-size: 18px;
    }
}
/* Navigation Header Base Styling */
.main-header {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 22px 0; /* Generous header breathing room at mount state */
    transition: padding var(--transition-speed) cubic-bezier(0.16, 1, 0.3, 1), 
                background-color var(--transition-speed) ease, 
                box-shadow var(--transition-speed) ease;
}

/* Active Class injected instantly via JavaScript on scroll depth */
.main-header.header-scrolled-state {
    padding: 12px 0; /* Header compresses cleanly to save screen space */
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px); /* Premium frosty glass look */
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.08);
}














/* --- Premium Gallery Layout Architecture --- */
.gallery-section {
    padding: 120px 0;
    background-color: transparent;
}

/* 3-Column Image Portfolio Matrix Grid */
.gallery-grid-matrix {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.gallery-interactive-card {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--luxury-shadow);
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-speed) cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow var(--transition-speed) ease;
}

.gallery-interactive-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.08);
}

/* Dual Layer Media Window */
.gallery-media-frame {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
    background-color: #cbd5e1;
}

.image-state-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
}

.image-state-layer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Layer Stacking Blueprint */
.state-before {
    z-index: 2;
    opacity: 1;
    transform: scale(1);
}

.state-after {
    z-index: 1;
    opacity: 0;
    transform: scale(1.05);
}

/* Hover Micro-Interactions Transformation Rule: Reveals After State */
.gallery-interactive-card:hover .state-before {
    opacity: 0;
    transform: scale(0.95);
}

.gallery-interactive-card:hover .state-after {
    z-index: 3;
    opacity: 1;
    transform: scale(1);
}

/* Absolute Floating Status Labels Badges */
.status-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.tag-before {
    background-color: #ef4444; /* Pure Crimson alert indicating dust status */
    color: var(--white);
}

.tag-after {
    background-color: var(--secondary-color); /* Emerald green representing spotless safety */
    color: var(--white);
}

/* Caption Footer Compartment Details */
.gallery-card-caption {
    padding: 22px 25px;
}

.gallery-card-caption h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-neutral);
    margin-bottom: 6px;
    line-height: 1.3;
}

.gallery-card-caption p {
    font-size: 12.5px;
    color: var(--text-muted);
    font-weight: 500;
}

/* --- Responsive Media Viewport Overrides --- */
@media (max-width: 1024px) {
    .gallery-grid-matrix {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    .gallery-media-frame {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 80px 0;
    }
    .gallery-grid-matrix {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .gallery-media-frame {
        height: 240px;
    }
}












/* --- Master Corporate Footer Structural Grid Map --- */
.main-footer {
    background-color: var(--dark-neutral);
    color: var(--white);
    position: relative;
    z-index: 100;
}

.footer-grid-matrix {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 40px;
    padding: 80px 0;
}

.footer-logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    display: block;
    margin-bottom: 15px;
}

.footer-logo-text span {
    color: var(--primary-light);
}

.footer-corporate-brand-profile p {
    font-size: 13.5px;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 20px;
}

.corporate-social-links {
    display: flex;
    gap: 12px;
}

.corporate-social-links a {
    width: 36px;
    height: 36px;
    background-color: rgba(255,255,255,0.05);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    transition: all var(--transition-speed);
}

.corporate-social-links a:hover {
    background-color: var(--primary-light);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-links-column h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links-column ul {
    list-style: none;
}

.footer-links-column ul li {
    margin-bottom: 12px;
}

.footer-links-column ul li a {
    font-size: 13.5px;
    color: #cbd5e1;
    transition: color var(--transition-speed);
}

.footer-links-column ul li a:hover {
    color: var(--primary-light);
}

.coverage-notice-text {
    font-size: 13.5px;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 20px;
}

.google-trust-score-badge {
    background-color: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.google-trust-score-badge i {
    color: #4285F4;
    font-size: 24px;
}

.google-trust-score-badge span {
    font-size: 11px;
    color: #94a3b8;
    display: block;
}

.google-trust-score-badge strong {
    font-size: 13px;
    color: #ffc107;
}

.footer-copyright-sub-bar {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 25px 0;
    font-size: 13px;
    color: #94a3b8;
}

.sub-bar-legal-links a {
    color: #94a3b8;
    margin-left: 20px;
    transition: color var(--transition-speed);
}

.sub-bar-legal-links a:hover {
    color: var(--primary-light);
}

/* ==========================================================================
   PREMIUM FIXED QUICK LEAD MOBILITY NAVIGATION BAR ENGINE
   ========================================================================== */
.fixed-conversion-action-dock {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 65px;
    background-color: rgba(15, 23, 42, 0.9); /* Corporate Slate backdrop tint */
    backdrop-filter: blur(12px);                 /* Premium glassy look over scrolling images */
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.15);
    display: none;                             /* HIDDEN BY DEFAULT ON PC VIEWS */
    grid-template-columns: repeat(3, 1fr);
    z-index: 99999;                            /* Absolute priority positioning level layer */
}

/* Action Handles Anchors Layout Settings */
.dock-action-handle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: var(--white) !important;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: background-color var(--transition-speed) ease;
}

.dock-action-handle i {
    font-size: 18px;
}

/* Specific Context Brand-Color Tints */
.call-trigger {
    background-color: var(--primary-color);
}
.call-trigger:hover { background-color: #0369a1; }

.whatsapp-trigger {
    background-color: #28a745; /* True standard utility green */
}
.whatsapp-trigger:hover { background-color: #1e7e34; }

.sms-trigger {
    background-color: rgba(255, 255, 255, 0.05);
}
.sms-trigger:hover { background-color: rgba(255, 255, 255, 0.1); }

/* --- Responsive Layout Device Media Overrides --- */
@media (max-width: 992px) {
    .footer-grid-matrix {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-grid-matrix {
        grid-template-columns: 1fr;
        padding: 60px 0;
    }
    .mobile-column-align {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .sub-bar-legal-links a {
        margin: 0 10px;
    }
    
    /* ACTIVATES IMMUTABLE LOCK ACTION PANEL ON HANDSETS AND TABLETS */
    .fixed-conversion-action-dock {
        display: grid;
    }
    
    /* Adds safety margin room beneath content so footer isn't blocked by the dock */
    body {
        padding-bottom: 65px; 
    }
}














/* --- Contact Page Structural Inner Banner --- */
.page-title-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0369a1 100%);
    color: var(--white);
}

.page-title-banner h1 {
    font-size: 38px;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 10px;
}

.page-title-banner h1 span {
    color: var(--primary-light);
}

.page-title-banner p {
    font-size: 15px;
    color: #e0f2fe;
    max-width: 600px;
    margin: 0 auto;
}

.contact-page-workspace {
    padding: 100px 0;
    background-color: transparent;
}

/* Info Deck Link Card Elements Map */
.info-cards-stack-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 35px;
}

.support-info-card-link {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    padding: 20px 25px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--luxury-shadow);
    transition: transform var(--transition-speed) ease, border-color var(--transition-speed) ease;
}

.support-info-card-link:not(.static-info-card):hover {
    transform: translateY(-3px);
    border-color: var(--primary-light);
}

.info-card-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background-color: rgba(12, 74, 110, 0.06);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.info-card-strings h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark-neutral);
    margin-bottom: 2px;
}

.info-card-strings p {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 600;
}

.action-hint-txt {
    font-size: 11px;
    color: var(--primary-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-top: 4px;
}

.action-hint-txt.tint-green {
    color: var(--secondary-color);
}

/* Independent Form Card */
.contact-page-form-box {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--luxury-shadow);
}

.contact-page-form-box h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-page-form-box textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
    font-size: 14px;
    outline: none;
    resize: none;
}

.contact-page-form-box textarea:focus {
    border-color: var(--primary-light);
}

/* --- Map Presentation Columns Layout --- */
.map-outer-frame-enclosure {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--luxury-shadow);
}

.map-header-action-row {
    padding: 20px 25px;
    background-color: #ffffff;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.map-meta-strings h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark-neutral);
}

.map-meta-strings p {
    font-size: 12.5px;
    color: var(--text-muted);
    font-weight: 500;
}

.btn-get-directions-link {
    background-color: #4285F4; /* Standard Google Action Blue Color */
    color: var(--white) !important;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.2);
    transition: background-color var(--transition-speed);
}

.btn-get-directions-link:hover {
    background-color: #2b72e2;
}

/* Immutable Map Frame Enclosure */
.embedded-google-maps-iframe-track {
    width: 100%;
    height: 450px;
    display: block;
}

.map-coverage-notice-card {
    background-color: rgba(12, 74, 110, 0.04);
    border-left: 4px solid var(--primary-color);
    padding: 15px 20px;
    border-radius: 0 8px 8px 0;
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.map-coverage-notice-card i {
    color: var(--primary-color);
    font-size: 16px;
    margin-top: 2px;
}

.map-coverage-notice-card p {
    font-size: 12.5px;
    color: #334155;
    line-height: 1.5;
    font-weight: 500;
}

/* --- Responsive Tablet & Handsets Overrides --- */
@media (max-width: 992px) {
    .contact-page-workspace { padding: 60px 0; }
    .embedded-google-maps-iframe-track { height: 350px; }
}

@media (max-width: 768px) {
    .contact-page-workspace .grid-2 { grid-template-columns: 1fr; gap: 40px; }
    .page-title-banner h1 { font-size: 30px; }
    .map-header-action-row { flex-direction: column; align-items: flex-start; gap: 15px; }
    .btn-get-directions-link { width: 100%; justify-content: center; }
}




















/* --- Professional Service Quality Layout Design --- */
.service-quality-section {
    padding: 120px 0;
    background-color: transparent;
    overflow: hidden;
}

.quality-assurance-visuals {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Glassmorphic Quality Rating Score Box */
.quality-badge-banner-card {
    background-color: rgba(12, 74, 110, 0.95); /* Deep Sapphire Primary Hue Brand Core Accent */
    color: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(12, 74, 110, 0.15);
    position: relative;
    overflow: hidden;
}

.quality-badge-banner-card::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -30%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.quality-score-header {
    margin-bottom: 20px;
}

.score-digit {
    font-size: 56px;
    font-weight: 700;
    line-height: 1;
    color: var(--white);
    letter-spacing: -2px;
}

.score-percent {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-light);
}

.score-subtitle {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #93c5fd;
    margin-top: 5px;
}

.quality-divider-line {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.12);
    margin-bottom: 20px;
}

.quality-badge-summary-text {
    font-size: 14.5px;
    color: #e0f2fe;
    line-height: 1.6;
}

/* Secondary Micro-Details Matrix */
.interactive-quality-cards-stack {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quality-mini-card {
    background-color: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    padding: 25px;
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: var(--luxury-shadow);
    transition: transform var(--transition-speed) ease;
}

.quality-mini-card:hover {
    transform: translateY(-3px);
}

.quality-card-icon {
    width: 46px;
    height: 46px;
    background-color: rgba(14, 165, 233, 0.06);
    color: var(--primary-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.quality-mini-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark-neutral);
    margin-bottom: 4px;
}

.quality-mini-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Narrative Text Column Formatting Engine */
.quality-narrative-content-column h2 {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 25px;
    letter-spacing: -0.8px;
}

.quality-lead-paragraph {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-neutral);
    line-height: 1.6;
    margin-bottom: 18px;
}

.quality-body-paragraph {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 18px;
    text-align: justify;
}

.quality-body-paragraph:last-of-type {
    margin-bottom: 30px;
}

/* Lower Milestone Flags */
.quality-milestones-row {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.milestone-pill-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(16, 185, 129, 0.05); /* Soft Mint tint representing premium safety standards */
    border: 1px solid rgba(16, 185, 129, 0.15);
    padding: 10px 20px;
    border-radius: 6px;
}

.milestone-pill-item i {
    color: var(--secondary-color);
    font-size: 14px;
}

.milestone-pill-item span {
    font-size: 13.5px;
    font-weight: 600;
    color: #065f46;
}

/* --- Responsive Layout Breaks Overrides --- */
@media (max-width: 1024px) {
    .service-quality-section { padding: 80px 0; }
    .quality-narrative-content-column h2 { font-size: 28px; }
    .quality-badge-banner-card { padding: 30px; }
}

@media (max-width: 768px) {
    .service-quality-section .grid-2 { 
        grid-template-columns: 1fr; 
        gap: 50px; 
    }
    .quality-assurance-visuals {
        order: 2; /* Drops structural dashboard badges column below long copy blocks on handset views */
    }
    .quality-narrative-content-column {
        order: 1;
    }
    .quality-milestones-row {
        flex-direction: column;
        align-items: flex-start;
    }
    .milestone-pill-item {
        width: 100%;
    }
}















/* --- Interactive Checklist Section Design --- */
.checklist-section {
    padding: 120px 0;
    background-color: transparent;
}

/* Tab Navigation Container Bar */
.checklist-tabs-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.checklist-tab {
    background-color: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid var(--border-color);
    padding: 14px 28px;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--dark-neutral);
    border-radius: 8px; /* Standard corporate token shape */
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all var(--transition-speed) cubic-bezier(0.16, 1, 0.3, 1);
}

.checklist-tab i {
    color: var(--text-muted);
    font-size: 16px;
    transition: color var(--transition-speed);
}

.checklist-tab:hover, 
.checklist-tab.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 10px 25px -8px rgba(12, 74, 110, 0.3);
}

.checklist-tab:hover i, 
.checklist-tab.active i {
    color: var(--primary-light);
}

/* Master Checklist Output Card Enclosure Window */
.checklist-display-card {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--luxury-shadow);
}

/* Visibility Control Layer states */
.checklist-zone-view {
    display: none;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.checklist-zone-view.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Balanced 3-Column Task Items Stack Map */
.zone-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px 30px;
}

.check-item-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.check-item-row i {
    color: var(--secondary-color); /* Mint green checked visual badge */
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}

.check-item-row span {
    font-size: 14.5px;
    font-weight: 500;
    color: #334155;
    line-height: 1.4;
}

/* --- Responsive Device Breakpoints Media Overrides --- */
@media (max-width: 1024px) {
    .zone-grid-3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .checklist-display-card {
        padding: 35px;
    }
}

@media (max-width: 768px) {
    .checklist-section {
        padding: 80px 0;
    }
    .zone-grid-3 {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .checklist-tabs-row {
        gap: 10px;
    }
    .checklist-tab {
        width: 100%; /* Spreads buttons vertically across mobile touch screen boundaries safely */
        justify-content: center;
        padding: 12px;
    }
    .checklist-display-card {
        padding: 25px;
    }
}













### 2. Matching Typography & Layout Settings (`style.css`)
Append these rules directly into your centralized `style.css` stylesheet file to handle structural margins, content grids, and row-reversing media queries:

```css
/* --- Services Standalone Workspace Grid Setup --- */
.services-standalone-workspace {
    padding: 120px 0;
    background-color: transparent;
}

.services-detailed-grid {
    display: flex;
    flex-direction: column;
    gap: 60px; /* Uniform breathing room spacing between service modules */
}

/* Service Alternating Row Card Framework */
.service-detailed-row-card {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr; /* Asymmetrical grid split for better reading rhythm */
    gap: 50px;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--luxury-shadow);
    align-items: center;
    transition: transform var(--transition-speed) cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow var(--transition-speed) ease;
}

.service-detailed-row-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -20px rgba(15, 23, 42, 0.06);
}

/* Alternating flip layout mapping via structural nth-child anchors */
.service-detailed-row-card:nth-child(even) .service-media-column {
    order: 2;
}
.service-detailed-row-card:nth-child(even) .service-info-column {
    order: 1;
}

/* Image Presentation Window */
.service-media-column {
    width: 100%;
    height: 340px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.05);
}

.service-media-column img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-detailed-row-card:hover .service-media-column img {
    transform: scale(1.03);
}

/* Info Column & 500 Character Matrix Elements */
.service-index-number {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-light);
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 8px;
}

.service-info-column h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--dark-neutral);
    letter-spacing: -0.6px;
    margin-bottom: 15px;
}

.service-500-char-block {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 25px;
    text-align: justify;
    /* Rigorous formatting to preserve uniform copy bounds layout blocks */
    min-height: 120px; 
}

/* Row Action Footer Component */
.service-action-footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.starting-price-pill {
    background-color: rgba(16, 185, 129, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.15);
    color: #065f46;
    padding: 6px 14px;
    font-size: 13.5px;
    font-weight: 700;
    border-radius: 6px;
}

.btn-service-action {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap var(--transition-speed) ease, color var(--transition-speed) ease;
}

.btn-service-action:hover {
    color: var(--primary-light);
    gap: 12px;
}

/* --- Responsive Device Width Transformations Overrides --- */
@media (max-width: 1024px) {
    .service-detailed-row-card {
        gap: 30px;
        padding: 30px;
    }
    .service-media-column {
        height: 280px;
    }
    .service-info-column h2 {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .services-standalone-workspace {
        padding: 80px 0;
    }
    .services-detailed-grid {
        gap: 40px;
    }
    .service-detailed-row-card {
        grid-template-columns: 1fr; /* Compresses rows down to a clean vertical stack on touchscreens */
        gap: 25px;
    }
    /* Uniform ordering flow for mobile views - overrides alternating flip mechanics */
    .service-detailed-row-card:nth-child(even) .service-media-column {
        order: 1;
    }
    .service-detailed-row-card:nth-child(even) .service-info-column {
        order: 2;
    }
    .service-media-column {
        height: 220px;
        order: 1;
    }
    .service-info-column {
        order: 2;
    }
    .service-500-char-block {
        text-align: left;
        min-height: auto;
    }
    .service-action-footer-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .btn-service-action {
        width: 100%;
        justify-content: space-between;
        background-color: var(--light-neutral);
        padding: 10px 15px;
        border-radius: 6px;
        border: 1px solid var(--border-color);
    }
}

















/* --- Micro-Services Grid Architecture --- */
.micro-services-section {
    padding: 60px 0 120px 0;
    background-color: transparent;
}

/* 2-Column Responsive Card Matrix Track Grid */
.micro-services-grid-matrix {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Glassmorphic Multi-Details Layout Panel Card */
.micro-service-item-card {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--luxury-shadow);
    display: flex;
    align-items: flex-start;
    gap: 22px;
    transition: transform var(--transition-speed) cubic-bezier(0.16, 1, 0.3, 1),
                border-color var(--transition-speed) ease,
                box-shadow var(--transition-speed) ease;
}

.micro-service-item-card:hover {
    transform: translateY(-4px);
    border-color: rgba(14, 165, 233, 0.2);
    box-shadow: 0 15px 35px -10px rgba(15, 23, 42, 0.06);
}

/* Geometric Icon Frame Carrier */
.micro-icon-sphere, .micro-icon-node {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    background-color: rgba(12, 74, 110, 0.05);
    color: var(--primary-color);
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background-color var(--transition-speed) ease, color var(--transition-speed) ease;
}

.micro-service-item-card:hover .micro-icon-sphere,
.micro-service-item-card:hover .micro-icon-node {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Structural String Balancing Inside Card */
.micro-content-strings h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark-neutral);
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.micro-content-strings p {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 18px;
}

/* Sub-Footer Meta Alignment Matrix */
.micro-footer-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(226, 232, 240, 0.6);
    padding-top: 14px;
}

.micro-rate-tag {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--secondary-color); /* High conversion rate tag green */
}

.micro-badge {
    background-color: var(--light-neutral);
    border: 1px solid var(--border-color);
    color: #475569;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.micro-badge i {
    color: var(--primary-light);
}

/* --- Responsive Viewport Device Overrides --- */
@media (max-width: 992px) {
    .micro-services-grid-matrix {
        grid-template-columns: 1fr; /* Maps elements vertically onto single track layouts on mobile screens */
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .micro-services-section { padding: 40px 0 80px 0; }
    .micro-service-item-card { padding: 22px; flex-direction: column; gap: 15px; }
    .micro-footer-meta { width: 100%; flex-direction: column; align-items: flex-start; gap: 10px; }
    .micro-badge { width: 100%; justify-content: center; }
}
