/* ==========================================================================
   GLOBAL DESIGN VARIABLES & OPTIMISATIONS
   ========================================================================== */
:root {
    --clr-primary: #0F4C2A;       /* Brand Primary Emerald Forest Green */
    --clr-accent: #BA1C23;        /* Brand High-Performance Crimson Red */
    --clr-gold: #F2A900;          /* Brand Trust Gold Highlight */
    --clr-dark: #121614;          /* Deep Sleek Surface Charcoal */
    --clr-light: #F4F7F5;         /* Ultra Clean Soft Gray Background */
    --clr-white: #FFFFFF;
    --clr-text: #3A423E;          /* Muted High-Legibility Body Text */
    --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius-modern: 12px;
    --shadow-depth: 0 15px 35px rgba(0, 0, 0, 0.05);
}

/* Base Optimization Core */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: var(--clr-text);
    line-height: 1.5;
}

body {
    background-color: var(--clr-white);
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography Utility Modifiers */
h1, h2, h3, h4 {
    color: var(--clr-dark);
    font-weight: 700;
    line-height: 1.25;
}

.text-center { text-align: center; }
.text-white { color: var(--clr-white) !important; }
.text-gray-light { color: #D1DED7 !important; }
.text-uppercase { text-transform: uppercase; letter-spacing: 1.5px; }
.font-weight-bold { font-weight: 700; }

/* ==========================================================================
   HEADER & NAVBAR ARCHITECTURE (STRENGTHENED AND SCALED BIGGER)
   ========================================================================== */
.sticky-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
}

.topbar {
    background-color: var(--clr-dark);
    color: var(--clr-white);
    padding: 10px 0;
    font-size: 13.5px;
}

.topbar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-info a, .topbar-info span {
    color: #E2ECE7;
    text-decoration: none;
    margin-right: 24px;
    display: inline-block;
    transition: var(--transition-smooth);
}

.topbar-info a:hover {
    color: var(--clr-gold);
}

.topbar-info i {
    color: var(--clr-gold);
    margin-right: 8px;
}

/* Explicit Original Social Color Classes */
.topbar-socials a {
    margin-left: 16px;
    font-size: 15px;
    transition: var(--transition-smooth);
    display: inline-block;
}

.brand-fb { color: #1877F2 !important; }
.brand-insta { color: #E4405F !important; }
.brand-tiktok { color: #000000 !important; }
.brand-whatsapp { color: #25D366 !important; }

.topbar-socials a:hover {
    transform: scale(1.2);
}

/* Enhanced Larger Navbar Configuration */
.navbar {
    background-color: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    padding: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 95px; /* Scaled higher for bigger logo headroom */
}

.logo-brand {
    display: flex;
    align-items: center;
    height: 100%;
    text-decoration: none;
}

/* Interactive Eye-Catching Logo Scaler Block */
.nav-logo {
    height: 85px; /* Larger visibility profiles */
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
    transform-origin: left center;
    border-radius: 6px;
}

.logo-brand:hover .nav-logo {
    transform: scale(1.06);
    box-shadow: 0 4px 15px rgba(15, 76, 42, 0.15);
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
}

.nav-link {
    color: var(--clr-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 10px 20px;
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--clr-primary);
}

.nav-btn {
    background-color: var(--clr-accent);
    color: var(--clr-white);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: var(--border-radius-modern);
    transition: var(--transition-smooth);
    margin-left: 16px;
    box-shadow: 0 4px 12px rgba(186, 28, 35, 0.2);
}

.nav-btn:hover {
    background-color: #931217;
    box-shadow: 0 6px 20px rgba(186, 28, 35, 0.3);
    transform: translateY(-2px);
}

/* ==========================================================================
   STICKY ORIGINAL BRAND FLOATING SOCIAL DOCK
   ========================================================================== */
.sticky-social-dock {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    overflow: hidden;
}

.dock-item {
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--clr-white) !important;
    text-decoration: none;
    font-size: 20px;
    transition: var(--transition-smooth);
}

.dock-item:hover {
    width: 60px;
    padding-left: 12px;
}

.dock-item.wa { background-color: #25D366; }
.dock-item.fb { background-color: #1877F2; }
.dock-item.tt { background-color: #000000; }
.dock-item.ig { background-color: #E4405F; }

/* ==========================================================================
   HERO PRESENTATION AREA
   ========================================================================== */
.hero-section {
    background: linear-gradient(135deg, #F0F6F2 0%, #FFFFFF 100%);
    padding: 80px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.hero-badge {
    background-color: rgba(15, 76, 42, 0.08);
    color: var(--clr-primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-text-content h1 {
    font-size: 46px;
    color: var(--clr-dark);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-text-content p {
    font-size: 17.5px;
    margin-bottom: 30px;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
}

.btn {
    display: inline-block;
    padding: 15px 32px;
    font-weight: 700;
    border-radius: var(--border-radius-modern);
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.btn-primary {
    background-color: var(--clr-primary);
    color: var(--clr-white);
    box-shadow: 0 4px 15px rgba(15, 76, 42, 0.2);
}

.btn-primary:hover {
    background-color: #09321B;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--clr-dark);
    color: var(--clr-white);
}

.btn-secondary:hover {
    background-color: #000;
    transform: translateY(-2px);
}

.btn-accent {
    background-color: var(--clr-gold);
    color: var(--clr-dark);
    box-shadow: 0 4px 12px rgba(242, 169, 0, 0.2);
}

.btn-accent:hover {
    background-color: #D69600;
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-modern);
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
    object-fit: cover;
}

/* ==========================================================================
   PREMIUM COMPACT ABOUT US COMPONENT LAYOUT
   ========================================================================== */
.about-section {
    /* Reduced top and bottom padding profiles per instructions */
    padding: 45px 0; 
    background-color: var(--clr-white);
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    /* Reduced right/left layout separation down to 32px for maximum space efficiency */
    grid-template-columns: 0.92fr 1.08fr;
    gap: 32px; 
    align-items: center;
}

/* Left Image Box Architecture */
.about-image-gallery {
    position: relative;
    width: 100%;
    padding: 0 10px; /* Prevents overflow into container walls */
}

.main-image-wrapper {
    border-radius: var(--border-radius-modern);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(15, 76, 42, 0.06);
}

.about-img-primary {
    width: 100%;
    /* Reduced default vertical height footprint for compact viewing layouts */
    height: 400px; 
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.about-image-gallery:hover .about-img-primary {
    transform: scale(1.02);
}

/* Glassmorphic Trust Float Widget */
.experience-badge-box {
    position: absolute;
    bottom: -15px;
    right: 20px;
    background: rgba(15, 76, 42, 0.96);
    backdrop-filter: blur(8px);
    padding: 14px 22px;
    border-radius: var(--border-radius-modern);
    color: var(--clr-white);
    box-shadow: 0 10px 25px rgba(186, 28, 35, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    z-index: 2;
}

.badge-number {
    display: block;
    font-size: 26px;
    font-weight: 800;
    color: var(--clr-gold);
    line-height: 1;
    margin-bottom: 2px;
}

.badge-text {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Right Content Column Typography Styling */
.about-text-content {
    padding: 0 12px; /* Pulls text closer to side boundaries */
}

.section-sub-badge {
    color: var(--clr-primary);
    background-color: rgba(15, 76, 42, 0.07);
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 12px;
}

.about-text-content h2 {
    font-size: 32px;
    color: var(--clr-dark);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    line-height: 1.25;
}

.left-accent-line {
    height: 3.5px;
    width: 45px;
    background-color: var(--clr-accent);
    margin-bottom: 16px;
    border-radius: 2px;
}

.lead-paragraph {
    font-size: 16.5px;
    font-weight: 600;
    color: var(--clr-primary);
    margin-bottom: 12px;
    line-height: 1.45;
}

.body-narrative {
    font-size: 14.5px;
    color: var(--clr-text);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Value Properties Sub Grid Pattern */
.value-props-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.prop-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.prop-icon-circle {
    width: 40px;
    height: 40px;
    background-color: rgba(186, 28, 35, 0.06);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.prop-icon-circle i {
    color: var(--clr-accent);
    font-size: 16px;
}

.prop-text h4 {
    font-size: 15px;
    color: var(--clr-dark);
    margin-bottom: 3px;
}

.prop-text p {
    font-size: 13px;
    color: var(--clr-text);
    line-height: 1.4;
}

/* Action Controls Row Layout */
.about-action-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.about-phone-link {
    font-size: 16px;
    font-weight: 700;
    color: var(--clr-dark);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.about-phone-link i {
    color: var(--clr-primary);
    margin-right: 6px;
}

.about-phone-link:hover {
    color: var(--clr-accent);
}

/* ==========================================================================
   ADAPTIVE RESPONSIVENESS BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .about-text-content {
        max-width: 100%;
        padding: 0;
    }
    .about-img-primary {
        height: 360px;
    }
    .about-image-gallery {
        padding: 0;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 30px 0 !important; /* Forces highly minimized vertical metrics on small devices */
    }
    .about-text-content h2 {
        font-size: 26px;
    }
    .value-props-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .about-img-primary {
        height: 280px;
    }
    .experience-badge-box {
        padding: 12px 18px;
        right: 10px;
        bottom: -10px;
    }
    .badge-number {
        font-size: 22px;
    }
    .about-action-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .about-action-row .btn {
        width: 100%;
        padding: 14px;
    }
}

/* ==========================================================================
   HIGH-EFFICIENCY 6-CARD GRID SECTOR STYLE
   ========================================================================== */
.services-home-section {
    background-color: #FAFBFB;
    padding: 40px 0; /* Minimized vertical whitespace footprints */
    position: relative;
    overflow: hidden;
}

/* Tightened side boundaries to completely pull cards to the outer walls */
.compact-services-container {
    max-width: 1200px;
    padding: 0 12px; /* Reduced margin padding gap from 16px/24px down to 12px */
    margin: 0 auto;
}

/* Header Text Blocks */
.services-main-header {
    margin-bottom: 24px;
}

.services-tag-badge {
    color: var(--clr-primary);
    background-color: rgba(15, 76, 42, 0.07);
    padding: 4px 12px;
    border-radius: 35px;
    font-size: 13px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 6px;
}

.services-main-header h2 {
    font-size: 30px;
    color: var(--clr-dark);
    letter-spacing: -0.5px;
    margin-bottom: 6px;
    line-height: 1.2;
}

.services-accent-line {
    height: 3px;
    width: 45px;
    background-color: var(--clr-accent);
    margin: 6px auto 12px auto;
    border-radius: 2px;
}

.services-main-header p {
    font-size: 14.5px;
    max-width: 720px;
    margin: 0 auto;
    color: var(--clr-text);
    line-height: 1.45;
}

/* Highly Optimized High-Density Cards Grid */
.services-cards-grid {
    display: grid;
    /* Clean fluid sizing parameters auto-adapting per viewport width */
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 16px; /* Tight, professional gaps that keep elements neat and clean */
}

/* Unified Compact Service Cards Architecture */
.service-block-card {
    background-color: var(--clr-white);
    border-radius: var(--border-radius-modern);
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid #EFEFE4;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.service-block-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(15, 76, 42, 0.08);
}

.service-block-card.highlight-border {
    border-top: 4px solid var(--clr-gold);
}

/* Compact Card Media Crop Ratio */
.service-card-media {
    width: 100%;
    height: 185px; /* Shorter image panels to eliminate scroll bloat */
    overflow: hidden;
    position: relative;
    background-color: #EFEFE4;
}

.service-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.service-block-card:hover .service-card-media img {
    transform: scale(1.03);
}

/* Card Body Section Padding Constraints */
.service-card-content {
    padding: 16px; /* Reduced internal padding to increase textual spatial density */
    flex-grow: 1;
}

.service-card-content h3 {
    font-size: 18px;
    color: var(--clr-dark);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-card-content h3 i {
    color: var(--clr-primary);
    font-size: 15px;
}

.trust-tagline {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--clr-gold);
    margin-top: -6px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Dense Bullet Layout System */
.compact-bullet-list {
    list-style: none;
}

.compact-bullet-list li {
    font-size: 13.5px;
    line-height: 1.4;
    color: var(--clr-text);
    margin-bottom: 6px;
    position: relative;
    padding-left: 16px;
}

.compact-bullet-list li:last-child {
    margin-bottom: 0;
}

.compact-bullet-list li i {
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--clr-gold);
    font-size: 10px;
}

/* Footer Section CTA Row */
.services-footer-cta {
    margin-top: 24px;
}

.services-footer-cta .btn {
    padding: 12px 30px;
    font-size: 14.5px;
}

/* ==========================================================================
   CROSS-DEVICE VISUAL BALANCING ENGINE
   ========================================================================== */
@media (max-width: 768px) {
    .services-home-section {
        padding: 30px 0 !important; /* Minimized vertical box parameters on mobile screen layers */
    }
    .compact-services-container {
        padding: 0 8px; /* Extra dense side buffer limiters for smartphones */
    }
    .services-main-header h2 {
        font-size: 24px;
    }
    .services-cards-grid {
        grid-template-columns: 1fr; /* Single column layout for small viewports */
        gap: 12px;
    }
    .service-card-media {
        height: 170px;
    }
    .service-card-content {
        padding: 14px;
    }
    .services-footer-cta .btn {
        width: 100%; /* Expands full width for easier mobile interactivity */
    }
}

/* ==========================================================================
   WHITEGOODS APPLIANCES SECTOR
   ========================================================================== */
.appliances-section {
    padding: 90px 0;
}

.product-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.showcase-text .sub-heading {
    color: var(--clr-accent);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 6px;
}

.showcase-text h2 {
    font-size: 38px;
    color: var(--clr-dark);
}

.showcase-text .tagline {
    font-size: 20px;
    color: var(--clr-gold);
    font-weight: 600;
    margin-bottom: 20px;
}

.showcase-text p {
    font-size: 16px;
    margin-bottom: 24px;
}



/* ==========================================================================
   COMPACT & PROFESSIONAL "WHY CHOOSE US" SECTION STYLING
   ========================================================================== */

.trust-features-section {
    background: linear-gradient(180deg, #FFFFFF 0%, #FAFBFB 100%);
    /* Extremely low top and bottom padding to eliminate dead space */
    padding: 32px 0;
    border-top: 1px solid #EFEFE4;
    border-bottom: 1px solid #EFEFE4;
}

/* Maximized container width with minimal left/right padding */
.compact-trust-container {
    max-width: 1240px;
    padding: 0 12px; /* Tight side bounds - no empty gaps on left and right */
    margin: 0 auto;
}

/* Section Header */
.trust-header {
    text-align: center;
    margin-bottom: 20px; /* Reduced gap below header */
}

.trust-badge {
    color: #0F4C2A;
    background-color: rgba(15, 76, 42, 0.08);
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 12.5px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 6px;
    letter-spacing: 0.3px;
}

.trust-header h2 {
    font-size: 28px;
    color: #1A1A1A;
    font-weight: 800;
    letter-spacing: -0.4px;
    margin: 0 0 6px 0;
    line-height: 1.2;
}

.trust-accent-line {
    height: 3px;
    width: 45px;
    background-color: #D4AF37; /* Gold accent matching brand */
    margin: 6px auto 10px auto;
    border-radius: 2px;
}

.trust-header p {
    font-size: 14.5px;
    max-width: 680px;
    margin: 0 auto;
    color: #555555;
    line-height: 1.4;
}

/* 6-Card Grid Layout */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 cards across desktop */
    gap: 14px; /* Tight, crisp gap between cards */
}

/* Individual Feature Card Design */
.trust-card {
    background-color: #FFFFFF;
    border: 1px solid #EAEAEA;
    border-radius: 8px;
    padding: 16px; /* Tight padding inside card for dense information */
    display: flex;
    align-items: flex-start;
    gap: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.trust-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(15, 76, 42, 0.08);
    border-color: rgba(15, 76, 42, 0.25);
}

/* Icon Container */
.trust-icon-box {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #0F4C2A 0%, #156337 100%);
    color: #FFFFFF;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(15, 76, 42, 0.15);
}

/* Card Body Text */
.trust-card-body {
    flex-grow: 1;
}

.trust-card-body h3 {
    font-size: 16.5px;
    color: #1A1A1A;
    font-weight: 700;
    margin: 0 0 4px 0;
    line-height: 1.25;
}

.trust-card-body p {
    font-size: 13px;
    color: #666666;
    margin: 0;
    line-height: 1.45;
}

/* Bottom Fast Stats Bar */
.trust-stats-bar {
    margin-top: 20px;
    background-color: #0F4C2A;
    border-radius: 8px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    color: #FFFFFF;
    box-shadow: 0 4px 14px rgba(15, 76, 42, 0.12);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: #FFD700; /* Gold */
    line-height: 1;
    margin-bottom: 2px;
}

.stat-label {
    font-size: 12.5px;
    color: #E0E0E0;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 28px;
    background-color: rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   CROSS-DEVICE RESPONSIVE BREAKPOINTS (Zero Dead-Space on Mobile)
   ========================================================================== */

/* Tablet View (Max 992px) */
@media (max-width: 992px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns for tablets */
        gap: 12px;
    }
}

/* Mobile View (Max 600px) */
@media (max-width: 600px) {
    .trust-features-section {
        padding: 24px 0 !important; /* Extremely tight vertical space */
    }

    .compact-trust-container {
        padding: 0 10px !important; /* Cards almost touch mobile screen edges neatly */
    }

    .trust-header h2 {
        font-size: 22px;
    }

    .trust-header p {
        font-size: 13.5px;
    }

    .trust-grid {
        grid-template-columns: 1fr; /* 1 column linear stack on phones */
        gap: 10px;
    }

    .trust-card {
        padding: 12px 14px;
        gap: 12px;
    }

    .trust-icon-box {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .trust-card-body h3 {
        font-size: 15.5px;
    }

    .trust-card-body p {
        font-size: 12.5px;
    }

    .trust-stats-bar {
        margin-top: 14px;
        padding: 12px 10px;
        flex-direction: row; /* Keeps horizontal layout compact */
    }

    .stat-number {
        font-size: 18px;
    }

    .stat-label {
        font-size: 11px;
    }
}




/* ==========================================================================
   FEATURE / ABOUT FLEET SECTION WITH IMAGE
   ========================================================================== */

:root {
    --clr-primary: #0F4C2A;       /* Brand Primary Emerald Forest Green */
    --clr-accent: #BA1C23;        /* Brand High-Performance Crimson Red */
    --clr-gold: #F2A900;          /* Brand Trust Gold Highlight */
    --clr-dark: #121614;          /* Deep Sleek Surface Charcoal */
    --clr-light: #F4F7F5;         /* Ultra Clean Soft Gray Background */
    --clr-white: #FFFFFF;
    --clr-text: #3A423E;          /* Muted High-Legibility Body Text */
    --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius-modern: 12px;
    --shadow-depth: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.about-feature-section {
    background-color: var(--clr-white);
    /* 60px top and bottom padding for high visual quality */
    padding: 60px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Reduced left and right margins to eliminate wasted screen space */
.compact-feature-container {
    max-width: 1280px;
    padding: 0 12px; /* Tight side bounds - zero dead space on left/right */
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.15fr; /* Balanced image vs content split */
    gap: 32px; /* Distinct gap separating image from text content */
    align-items: center;
}

/* --------------------------------------------------------------------------
   LEFT COLUMN: IMAGE & FLOATING OVERLAY
   -------------------------------------------------------------------------- */
.feature-image-column {
    width: 100%;
}

.feature-image-wrapper {
    position: relative;
    border-radius: var(--border-radius-modern);
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #EAEAEA;
    background-color: var(--clr-light);
}

.feature-image-wrapper img {
    width: 100%;
    height: 100%;
    max-height: 440px;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.feature-image-wrapper:hover img {
    transform: scale(1.03);
}

/* Floating Trust Overlay Badge */
.floating-trust-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background-color: rgba(18, 22, 20, 0.88);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius-modern);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.trust-badge-icon {
    width: 38px;
    height: 38px;
    background-color: var(--clr-gold);
    color: var(--clr-dark);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.trust-badge-text {
    display: flex;
    flex-direction: column;
}

.badge-title {
    color: var(--clr-white);
    font-size: 13.5px;
    font-weight: 700;
    line-height: 1.2;
}

.badge-sub {
    color: #D0D0D0;
    font-size: 11.5px;
    margin-top: 2px;
}

/* --------------------------------------------------------------------------
   RIGHT COLUMN: HEADER & FEATURE CARDS
   -------------------------------------------------------------------------- */
.feature-content-column {
    width: 100%;
}

.feature-header {
    margin-bottom: 24px;
}

.feature-tag-badge {
    color: var(--clr-primary);
    background-color: rgba(15, 76, 42, 0.08);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-header h2 {
    font-size: 28px;
    color: var(--clr-dark);
    font-weight: 800;
    margin: 0 0 6px 0;
    line-height: 1.25;
    letter-spacing: -0.4px;
}

.feature-accent-line {
    height: 3px;
    width: 45px;
    background-color: var(--clr-accent);
    margin: 6px 0 10px 0;
    border-radius: 2px;
}

.feature-header p {
    font-size: 14.5px;
    color: var(--clr-text);
    margin: 0;
    line-height: 1.5;
}

/* 2x2 Feature Cards Grid */
.feature-highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px; /* Clean gap between cards */
    margin-bottom: 24px;
}

.feature-highlight-card {
    background-color: var(--clr-light);
    border: 1px solid #E2E8E4;
    border-radius: var(--border-radius-modern);
    padding: 14px 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: var(--transition-smooth);
}

.feature-highlight-card:hover {
    background-color: var(--clr-white);
    border-color: var(--clr-primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(15, 76, 42, 0.08);
}

.highlight-icon {
    width: 36px;
    height: 36px;
    background-color: var(--clr-primary);
    color: var(--clr-white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.feature-highlight-card:hover .highlight-icon {
    background-color: var(--clr-accent);
}

.highlight-info h3 {
    font-size: 14.5px;
    color: var(--clr-dark);
    font-weight: 700;
    margin: 0 0 3px 0;
}

.highlight-info p {
    font-size: 12px;
    color: var(--clr-text);
    margin: 0;
    line-height: 1.4;
}

/* Buttons CTA Row */
.feature-action-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-feature-primary {
    background-color: var(--clr-accent);
    color: var(--clr-white);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.btn-feature-primary:hover {
    background-color: var(--clr-gold);
    color: var(--clr-dark);
}

.btn-feature-outline {
    background-color: transparent;
    color: var(--clr-dark);
    border: 1px solid var(--clr-dark);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.btn-feature-outline:hover {
    background-color: var(--clr-primary);
    border-color: var(--clr-primary);
    color: var(--clr-white);
}

/* ==========================================================================
   CROSS-DEVICE RESPONSIVE BREAKPOINTS
   ========================================================================== */

/* Laptop & Tablet Breakpoint (Max 992px) */
@media (max-width: 992px) {
    .compact-feature-container {
        grid-template-columns: 1fr; /* Stacks image on top of content */
        gap: 24px;
    }

    .feature-image-wrapper img {
        max-height: 340px;
    }
}

/* Mobile Screen Breakpoint (Max 600px) */
@media (max-width: 600px) {
    .about-feature-section {
        padding: 40px 0 !important; /* Tightens padding slightly on small mobile screens */
    }

    .compact-feature-container {
        padding: 0 8px !important; /* Extends cards neatly across smartphone edges */
    }

    .feature-header h2 {
        font-size: 22px;
    }

    .feature-highlights-grid {
        grid-template-columns: 1fr; /* Single column stack for feature cards */
        gap: 10px;
    }

    .feature-highlight-card {
        padding: 12px;
    }

    .floating-trust-badge {
        bottom: 10px;
        left: 10px;
        padding: 8px 12px;
    }

    .trust-badge-icon {
        width: 32px;
        height: 32px;
        font-size: 15px;
    }

    .badge-title {
        font-size: 12px;
    }

    .badge-sub {
        font-size: 10.5px;
    }

    .feature-action-row {
        flex-direction: column;
        width: 100%;
    }

    .btn-feature-primary, 
    .btn-feature-outline {
        width: 100%;
        justify-content: center;
    }
}





/* ==========================================================================
   "HOW IT WORKS" PROCESS SECTION
   ========================================================================== */

:root {
    --clr-primary: #0F4C2A;       /* Brand Primary Emerald Forest Green */
    --clr-accent: #BA1C23;        /* Brand High-Performance Crimson Red */
    --clr-gold: #F2A900;          /* Brand Trust Gold Highlight */
    --clr-dark: #121614;          /* Deep Sleek Surface Charcoal */
    --clr-light: #F4F7F5;         /* Ultra Clean Soft Gray Background */
    --clr-white: #FFFFFF;
    --clr-text: #3A423E;          /* Muted High-Legibility Body Text */
    --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius-modern: 12px;
    --shadow-depth: 0 10px 25px rgba(0, 0, 0, 0.04);
}

.process-section {
    background-color: var(--clr-light);
    /* 60px top and bottom padding as requested */
    padding: 60px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Reduced left/right side margins to maximize usable width */
.compact-process-container {
    max-width: 1280px;
    padding: 0 12px; /* Tight side margins for reduced side gap */
    margin: 0 auto;
}

/* Header Section */
.process-header {
    text-align: center;
    margin-bottom: 32px;
}

.process-badge {
    color: var(--clr-primary);
    background-color: rgba(15, 76, 42, 0.08);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.process-header h2 {
    font-size: 30px;
    color: var(--clr-dark);
    font-weight: 800;
    margin: 0 0 6px 0;
    line-height: 1.2;
    letter-spacing: -0.4px;
}

.process-accent-line {
    height: 3px;
    width: 45px;
    background-color: var(--clr-accent);
    margin: 6px auto 10px auto;
    border-radius: 2px;
}

.process-header p {
    font-size: 15px;
    max-width: 650px;
    margin: 0 auto;
    color: var(--clr-text);
    line-height: 1.45;
}

/* 4-Step Grid Layout */
.process-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px; /* Enhanced gap between cards for clean separation */
}

/* Step Card Base Styling */
.process-step-card {
    background-color: var(--clr-white);
    border: 1px solid #E2E8E4;
    border-radius: var(--border-radius-modern);
    padding: 24px 18px;
    position: relative;
    box-shadow: var(--shadow-depth);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.process-step-card:hover {
    transform: translateY(-5px);
    border-color: var(--clr-primary);
    box-shadow: 0 15px 30px rgba(15, 76, 42, 0.1);
}

.process-step-card.highlight-step {
    border-top: 4px solid var(--clr-gold);
}

/* Step Badging & Numbering */
.step-number-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    font-size: 13px;
    font-weight: 800;
    color: var(--clr-primary);
    background-color: rgba(15, 76, 42, 0.08);
    padding: 2px 9px;
    border-radius: 12px;
}

.step-number-badge.gold-badge {
    color: var(--clr-dark);
    background-color: var(--clr-gold);
}

/* Step Icon Styling */
.step-icon-wrapper {
    width: 52px;
    height: 52px;
    background-color: var(--clr-light);
    color: var(--clr-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 14px;
    transition: var(--transition-smooth);
    border: 1px solid #E2E8E4;
}

.process-step-card:hover .step-icon-wrapper {
    background-color: var(--clr-primary);
    color: var(--clr-white);
    border-color: var(--clr-primary);
}

.step-icon-wrapper.active-icon {
    background-color: var(--clr-accent);
    color: var(--clr-white);
    border-color: var(--clr-accent);
}

/* Card Typography */
.process-step-card h3 {
    font-size: 17px;
    color: var(--clr-dark);
    font-weight: 700;
    margin: 0 0 8px 0;
}

.process-step-card p {
    font-size: 13px;
    color: var(--clr-text);
    margin: 0;
    line-height: 1.5;
}

/* Callout Action Bar */
.process-callout-bar {
    margin-top: 28px;
    background-color: var(--clr-primary);
    border-radius: var(--border-radius-modern);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--clr-white);
    box-shadow: var(--shadow-depth);
}

.callout-text {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
}

.text-gold {
    color: var(--clr-gold);
}

.process-cta-btn {
    background-color: var(--clr-accent);
    color: var(--clr-white);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.process-cta-btn:hover {
    background-color: var(--clr-gold);
    color: var(--clr-dark);
}

.process-cta-btn i {
    font-size: 11px;
    transition: var(--transition-smooth);
}

.process-cta-btn:hover i {
    transform: translateX(4px);
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */

@media (max-width: 1024px) {
    .process-steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 600px) {
    .process-section {
        padding: 40px 0 !important; /* Slightly reduced for smaller mobile viewports */
    }

    .compact-process-container {
        padding: 0 8px !important;
    }

    .process-header h2 {
        font-size: 24px;
    }

    .process-steps-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .process-step-card {
        padding: 16px;
        align-items: flex-start;
        text-align: left;
    }

    .process-callout-bar {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        padding: 14px;
    }

    .process-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   CONVERSION MODULE
   ========================================================================== */
.quote-section {
    padding: 90px 0;
    background: linear-gradient(rgba(15, 76, 42, 0.96), rgba(15, 76, 42, 0.96)), url('../images/interstate_moves.jpeg') no-repeat center center/cover;
}

.gold-divider {
    height: 3px;
    width: 70px;
    background-color: var(--clr-gold);
    margin: 12px auto 20px auto;
}

.dynamic-form-container {
    max-width: 760px;
}

.booking-form {
    background-color: var(--clr-white);
    padding: 45px;
    border-radius: var(--border-radius-modern);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.25);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 14.5px;
    margin-bottom: 8px;
    color: var(--clr-dark);
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #CFDAD5;
    border-radius: 8px;
    font-size: 15.5px;
    outline: none;
    transition: var(--transition-smooth);
    background-color: #FAFBFB;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--clr-primary);
    background-color: var(--clr-white);
    box-shadow: 0 0 0 4px rgba(15, 76, 42, 0.08);
}

.booking-form button {
    width: 100%;
    padding: 16px;
    font-size: 16px;
}

/* ==========================================================================
   FOOTER PATTERNS
   ========================================================================== */
.main-footer {
    background-color: var(--clr-dark);
    color: #9AA7A1;
    padding: 75px 0 25px 0;
    border-top: 4px solid var(--clr-gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
    background-color: var(--clr-white);
    padding: 8px;
    border-radius: 6px;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-grid h3 {
    color: var(--clr-white);
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-links ul, .footer-services ul {
    list-style: none;
}

.footer-links li, .footer-services li {
    margin-bottom: 12px;
    font-size: 14.5px;
}

.footer-links a {
    color: #9AA7A1;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--clr-white);
    padding-left: 5px;
}

.footer-contact p {
    font-size: 14.5px;
    margin-bottom: 12px;
}

.footer-contact i {
    color: var(--clr-gold);
    margin-right: 10px;
}

.footer-bottom {
    border-top: 1px solid #232B27;
    padding-top: 25px;
    font-size: 13px;
}

/* ==========================================================================
   FLUID RESPONSIVE ENGINE & BALANCED MOBILE LAYOUTS
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-grid, .product-showcase-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .hero-text-content { text-align: center; }
    .hero-cta-group { justify-content: center; }
    .hero-image-wrapper { order: -1; max-width: 600px; margin: 0 auto; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 768px) {
    .sticky-social-dock { display: none; } /* Hide floating side dock on smaller dynamic viewport profiles */
    .topbar { display: none; }
    .navbar-wrapper { height: 85px; }
    .nav-logo { height: 75px; }
    .nav-menu { display: none; } /* Mobile implementation targets overlay triggers */
    
    /* Strict Mobile Spacing Balancing */
    .hero-section, .services-section, .appliances-section, .quote-section {
        padding: 50px 0 !important; /* Forces balanced, equal top/bottom separation */
    }
    .section-header { margin-bottom: 35px; }
    .hero-text-content h1 { font-size: 32px; }
    .showcase-text h2 { font-size: 28px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .booking-form { padding: 25px; }
    .footer-grid { grid-template-columns: 1fr; gap: 35px; }
}