/* ==========================================================================
   ERASOR HIGH-END DESIGN SYSTEM & STYLES (REALIGNED)
   ========================================================================== */

/* 1. CSS Custom Properties / Design Tokens */
:root {
    /* Three-Color Palette Strict Compliance */
    --color-bg-light: #F4F5F7;        /* White / Grey background */
    --color-bg-white: #FFFFFF;        /* Pure White */
    --color-navy: #0E1E38;            /* Navy Blue */
    --color-black: #000000;           /* Pure Black */
    --color-dark-grey: #111827;       /* Very dark slate/black */
    --color-muted-grey: #4B5563;      /* Grey body text */
    --color-light-grey: #E5E7EB;      /* Light border grey */
    
    /* Semantic Color Mapping */
    --color-text-primary: var(--color-black);
    --color-text-muted: var(--color-muted-grey);
    --color-dark-accent: var(--color-navy);
    --color-primary-cta: var(--color-navy);
    --color-border: rgba(14, 30, 56, 0.12); /* Thin borders */
    
    /* Typography */
    --font-headings: 'Playfair Display', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
    --spacing-xxl: 8.5rem;
    
    /* Custom Aesthetics */
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.25s ease;
    --radius-sm: 4px;
    --radius-md: 16px;
    --radius-lg: 32px;
    --radius-full: 9999px;
}

/* 2. Base & Reset Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: auto;
    font-size: 16px;
    background-color: var(--color-bg-light);
    color: var(--color-text-primary);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    background: none;
    border: none;
    cursor: pointer;
}

/* Common Layout Elements */
.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

/* ==========================================================================
   CSS SCROLL REVEAL ANIMATION SYSTEM
   Elements are ALWAYS visible. Animation is progressive enhancement.
   ========================================================================== */

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Default state: always visible */
.anim-fade-up {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Only hide when JS is active (html.js-ready set by JS) */
html.js-ready .anim-fade-up:not(.revealed) {
    opacity: 0;
    transform: translateY(22px);
}

/* When revealed by IntersectionObserver */
.anim-fade-up.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Section Common Styles */
section {
    padding: var(--spacing-xxl) 0;
    position: relative;
}

.section-header {
    max-width: 750px;
    margin-bottom: var(--spacing-lg);
    text-align: left;
}

.section-tag {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--color-navy);
    margin-bottom: 1.2rem;
    border: 1.5px solid rgba(14, 30, 56, 0.25);
    padding: 0.35rem 0.9rem;
    border-radius: var(--radius-full);
    background-color: var(--color-bg-white);
    box-shadow: 0 1px 4px rgba(14,30,56,0.06);
    line-height: 1.4;
}

.section-heading {
    font-family: var(--font-headings);
    font-size: clamp(2.2rem, 5vw, 3.25rem);
    font-weight: 700;
    line-height: 1.12;
    color: #0f1a2e;
    letter-spacing: -0.02em;
    margin-bottom: var(--spacing-sm);
}

.section-heading em {
    font-family: var(--font-headings);
    font-style: italic;
    font-weight: 400;
}

.section-intro {
    font-size: 1.1rem;
    color: #374151;
    font-weight: 400;
    margin-top: var(--spacing-sm);
    line-height: 1.65;
}

/* Premium Buttons System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.05rem 2.5rem;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    transition: var(--transition-smooth);
    gap: 0.6rem;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--color-navy);
    color: var(--color-bg-white);
    border: 1px solid var(--color-navy);
}

.btn-primary:hover {
    background-color: var(--color-black);
    border-color: var(--color-black);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-navy);
    border: 1px solid var(--color-navy);
}

.btn-secondary:hover {
    background-color: var(--color-navy);
    color: var(--color-bg-white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.25rem 3.2rem;
    font-size: 0.98rem;
}

.btn-full {
    width: 100%;
}

.btn-icon {
    width: 16px;
    height: 16px;
}

/* ==========================================================================
   NAVIGATION BAR (FIXORA CAPSULE BLACK NAVBAR)
   ========================================================================== */
.nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding-top: 1rem;
    transition: var(--transition-smooth);
}

.navbar {
    width: 98%;
    max-width: 1500px;
    margin: 0 auto;
    background-color: var(--color-black);
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.6rem 2.5rem;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
}

/* Brand logo style without changing color */
.logo-img {
    height: 68px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

/* Navbar hover design: soft opacity shift */
.nav-link {
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-bg-white);
    opacity: 0.7;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    opacity: 1;
    color: #4A90E2; /* Modern clean active/hover color accent */
}

/* Button in Navbar */
.navbar .btn-primary {
    background-color: #4A90E2; /* Matches Contact CTA style in reference image */
    color: var(--color-bg-white);
    border-color: #4A90E2;
    padding: 0.75rem 1.8rem;
    font-size: 0.82rem;
}

.navbar .btn-primary:hover {
    background-color: var(--color-bg-white);
    color: var(--color-black);
    border-color: var(--color-bg-white);
}

.nav-cta-desktop {
    display: block;
}

.nav-cta-mobile {
    display: none;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    z-index: 1010;
}

.hamburger-bar {
    width: 100%;
    height: 2px;
    background-color: var(--color-bg-white);
    transition: var(--transition-fast);
}

/* ==========================================================================
   SECTION 1: HERO SECTION
   ========================================================================== */
.hero-section {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background-color: var(--color-navy);
}

/* Background Container */
.hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-outdoor-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.82) 0%,
        rgba(0, 0, 0, 0.45) 45%,
        rgba(0, 0, 0, 0.15) 100%
    );
    z-index: 2;
}

/* Content Container wrapper */
.hero-content-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding-bottom: 2.5vh;
}

.hero-container-box {
    width: 92%;
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 2.5rem 0 2.5rem;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 0;
    border: none;
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 4rem;
    align-items: flex-end;
    color: var(--color-bg-white);
}

.hero-tag-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 1.5rem;
    align-self: flex-start;
}

.hero-tag-badge .badge-icon {
    font-size: 0.9rem;
    color: var(--color-bg-white);
}

.hero-left {
    display: flex;
    flex-direction: column;
}

.hero-title {
    font-family: var(--font-headings);
    font-size: clamp(2.5rem, 5.2vw, 4.25rem);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--color-bg-white);
    margin-bottom: 1.5rem;
}

.hero-title em {
    font-family: var(--font-headings);
    font-style: italic;
    font-weight: 300;
}

.hero-subtext {
    font-size: clamp(1.05rem, 1.8vw, 1.2rem);
    opacity: 0.85;
    font-weight: 400;
    line-height: 1.55;
    max-width: 580px;
    margin-bottom: 2rem;
}

.hero-ctas {
    display: flex;
    gap: 1.2rem;
}

.hero-ctas .btn-primary {
    background-color: #4A90E2;
    border-color: #4A90E2;
}

.hero-ctas .btn-primary:hover {
    background-color: var(--color-bg-white);
    color: var(--color-black);
    border-color: var(--color-bg-white);
}

.hero-ctas .btn-secondary {
    background-color: transparent;
    color: var(--color-bg-white);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.hero-ctas .btn-secondary:hover {
    background-color: var(--color-bg-white);
    color: var(--color-navy);
    border-color: var(--color-bg-white);
}

.hero-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    height: 100%;
}

/* Review Badge */
.hero-review-badge {
    background-color: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-md);
    padding: 1.5rem 1.8rem;
    width: 100%;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.badge-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.rating-box {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    background-color: var(--color-bg-white);
    color: var(--color-navy);
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-full);
    font-weight: 800;
    font-size: 0.9rem;
}

.rating-box .star-filled {
    color: var(--color-navy);
    font-size: 0.95rem;
}

.avatar-group {
    display: flex;
    align-items: center;
}

.avatar-img {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    border: 2px solid var(--color-navy);
    background-color: var(--color-light-grey);
    margin-right: -10px;
    background-size: cover;
    background-position: center;
}

.avatar-1 { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%230e1e38"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 3c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm0 14.2c-2.5 0-4.71-1.28-6-3.22.03-1.99 4-3.08 6-3.08 1.99 0 5.97 1.09 6 3.08-1.29 1.94-3.5 3.22-6 3.22z"/></svg>'); }
.avatar-2 { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%230e1e38"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 3c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm0 14.2c-2.5 0-4.71-1.28-6-3.22.03-1.99 4-3.08 6-3.08 1.99 0 5.97 1.09 6 3.08-1.29 1.94-3.5 3.22-6 3.22z"/></svg>'); }
.avatar-3 { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%230e1e38"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 3c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm0 14.2c-2.5 0-4.71-1.28-6-3.22.03-1.99 4-3.08 6-3.08 1.99 0 5.97 1.09 6 3.08-1.29 1.94-3.5 3.22-6 3.22z"/></svg>'); }

.rating-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.rating-title {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.9;
}

.rating-caption {
    font-size: 0.85rem;
    opacity: 0.75;
    line-height: 1.4;
}

/* ==========================================================================
   SECTION 2: TRUST INDICATORS
   ========================================================================== */
.trust-section {
    background-color: var(--color-bg-light);
    border-top: 1px solid var(--color-light-grey);
}

/* Standards list style (replacing trust indicator cards) */
.standards-list {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 3rem;
}

.standard-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.2rem 1.5rem;
    border-bottom: 1px solid rgba(14, 30, 56, 0.1);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    outline: none;
}

.standard-row:first-child {
    border-top: 1px solid rgba(14, 30, 56, 0.1);
}

.standard-left {
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.standard-number {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-navy);
    opacity: 0.4;
}

.standard-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    background-color: rgba(14, 30, 56, 0.05);
    color: var(--color-navy);
    opacity: 0.7;
    transform: scale(0.9);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.standard-icon svg {
    width: 20px;
    height: 20px;
}

.standard-title {
    font-family: var(--font-headings);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-navy);
    opacity: 0.6;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.standard-right {
    max-width: 500px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.standard-desc {
    font-size: 1.05rem;
    line-height: 1.5;
    color: var(--color-text-muted);
}

/* Hover/Active State */
.standard-row:hover,
.standard-row:focus-within {
    padding: 3rem 2rem;
    background-color: var(--color-bg-white);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(14, 30, 56, 0.06);
    border-bottom-color: transparent;
}

.standard-row:hover + .standard-row {
    border-top-color: transparent;
}

.standard-row:hover .standard-title,
.standard-row:focus-within .standard-title {
    opacity: 1;
    font-size: 2.15rem;
    color: var(--color-black);
}

.standard-row:hover .standard-icon,
.standard-row:focus-within .standard-icon {
    opacity: 1;
    transform: scale(1);
    background-color: var(--color-navy);
    color: var(--color-bg-white);
}

.standard-row:hover .standard-right,
.standard-row:focus-within .standard-right {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* ==========================================================================
   SECTION 3: SERVICES
   ========================================================================== */
.services-section {
    background-color: var(--color-bg-white);
    border-top: 1px solid var(--color-light-grey);
}

/* Services tabbed layout */
.services-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.service-tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 2rem;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-full);
    border: 1.5px solid rgba(14, 30, 56, 0.15);
    background-color: transparent;
    color: var(--color-navy);
    opacity: 0.75;
    transition: var(--transition-smooth);
}

.service-tab-btn:hover {
    opacity: 1;
    border-color: var(--color-navy);
    transform: translateY(-1px);
}

.service-tab-btn.active {
    background-color: var(--color-navy);
    color: var(--color-bg-white);
    border-color: var(--color-navy);
    opacity: 1;
    box-shadow: 0 4px 15px rgba(14, 30, 56, 0.15);
}

.tab-icon {
    width: 16px;
    height: 16px;
}

.service-display-card {
    background-color: var(--color-bg-light);
    border: 1px solid var(--color-light-grey);
    border-radius: var(--radius-lg);
    padding: 3.5rem;
    min-height: 480px;
    box-shadow: 0 15px 45px rgba(14, 30, 56, 0.03);
    position: relative;
    overflow: hidden;
}

.service-tab-content {
    display: none;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.service-tab-content.active {
    display: grid;
    animation: serviceTabFade 0.4s ease-out forwards;
}

@keyframes serviceTabFade {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-content-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}

.service-icon-large {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-full);
    background-color: rgba(14, 30, 56, 0.06);
    color: var(--color-navy);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-large svg {
    width: 28px;
    height: 28px;
}

.service-content-title {
    font-family: var(--font-headings);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--color-navy);
    line-height: 1.1;
}

.service-content-desc {
    font-size: 1.05rem;
    color: #374151;
    line-height: 1.65;
    margin-bottom: 0.5rem;
}

.service-chat-btn {
    padding: 0.9rem 2.2rem;
}

.service-content-right {
    position: relative;
    width: 100%;
    height: 100%;
}

.service-img-wrapper {
    width: 100%;
    height: 320px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.service-tab-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================================================
   SECTION 4: BEFORE & AFTER TRANSFORMATIONS
   ========================================================================== */
.transformations-section {
    background-color: var(--color-bg-light);
    border-top: 1px solid var(--color-light-grey);
}

/* Gallery Puzzle Piece Masonry Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 240px;
    gap: 1.5rem;
    width: 100%;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

/* puzzle piece spans */
.gallery-item.wide-2 {
    grid-column: span 2;
}

.gallery-item.tall-2 {
    grid-row: span 2;
}

.gallery-item.big-2 {
    grid-column: span 2;
    grid-row: span 2;
}

/* Hover overlay effects */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(14, 30, 56, 0.9) 0%, rgba(14, 30, 56, 0.3) 60%, transparent 100%);
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.8rem;
    transition: var(--transition-smooth);
    z-index: 2;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(14, 30, 56, 0.12);
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-cat {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #4A90E2;
    margin-bottom: 0.4rem;
    transform: translateY(8px);
    transition: var(--transition-smooth);
    transition-delay: 0.05s;
}

.gallery-title {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-bg-white);
    transform: translateY(12px);
    transition: var(--transition-smooth);
    transition-delay: 0.1s;
}

.gallery-item:hover .gallery-cat,
.gallery-item:hover .gallery-title {
    transform: translateY(0);
}

/* ==========================================================================
   SECTION 5: WHY CHOOSE US
   ========================================================================== */
.why-section {
    background-color: var(--color-bg-white);
    border-top: 1px solid var(--color-light-grey);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.why-card {
    border-top: 2px solid var(--color-light-grey);
    padding-top: 2rem;
    transition: var(--transition-smooth);
}

.why-card:hover {
    border-top-color: var(--color-navy);
}

.why-number {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--color-navy);
    margin-bottom: 0.8rem;
    letter-spacing: 0.05em;
}

.why-title {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.7rem;
}

.why-desc {
    font-size: 0.93rem;
    color: #374151;
    line-height: 1.65;
    font-weight: 400;
}

/* ==========================================================================
   SECTION 6: OUR PROCESS
   ========================================================================== */
.process-section {
    background-color: var(--color-bg-light);
    border-top: 1px solid var(--color-light-grey);
}

.process-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3.5rem;
    margin-top: 2rem;
}

/* Central horizontal line */
.process-line {
    position: absolute;
    top: 25px;
    left: 10%;
    right: 10%;
    height: 1px;
    background-color: var(--color-light-grey);
    z-index: 1;
}

.process-step {
    position: relative;
    z-index: 5;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-dot {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-light-grey);
    color: var(--color-navy);
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.8rem;
    transition: var(--transition-smooth);
}

.process-step:hover .process-dot {
    background-color: var(--color-navy);
    border-color: var(--color-navy);
    color: var(--color-bg-white);
    transform: scale(1.05);
}

.process-content {
    max-width: 290px;
}

.process-step-title {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 0.8rem;
}

.process-step-desc {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* ==========================================================================
   SECTION 7: INDUSTRIES WE SERVE
   ========================================================================== */
.industries-section {
    background-color: var(--color-bg-white);
    border-top: 1px solid var(--color-light-grey);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
}

.industry-card {
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-light-grey);
    border-radius: var(--radius-md);
    padding: 2.5rem 1.8rem;
    text-align: center;
    transition: var(--transition-smooth);
}

.industry-card:hover {
    border-color: var(--color-navy);
    transform: translateY(-4px);
}

.industry-icon-wrapper {
    width: 46px;
    height: 46px;
    margin: 0 auto 1.5rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-navy);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    transition: var(--transition-smooth);
}

.industry-card:hover .industry-icon-wrapper {
    background-color: var(--color-navy);
    color: var(--color-bg-white);
    border-color: var(--color-navy);
}

.industry-svg {
    width: 22px;
    height: 22px;
}

.industry-title {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-navy);
}

/* ==========================================================================
   SECTION 8: SERVICE AREAS
   ========================================================================== */
.areas-section {
    background-color: var(--color-bg-light);
    border-top: 1px solid var(--color-light-grey);
}

.areas-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.areas-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
}

.areas-desc {
    font-size: 1.05rem;
    color: #374151;
    line-height: 1.65;
    font-weight: 400;
}

.areas-details-grid {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.area-group {
    display: flex;
    flex-direction: column;
}

.area-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-navy);
}

.area-check {
    width: 18px;
    height: 18px;
    color: var(--color-navy);
    flex-shrink: 0;
}

.area-sub-item {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-left: 1.9rem;
    margin-top: 0.25rem;
    font-weight: 400;
}

.areas-cta {
    margin-top: 0.5rem;
}

/* Map card */
.areas-map-card {
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-light-grey);
    border-radius: var(--radius-md);
    padding: 1rem;
}

.map-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-md);
    background-color: rgba(14, 30, 56, 0.02);
    background-image: 
        radial-gradient(var(--color-light-grey) 1px, transparent 1px),
        radial-gradient(var(--color-light-grey) 1px, transparent 1px);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-circle {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: var(--radius-full);
    background-color: rgba(14, 30, 56, 0.04);
}

.map-circle-outer {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: var(--radius-full);
    border: 1px dashed rgba(14, 30, 56, 0.08);
}

.ripple-animation {
    animation: mapRipple 3s infinite ease-out;
}

@keyframes mapRipple {
    0% { transform: scale(0.6); opacity: 0.8; }
    100% { transform: scale(1.4); opacity: 0; }
}

.map-pin {
    font-size: 2.5rem;
    position: relative;
    z-index: 10;
    margin-top: -1.2rem;
    animation: mapFloat 2.4s infinite ease-in-out;
}

@keyframes mapFloat {
    0% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0); }
}

.map-label {
    position: absolute;
    bottom: 38%;
    background-color: var(--color-navy);
    color: var(--color-bg-white);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-sm);
    z-index: 10;
}

.map-overlay-stats {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-light-grey);
    border-radius: var(--radius-md);
    padding: 1.2rem;
    display: flex;
    justify-content: space-around;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-num {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--color-navy);
}

.stat-lbl {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
}

/* ==========================================================================
   SECTION 9: TESTIMONIAL CAROUSEL
   ========================================================================== */
.testimonials-section {
    background-color: var(--color-bg-white);
    border-top: 1px solid var(--color-light-grey);
}

.testimonial-carousel-container {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    padding: 1.5rem 0;
}

.testimonial-carousel {
    position: relative;
    min-height: 280px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateY(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.testimonial-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.testimonial-stars {
    color: var(--color-navy);
    font-size: 1.1rem;
    letter-spacing: 0.08em;
}

.testimonial-quote {
    font-family: var(--font-headings);
    font-size: clamp(1.2rem, 2.5vw, 1.65rem);
    font-weight: 400;
    line-height: 1.5;
    color: var(--color-navy);
    letter-spacing: -0.01em;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background-color: var(--color-light-grey);
    background-size: cover;
    background-position: center;
}

.author-avatar-1 { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%230e1e38"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 3c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm0 14.2c-2.5 0-4.71-1.28-6-3.22.03-1.99 4-3.08 6-3.08 1.99 0 5.97 1.09 6 3.08-1.29 1.94-3.5 3.22-6 3.22z"/></svg>'); }
.author-avatar-2 { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%230e1e38"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 3c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm0 14.2c-2.5 0-4.71-1.28-6-3.22.03-1.99 4-3.08 6-3.08 1.99 0 5.97 1.09 6 3.08-1.29 1.94-3.5 3.22-6 3.22z"/></svg>'); }
.author-avatar-3 { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%230e1e38"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 3c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm0 14.2c-2.5 0-4.71-1.28-6-3.22.03-1.99 4-3.08 6-3.08 1.99 0 5.97 1.09 6 3.08-1.29 1.94-3.5 3.22-6 3.22z"/></svg>'); }

.author-info {
    text-align: left;
}

.author-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-navy);
}

.author-role {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 2.5rem;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: var(--radius-full);
    background-color: var(--color-light-grey);
    cursor: pointer;
    transition: var(--transition-fast);
}

.dot.active {
    width: 22px;
    background-color: var(--color-navy);
}

/* ==========================================================================
   SECTION 10: FAQ ACCORDION
   ========================================================================== */
.faq-section {
    background-color: var(--color-bg-light);
    border-top: 1px solid var(--color-light-grey);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-light-grey);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.accordion-item:hover {
    border-color: var(--color-navy);
    box-shadow: 0 4px 16px rgba(14, 30, 56, 0.08);
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.6rem 2.2rem;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 700;
    color: #111827;
    background: none;
    line-height: 1.4;
}

.accordion-question {
    padding-right: 1.5rem;
    color: #111827;
}

.accordion-icon {
    position: relative;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accordion-icon::before, .accordion-icon::after {
    content: '';
    position: absolute;
    background-color: var(--color-navy);
    transition: transform 0.3s ease;
    border-radius: 2px;
}

.accordion-icon::before {
    width: 2px;
    height: 100%;
}

.accordion-icon::after {
    width: 100%;
    height: 2px;
}

.accordion-header[aria-expanded="true"] .accordion-icon::before {
    transform: rotate(90deg);
}

.accordion-header[aria-expanded="true"] .accordion-icon::after {
    transform: rotate(180deg);
}

.accordion-collapse {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-body {
    padding: 0 2.2rem 1.6rem 2.2rem;
    font-size: 0.95rem;
    color: #374151;
    line-height: 1.65;
    font-weight: 400;
}

/* ==========================================================================
   SECTION 11: FINAL CALL-TO-ACTION
   ========================================================================== */
.final-cta-section {
    background-color: var(--color-navy);
    color: var(--color-bg-white);
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: var(--spacing-xl) 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.cta-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 75% 25%, rgba(255, 255, 255, 0.03) 0%, transparent 60%);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 5;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.cta-heading {
    font-family: var(--font-headings);
    font-size: clamp(2.2rem, 5.5vw, 3.5rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.cta-subheading {
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    opacity: 0.85;
    max-width: 600px;
}

.cta-buttons {
    display: flex;
    gap: 1.2rem;
    margin-top: 1rem;
}

.final-cta-section .btn-primary {
    background-color: var(--color-bg-white);
    color: var(--color-navy);
    border-color: var(--color-bg-white);
}

.final-cta-section .btn-primary:hover {
    background-color: var(--color-black);
    color: var(--color-bg-white);
    border-color: var(--color-black);
}

.final-cta-section .btn-secondary {
    background-color: transparent;
    color: var(--color-bg-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.final-cta-section .btn-secondary:hover {
    background-color: var(--color-bg-white);
    color: var(--color-navy);
    border-color: var(--color-bg-white);
}

/* ==========================================================================
   SECTION 12: CONTACT FORM
   ========================================================================== */
.contact-section {
    background-color: var(--color-bg-white);
    border-top: 1px solid var(--color-light-grey);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 4rem;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-panel-text {
    font-size: 1.05rem;
    color: #374151;
    line-height: 1.65;
    font-weight: 400;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    margin-top: 1.5rem;
}

.detail-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.detail-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-navy);
    color: var(--color-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.detail-svg {
    width: 18px;
    height: 18px;
}

.detail-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    margin-bottom: 0.2rem;
}

.detail-value {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-navy);
}

/* Form inputs styling */
.contact-form-panel {
    background-color: var(--color-bg-light);
    border: 1px solid var(--color-light-grey);
    border-radius: var(--radius-md);
    padding: 3.5rem;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--color-navy);
}

.form-group input, 
.form-group textarea, 
.form-group select {
    font-family: inherit;
    font-size: 0.95rem;
    padding: 0.95rem 1.25rem;
    border: 1px solid var(--color-light-grey);
    border-radius: var(--radius-sm);
    background-color: var(--color-bg-white);
    color: var(--color-black);
    transition: var(--transition-fast);
    outline: none;
}

.form-group input::placeholder, 
.form-group textarea::placeholder {
    color: #9CA3AF;
}

.form-group input:focus, 
.form-group textarea:focus, 
.form-group select:focus {
    border-color: var(--color-navy);
}

/* Select wrapper */
.select-wrapper {
    position: relative;
    width: 100%;
}

.select-wrapper::after {
    content: '▼';
    font-size: 0.65rem;
    color: var(--color-navy);
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.select-wrapper select {
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    padding-right: 2.5rem;
}

/* Upload dropzone */
.upload-dropzone {
    border: 1px dashed var(--color-light-grey);
    background-color: var(--color-bg-white);
    border-radius: var(--radius-sm);
    padding: 2.2rem;
    text-align: center;
    position: relative;
    transition: var(--transition-fast);
}

.upload-dropzone.dragover {
    border-color: var(--color-navy);
    background-color: rgba(14, 30, 56, 0.02);
}

.file-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.upload-svg {
    width: 32px;
    height: 32px;
    color: var(--color-navy);
    margin-bottom: 0.8rem;
}

.upload-main-text {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--color-navy);
}

.upload-main-text span {
    text-decoration: underline;
}

.upload-sub-text {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    margin-top: 0.2rem;
}

.file-preview-list {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.preview-item {
    position: relative;
    width: 64px;
    height: 64px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--color-light-grey);
}

.preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.preview-remove {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 16px;
    height: 16px;
    border-radius: var(--radius-full);
    background-color: rgba(0,0,0,0.6);
    color: var(--color-bg-white);
    font-size: 0.65rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.form-message {
    font-size: 0.9rem;
    font-weight: 700;
    display: none;
    padding: 0.9rem 1.25rem;
    border-radius: var(--radius-sm);
}

.form-message.success {
    display: block;
    background-color: rgba(16, 185, 129, 0.08);
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.15);
}

.form-message.error {
    display: block;
    background-color: rgba(220, 38, 38, 0.08);
    color: #DC2626;
    border: 1px solid rgba(220, 38, 38, 0.15);
}

/* ==========================================================================
   FOOTER (STRICT 3-COLOR)
   ========================================================================== */
.site-footer {
    background-color: var(--color-navy);
    color: var(--color-bg-white);
    padding: 5.5rem 0 2.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 3.5rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-logo {
    height: 72px;
    width: auto;
    object-fit: contain;
    align-self: flex-start;
}

.footer-tagline {
    font-size: 0.92rem;
    opacity: 0.75;
    line-height: 1.5;
    max-width: 280px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background-color: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.social-link svg {
    width: 16px;
    height: 16px;
}

.social-link:hover {
    background-color: var(--color-bg-white);
    color: var(--color-navy);
    transform: translateY(-2px);
}

.footer-col-title {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 20px;
    height: 1px;
    background-color: var(--color-bg-white);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--color-bg-white);
    padding-left: 2px;
}

.footer-contact-info {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    font-size: 0.9rem;
}

.footer-contact-info li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    opacity: 0.75;
    line-height: 1.5;
}

.footer-contact-svg {
    width: 18px;
    height: 18px;
    color: var(--color-bg-white);
    flex-shrink: 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2.2rem;
    font-size: 0.82rem;
    opacity: 0.65;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a:hover {
    color: var(--color-bg-white);
    text-decoration: underline;
}

/* ==========================================================================
   RESPONSIVE LAYOUT & DEVICE OPTIMIZATIONS
   ========================================================================== */

/* Tablet & Smaller Laptops Breakpoint (1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.8rem;
    }
    
    .hero-container-box {
        grid-template-columns: 1.15fr 0.85fr;
        padding: 0 2rem;
        gap: 2rem;
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.8rem;
    }
    
    .sliders-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        max-width: 650px;
        margin: 0 auto;
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .process-line {
        display: none;
    }
    
    .process-step {
        text-align: left;
        flex-direction: row;
        gap: 1.5rem;
        align-items: flex-start;
    }
    
    .process-dot {
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .process-content {
        max-width: none;
    }
    
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .areas-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

/* Mobile Devices Breakpoint (768px) */
@media (max-width: 768px) {
    section {
        padding: var(--spacing-xl) 0;
    }
    
    .section-header {
        margin-bottom: var(--spacing-md);
    }
    
    /* Sticky Navigation menu collapse */
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--color-bg-light);
        border-left: 1px solid var(--color-light-grey);
        z-index: 1005;
        flex-direction: column;
        align-items: flex-start;
        padding: 6rem 2.5rem 3rem 2.5rem;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 1.8rem;
        width: 100%;
        margin-bottom: 2rem;
    }
    
    .nav-link {
        font-size: 1.1rem;
        color: var(--color-navy); /* Dark navigation text for mobile menu background */
    }
    
    .nav-link:hover, .nav-link.active {
        color: var(--color-black);
    }
    
    .nav-cta-desktop {
        display: none;
    }
    
    .nav-cta-mobile {
        display: block;
        width: 100%;
    }
    
    .navbar.menu-open {
        background-color: transparent;
        border-bottom: none;
    }
    
    .menu-toggle.active .hamburger-bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .menu-toggle.active .hamburger-bar:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active .hamburger-bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    /* Hero section mobile adjustments */
    .hero-container-box {
        grid-template-columns: 1fr;
        padding: 0 1.5rem;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-subtext {
        margin: 0 auto 1.5rem auto;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .hero-right {
        align-items: center;
        min-height: auto;
    }
    
    .hero-review-badge {
        align-self: center;
        max-width: 100%;
    }
    
    /* Grid & Component Responsiveness */
    .standard-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.5rem 1.2rem !important;
    }
    
    .standard-title {
        font-size: 1.4rem !important;
    }
    
    .standard-right {
        opacity: 1 !important;
        transform: none !important;
        max-width: 100% !important;
        pointer-events: auto !important;
    }
    
    .service-tab-content {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
    }
    
    .service-display-card {
        padding: 2.2rem 1.8rem !important;
    }
    
    .service-img-wrapper {
        height: 250px !important;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        grid-auto-rows: 180px !important;
        gap: 1rem !important;
    }
    
    .gallery-item.wide-2 {
        grid-column: span 2 !important;
    }
    
    .gallery-item.tall-2 {
        grid-row: span 2 !important;
    }
    
    .gallery-item.big-2 {
        grid-column: span 2 !important;
        grid-row: span 2 !important;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .why-card {
        padding-top: 1.5rem;
    }
    
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .contact-form-panel {
        padding: 2.5rem 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding-bottom: 2.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.2rem;
        text-align: center;
    }
}

/* Extra Small Mobile Screen (480px) */
@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-ctas .btn {
        width: 100%;
    }
    
    .industries-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr !important;
        grid-auto-rows: 200px !important;
        gap: 1rem !important;
    }
    
    .gallery-item.wide-2,
    .gallery-item.tall-2,
    .gallery-item.big-2 {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }
    
    .testimonial-slide {
        min-height: 340px;
    }
}

/* Service Pages Fade-in Animation */
.service-hero,
.service-detail-section {
    animation: servicePageFadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.service-detail-section {
    animation-delay: 0.15s;
}

@keyframes servicePageFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
