/*
Theme Name: Elmore Design Build
Theme URI: https://elmoredesignbuild.com
Author: Marjan Ahmed
Description: Premium custom theme for Elmore Design & Build.
Version: 2.0.0
*/

/* ==========================================================================
   PREMIUM CSS FOUNDATION
   ========================================================================== */
:root {
    /* Brand Colors */
    --primary: #092039;
    --primary-light: #0d2d50;
    --primary-dark: #051525;
    --secondary: #C69752;
    --secondary-light: #d4ab6a;
    --secondary-dark: #a67e3f;
    --gold-glow: rgba(198, 151, 82, 0.15);

    /* Premium Neutrals */
    --white: #ffffff;
    --off-white: #fafafa;
    --cream: #f8f6f3;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --dark-surface: #0f1419;

    /* Layout */
    --container-max: 1280px;
    --container-wide: 1440px;
    --header-height: 88px;

    /* Typography */
    --font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Premium Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-gold: 0 4px 20px rgba(198, 151, 82, 0.25);
    --shadow-gold-lg: 0 8px 40px rgba(198, 151, 82, 0.35);
    --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.05);

    /* Glass Effect */
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.12);
    --glass-blur: blur(16px);

    /* Transitions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: 150ms var(--ease-out-expo);
    --transition-base: 300ms var(--ease-out-expo);
    --transition-slow: 500ms var(--ease-out-expo);
    --transition-slower: 700ms var(--ease-out-expo);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-900);
    background: var(--white);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    list-style: none;
}

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

/* ==========================================================================
   GLOBAL TYPOGRAPHY - Consistent Headings
   ========================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--gray-900);
    margin: 0;
}

h1 {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

h4 {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
}

h5 {
    font-size: 1rem;
}

h6 {
    font-size: 0.875rem;
}

/* Dark Section Override */
.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5,
.section-dark h6 {
    color: var(--white);
}

/* ==========================================================================
   LAYOUT
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.25rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

.container-wide {
    max-width: var(--container-wide);
}

/* ==========================================================================
   PREMIUM HEADER
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.25rem 0;
    transition: all var(--transition-base);
}

.site-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
    pointer-events: none;
    transition: opacity var(--transition-base);
}

.site-header.scrolled::before {
    opacity: 0;
}

.site-header.scrolled {
    padding: 0.75rem 0;
    background: rgba(9, 32, 57, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.site-logo {
    position: relative;
    z-index: 10;
}

.site-logo img {
    height: 52px;
    width: auto;
    transition: all var(--transition-base);
}

@media (min-width: 768px) {
    .site-logo img {
        height: 64px;
    }
}

.site-header.scrolled .site-logo img {
    height: 48px;
}

/* Desktop Navigation */
.main-nav {
    display: none;
    align-items: center;
    gap: 2.5rem;
}

@media (min-width: 1024px) {
    .main-nav {
        display: flex;
    }
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-list li a,
.nav-dropdown-btn,
.nav-dropdown-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.625rem 1rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    border-radius: 0.375rem;
    transition: all var(--transition-base);
}

.nav-list li a:hover,
.nav-dropdown-btn:hover,
.nav-dropdown-link:hover {
    color: var(--secondary);
    background: rgba(255, 255, 255, 0.08);
}

/* Header CTA - Premium Gold Button */
.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.875rem 1.75rem;
    /* Match btn-primary styling */
    background: linear-gradient(135deg, #e8c77b 0%, var(--secondary) 50%, var(--secondary-dark) 100%);
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(198, 151, 82, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 0.375rem;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    z-index: 10;
    border: none;
    cursor: pointer;
}

.header-cta::before {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.3) 40%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    left: var(--mouse-x, 50%);
    top: var(--mouse-y, 50%);
}

.header-cta:hover::before {
    opacity: 1;
}

.header-cta:hover {
    box-shadow: 0 8px 25px rgba(198, 151, 82, 0.4), 0 0 40px rgba(198, 151, 82, 0.2);
    color: var(--primary);
}

.header-cta svg {
    transition: transform var(--transition-base);
}

.header-cta:hover svg {
    transform: translateX(2px) rotate(45deg);
}

.header-cta:hover::before {
    opacity: 1;
}

.header-cta svg {
    width: 1rem;
    height: 1rem;
    transition: transform var(--transition-base);
}

.header-cta:hover svg {
    transform: translateX(3px);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border-radius: 0.5rem;
    transition: all var(--transition-base);
}

.mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu-btn svg {
    width: 1.5rem;
    height: 1.5rem;
}

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.mobile-menu-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 400px;
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
    z-index: 100;
    transform: translateX(100%);
    transition: transform var(--transition-slow);
    padding: 5rem 1.5rem 2rem;
    overflow-y: auto;
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 2.75rem;
    height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all var(--transition-base);
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.mobile-menu-close svg {
    width: 1.5rem;
    height: 1.5rem;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
}

.mobile-nav-list>li>a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.25rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all var(--transition-base);
}

.mobile-nav-list>li>a:hover {
    color: var(--secondary);
    padding-left: 0.5rem;
}

/* Mobile Accordion */
.mobile-accordion-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    font-size: 1.25rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
    transition: all var(--transition-base);
}

.mobile-accordion-btn:hover {
    color: var(--secondary);
}

.mobile-accordion-btn .accordion-chevron {
    transition: transform var(--transition-base);
}

.mobile-nav-accordion.open .accordion-chevron {
    transform: rotate(180deg);
}

.mobile-services-list {
    display: none;
    padding: 0.5rem 0 1rem 1rem;
    background: rgba(0, 0, 0, 0.15);
    margin: 0 -1.5rem;
    padding-left: 2.5rem;
    padding-right: 1.5rem;
}

.mobile-nav-accordion.open .mobile-services-list {
    display: block;
}

.mobile-service-category {
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 1.25rem 0 0.5rem;
    margin-top: 0.5rem;
}

.mobile-service-category:first-child {
    margin-top: 0;
    padding-top: 0.75rem;
}

.mobile-services-list li a {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    font-size: 0.9375rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    padding: 0.625rem 0;
    transition: all var(--transition-base);
}

.mobile-services-list li a img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 0.375rem;
    background: var(--white);
    padding: 0.25rem;
}

.mobile-services-list li a:hover {
    color: var(--secondary);
    padding-left: 0.5rem;
}

.mobile-service-all {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-service-all a {
    display: block;
    text-align: center;
    font-weight: 600;
    color: var(--secondary) !important;
    background: rgba(198, 151, 82, 0.1);
    padding: 0.875rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.mobile-service-all a:hover {
    background: var(--secondary);
    color: var(--primary) !important;
}

/* ==========================================================================
   MEGA MENU - Premium Version
   ========================================================================== */
.nav-item-dropdown {
    position: relative;
}

.nav-dropdown-btn .chevron-icon {
    width: 0.875rem;
    height: 0.875rem;
    transition: transform var(--transition-base);
}

.nav-item-dropdown.active .chevron-icon {
    transform: rotate(180deg);
}

.mega-menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 80;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.mega-menu-backdrop.open {
    opacity: 1;
    visibility: visible;
}

.mega-menu {
    position: fixed;
    top: 104px;
    /* Adjusted for larger header height */
    left: 0;
    right: 0;
    z-index: 85;
    background: #061727;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-base);
}

/* Mega menu when header is scrolled/sticky - solid bg */
.mega-menu.scrolled {
    background: #061727;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

/* Header frosted glass when mega menu is open (non-sticky) */
.site-header.mega-open:not(.scrolled) {
    background: #061727;
    backdrop-filter: blur(24px) saturate(200%);
    -webkit-backdrop-filter: blur(24px) saturate(200%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Header when mega open and scrolled */
.site-header.mega-open.scrolled {
    background: #061727;
}

.mega-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Adjust mega menu position when header is scrolled (sticky) */
.site-header.scrolled~.mega-menu,
.site-header.scrolled+.mega-menu {
    top: 73px !important;
    /* Adjusted to match scrolled header height */
}

.mega-menu-inner {
    display: flex;
    min-height: 340px;
}

.mega-menu-tabs {
    display: flex;
    flex-direction: column;
    width: 260px;
    flex-shrink: 0;
    background: rgba(0, 0, 0, 0.15);
    padding: 1rem;
    gap: 0.5rem;
}

.mega-tab {
    display: flex;
    align-items: center;
    width: 100%;
    text-align: left;
    padding: 0.875rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    background: transparent;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all var(--transition-base);
}

.mega-tab:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.mega-tab.active {
    color: var(--secondary);
    font-weight: 600;
    background: rgba(198, 151, 82, 0.15);
    box-shadow: 0 0 0 1px rgba(198, 151, 82, 0.3);
}

.mega-menu-content {
    flex: 1;
    padding: 2rem 2.5rem;
}

.mega-tab-panel {
    display: none;
}

.mega-tab-panel.active {
    display: block;
    animation: fadeSlide 0.4s var(--ease-out-expo);
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateX(12px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.mega-menu-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-base);
}

.mega-menu-item:hover {
    background: rgba(198, 151, 82, 0.1);
    border-color: var(--secondary);
    box-shadow: 0 0 20px rgba(198, 151, 82, 0.15);
}

.mega-item-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 0.5rem;
    padding: 0.5rem;
    transition: all var(--transition-base);
}

.mega-menu-item:hover .mega-item-icon {
    background: rgba(198, 151, 82, 0.2);
}

.mega-item-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: invert(1) brightness(1.2);
}

.mega-menu-item span {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    transition: color var(--transition-base);
}

.mega-menu-item:hover span {
    color: var(--secondary);
}

/* Mega Menu View All Link */
.view-all-item {
    background: rgba(198, 151, 82, 0.05);
    /* Very subtle gold tint */
    border: 1px dashed rgba(198, 151, 82, 0.3);
    /* Distinguish from others */
}

.view-all-item:hover {
    background: rgba(198, 151, 82, 0.15);
    border-style: solid;
}

.view-all-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
}

.view-all-icon svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 1024px) {

    .mega-menu,
    .mega-menu-backdrop {
        display: none;
    }
}

/* ==========================================================================
   PREMIUM HERO SECTION - CENTERED LAYOUT
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--primary);
}

/* Mobile: Content-based height instead of viewport height */
@media (max-width: 768px) {
    .article-hero {
        min-height: 45vh;
        padding: 8rem 0 3rem;
        /* Increased top padding to clear fixed header/marquee */
    }

    .article-back-link {
        margin-bottom: 1.5rem;
    }

    .article-meta {
        gap: 0.75rem;
        margin-bottom: 1.25rem;
    }

    .article-title {
        font-size: 2rem;
    }

    .hero-section {
        min-height: auto;
        padding: 8rem 0 3rem;
        /* Adjusted to prevent overlap */
    }

    /* Smaller label on mobile */
    .hero-label {
        font-size: 0.6875rem;
        padding: 0.375rem 1rem;
        margin-bottom: 1.25rem;
        letter-spacing: 0.08em;
    }

    /* Larger title on mobile - more prominent */
    .hero-title {
        font-size: clamp(2rem, 10vw, 3.5rem);
        margin-bottom: 1rem;
        line-height: 1.1;
    }

    /* Smaller subtitle/description on mobile */
    .hero-description {
        font-size: 0.8125rem;
        margin-bottom: 1.25rem;
        line-height: 1.6;
    }

    /* Reduce hero content padding */
    .hero-content {
        padding: 1.5rem 0;
    }

    /* Much smaller location tag */
    .hero-location {
        margin-bottom: 1rem;
        gap: 0.5rem;
    }

    .hero-location span {
        font-size: 0.625rem !important;
        letter-spacing: 0.06em;
    }

    .location-dot {
        width: 6px;
        height: 6px;
    }

    /* MUCH LARGER title on mobile */
    .hero-title .title-large {
        font-size: clamp(2.25rem, 11vw, 4rem) !important;
        line-height: 1.05;
        font-weight: 800;
    }

    /* Smaller tagline box */
    .hero-tagline-box {
        margin: 1.25rem 0;
        padding: 0.875rem 1rem;
    }

    .hero-tagline-box p {
        font-size: 0.75rem !important;
        font-weight: 500;
    }

    /* Reduce hero image height on mobile */
    .hero-image-container {
        max-height: 300px;
        overflow: hidden;
    }

    .hero-showcase-img {
        height: 300px;
        object-fit: cover;
    }

    /* Tighter CTA spacing */
    .hero-cta-group {
        margin-top: 1.5rem;
    }

    /* Clear excessive 8rem/10rem paddings on mobile heroes and sections */
    .page-hero,
    .about-hero-premium,
    .services-hero-premium,
    .portfolio-hero,
    .pricing-hero,
    .advice-hero,
    .hero-split,
    .hero-content {
        padding-top: 5rem !important;
        padding-bottom: 3rem !important;
    }

    .service-intro-premium,
    .loft-types-section,
    .renovation-process-section {
        padding: 4rem 0 !important;
    }
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(9, 32, 57, 0.92) 0%,
            rgba(9, 32, 57, 0.85) 50%,
            rgba(9, 32, 57, 0.92) 100%);
}

/* Decorative elements */
.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(225deg,
            rgba(198, 151, 82, 0.08) 0%,
            transparent 60%);
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 10rem 0 6rem;
    width: 100%;
}

/* Centered Hero Layout */
.hero-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Hero Rating - Premium Badge */
.hero-rating {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0.625rem 1.25rem;
    border-radius: 3rem;
    margin-bottom: 2rem;
}

.hero-stars {
    display: flex;
    gap: 0.125rem;
}

.hero-stars svg {
    width: 1.125rem;
    height: 1.125rem;
    fill: var(--secondary);
    color: var(--secondary);
    filter: drop-shadow(0 0 4px rgba(198, 151, 82, 0.4));
}

.hero-rating-text {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--secondary);
    letter-spacing: 0.02em;
}

/* Hero Title - Impactful Typography */
.hero-title {
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    font-weight: 700;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-title span {
    display: block;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 0.125rem;
    filter: drop-shadow(0 2px 8px rgba(198, 151, 82, 0.3));
}

/* Hero Description */
.hero-description {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 1.5rem;
    max-width: 600px;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1rem;
    }
}

/* Hero Features - Centered List */
.hero-features {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.875rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .hero-features {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.hero-feature svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--secondary);
    flex-shrink: 0;
}

.hero-feature span {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
}

/* Hero Buttons - Centered */
.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 4rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        gap: 1.25rem;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.375rem;
    transition: all var(--transition-base);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
}

.btn svg {
    width: 1.125rem;
    height: 1.125rem;
    transition: transform var(--transition-base);
}

.btn:hover svg {
    transform: translateX(4px);
}

/* Primary Button - Gold gradient with glow spot */
.btn-primary {
    background: linear-gradient(135deg, #e8c77b 0%, var(--secondary) 50%, var(--secondary-dark) 100%);
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(198, 151, 82, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Mouse-following glow spot for primary button */
.btn-primary::before {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.3) 40%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    left: var(--mouse-x, 50%);
    top: var(--mouse-y, 50%);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(198, 151, 82, 0.4), 0 0 40px rgba(198, 151, 82, 0.2);
}

/* Outline Button - Clean, no glow effects */
.btn-outline {
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

/* Secondary Outline Button - Clean, no glow effects */
.btn-secondary-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn svg {
    width: 1.125rem;
    height: 1.125rem;
    transition: transform var(--transition-base);
    position: relative;
    z-index: 2;
}

.btn span {
    position: relative;
    z-index: 2;
}

.btn:hover svg {
    transform: translateX(4px);
}

/* Hero Stats - Centered 4-column Row */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 2rem;
    width: 100%;
    max-width: 800px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.25rem;
}

@media (min-width: 640px) {
    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
        padding: 2rem 2.5rem;
    }
}

.stat-item {
    text-align: center;
    padding: 0.5rem;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
    line-height: 1.1;
}

@media (min-width: 640px) {
    .stat-value {
        font-size: 2.5rem;
    }
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-mouse {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 2rem;
    display: flex;
    justify-content: center;
    padding-top: 0.5rem;
}

.scroll-dot {
    width: 0.375rem;
    height: 0.375rem;
    background: var(--secondary);
    border-radius: 50%;
    animation: scrollPulse 2s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(198, 151, 82, 0.5);
}

@keyframes scrollPulse {

    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(14px);
        opacity: 0.2;
    }
}

/* ==========================================================================
   PREMIUM SECTIONS
   ========================================================================== */
.section {
    position: relative;
    padding: 7rem 0;
    overflow: hidden;
}

/* Mobile: Reduce excessive padding */
@media (max-width: 767px) {
    .section {
        padding: 3.5rem 0;
    }
}

@media (min-width: 768px) {
    .section {
        padding: 8rem 0;
    }
}

.section-light {
    background: var(--cream);
}

.section-dark {
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 4.5rem;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}

.section-label::before,
.section-label::after {
    content: '';
    width: 2rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary), transparent);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.25rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.section-dark .section-title {
    color: var(--white);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-500);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.65);
}

/* ==========================================================================
   PROCESS SECTION - Premium Cards
   ========================================================================== */
.process-header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 4rem;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .process-header {
        flex-direction: row;
        align-items: flex-end;
    }
}

.process-header-left {
    max-width: 480px;
    text-align: center;
}

@media (min-width: 768px) {
    .process-header-left {
        text-align: left;
    }
}

.process-header-left .section-label {
    display: block;
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .process-header-left .section-label {
        text-align: left;
    }
}

.process-header-left .section-label::before,
.process-header-left .section-label::after {
    display: none;
}

.process-header-left .section-title {
    margin-bottom: 0;
}

.process-header-right {
    max-width: 400px;
    color: var(--gray-500);
    font-size: 1.0625rem;
    line-height: 1.7;
}

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

@media (min-width: 768px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Process Card - Premium Redesign */
.process-card {
    position: relative;
    padding: 2.5rem 2rem;
    border-radius: 1.25rem;
    background: var(--white);
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-sm);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.5;
    /* Initial dimmed state */
    transform: scale(0.98);
    overflow: hidden;
    z-index: 1;
}

/* Force override for scroll reveal */
.process-card.reveal.active {
    opacity: 0.4;
    transform: scale(0.98);
    filter: grayscale(100%);
    /* Make inactive steps feel truly inactive */
}

/* Active State - The WOW Factor */
.process-card.reveal.active.current-step,
.process-card:hover {
    opacity: 1;
    transform: scale(1);
    border-color: var(--secondary);
    box-shadow: 0 20px 40px -10px rgba(198, 151, 82, 0.15);
    z-index: 10;
    filter: grayscale(0%);
    background: linear-gradient(135deg, #fff 0%, #fffbf2 100%);
    /* Subtle gold tint */
}

/* Sequence Complete - Gold Active State (matches hover) */
.process-card.reveal.active.sequence-complete {
    opacity: 1;
    transform: scale(1);
    filter: grayscale(0%);
    border-color: var(--secondary);
    box-shadow: 0 20px 40px -10px rgba(198, 151, 82, 0.15);
    z-index: 1;
    background: linear-gradient(135deg, #fff 0%, #fffbf2 100%);
}

.process-card.reveal.active.sequence-complete .process-number {
    color: rgba(198, 151, 82, 0.1);
    transform: translateX(-10px) translateY(10px) scale(1.1);
}


.process-card.reveal.active.sequence-complete h3 {
    color: var(--secondary-dark);
}

/* Sequence Complete - Maintains WOW Hover Effect */
.process-card.reveal.active.sequence-complete:hover {
    box-shadow: 0 20px 40px -10px rgba(198, 151, 82, 0.15);
    border-color: var(--secondary);
    background: linear-gradient(135deg, #fff 0%, #fffbf2 100%);
    z-index: 10;
}

.process-number {
    position: absolute;
    top: -1rem;
    right: -0.5rem;
    font-size: 6rem;
    font-weight: 800;
    line-height: 1;
    color: rgba(0, 0, 0, 0.03);
    /* Watermark style */
    z-index: 0;
    transition: all 0.5s ease;
    pointer-events: none;
    font-family: var(--font-primary);
    text-shadow: none;
}

.process-card.reveal.active.current-step .process-number,
.process-card:hover .process-number {
    color: rgba(198, 151, 82, 0.1);
    /* Gold watermark active */
    transform: translateX(-10px) translateY(10px) scale(1.1);
}

.process-card h3 {
    position: relative;
    z-index: 1;
    margin-top: 1rem;
    transition: color 0.3s ease;
}

.process-card.reveal.active.current-step h3,
.process-card:hover h3 {
    color: var(--secondary-dark);
    /* Highlight title */
}

.process-card p {
    position: relative;
    z-index: 1;
}

.process-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.875rem;
    line-height: 1.3;
}

.process-card p {
    font-size: 0.9375rem;
    color: var(--gray-500);
    line-height: 1.65;
}

/* ==========================================================================
   SERVICES GRID - Premium Cards
   ========================================================================== */


/* ==========================================================================
   SERVICES GRID - Premium Cards
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    position: relative;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-slow);
    aspect-ratio: 4/3;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.service-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100% !important;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    transition: transform var(--transition-slower);
}

.service-card:hover .service-card-image img {
    transform: scale(1.08);
}

.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(to bottom,
            rgba(9, 32, 57, 0.2) 0%,
            rgba(9, 32, 57, 0.5) 30%,
            rgba(9, 32, 57, 0.85) 60%,
            rgba(9, 32, 57, 0.98) 100%) !important;
    pointer-events: none;
    transition: background 0.4s ease;
}

.service-card:hover .service-card-overlay {
    background: linear-gradient(to bottom,
            rgba(9, 32, 57, 0.2) 0%,
            rgba(9, 32, 57, 0.5) 30%,
            rgba(9, 32, 57, 0.85) 60%,
            rgba(9, 32, 57, 0.98) 100%) !important;
}

.service-card-content {
    position: absolute;
    inset: 0;
    z-index: 3;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--white);
}

.service-card-icon {
    width: 3rem;
    height: 3rem;
    color: var(--secondary);
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.625rem;
    line-height: 1.25;
    color: #ffffff !important;
}

.service-card p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    opacity: 0;
    max-height: 0;
    margin-bottom: 0;
    overflow: hidden;
    transform: translateY(10px);
    transition: all var(--transition-base);
}

.service-card:hover p {
    opacity: 1;
    max-height: 80px;
    margin-bottom: 1.25rem;
    transform: translateY(0);
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary);
    font-size: 0.9375rem;
    font-weight: 600;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transform: translateY(10px);
    transition: all var(--transition-base);
}

.service-card:hover .service-card-link {
    gap: 0.875rem;
    opacity: 1;
    max-height: 30px;
    transform: translateY(0);
}

.service-card-link svg {
    width: 1rem;
    height: 1rem;
    transition: transform 0.3s ease;
}

.service-card-link:hover svg {
    transform: translateX(2px);
}

/* ==========================================================================
   D&B ADVANTAGE - Premium Cards
   ========================================================================== */
.advantage-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .advantage-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.advantage-card {
    position: relative;
    background: var(--white);
    border-radius: 1.25rem;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--secondary), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.advantage-card:hover::before {
    opacity: 1;
}

.advantage-icon {
    width: 4.5rem;
    height: 4.5rem;
    margin: 0 auto 1.75rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px -8px rgba(9, 32, 57, 0.4);
    transition: all var(--transition-base);
}

.advantage-icon span {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--secondary);
}

.advantage-card:hover .advantage-icon {
    transform: scale(1.08);
    box-shadow: 0 12px 32px -8px rgba(9, 32, 57, 0.5);
}

.advantage-card h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.advantage-card p {
    font-size: 0.9375rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.advantage-badge {
    display: inline-block;
    background: var(--gold-glow);
    color: var(--secondary-dark);
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.75rem 1.25rem;
    border-radius: 2rem;
    border: 1px solid rgba(198, 151, 82, 0.2);
}

/* ==========================================================================
   DIFFERENCE SECTION
   ========================================================================== */
.difference-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .difference-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

.difference-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid transparent;
    transition: all var(--transition-base);
}

.difference-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
}

.difference-icon {
    width: 3.5rem;
    height: 3.5rem;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    border-radius: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold);
}

.difference-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--white);
}

.difference-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.625rem;
}

.difference-content p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.65;
}

/* ==========================================================================
   ADVICE SECTION
   ========================================================================== */
.advice-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    position: relative;
}

.advice-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(225deg, rgba(198, 151, 82, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.advice-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .advice-inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.advice-content {
    max-width: 580px;
}

.advice-content .section-label {
    display: inline-flex;
    gap: 0.625rem;
    margin-bottom: 1.25rem;
}

.advice-content .section-label::before,
.advice-content .section-label::after {
    display: none;
}

.advice-content h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.advice-content p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */
.cta-section {
    position: relative;
    text-align: center;
    background: linear-gradient(180deg, var(--primary-dark) 0%, var(--dark-surface) 100%);
}

/* Grid pattern overlay */
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image:
        linear-gradient(rgba(255, 255, 255, 1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 1) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

/* Gold glowing border with shadow effect */
.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary), transparent);
    box-shadow: 0 0 15px rgba(198, 151, 82, 0.4);
    opacity: 0.6;
    border-radius: 4px;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Hide static glow when hovering - cursor glow takes over */
.cta-section:hover::after {
    opacity: 0;
    transform: translateX(-50%) scale(0.5);
}

/* Additional glow overlay */
.cta-section .cta-content::before {
    content: '';
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 200px;
    background: radial-gradient(ellipse at center, rgba(198, 151, 82, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
    transition: opacity 0.5s ease;
}

/* Hide static radial glow on hover too */
.cta-section:hover .cta-content::before {
    opacity: 0;
}

.cta-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.25rem;
    line-height: 1.15;
}

.cta-content p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
        gap: 1.25rem;
    }
}

.btn-secondary-outline {
    background: transparent;
    color: var(--secondary);
    border: 1px solid rgba(198, 151, 82, 0.4);
}

.btn-secondary-outline:hover {
    background: rgba(198, 151, 82, 0.1);
    border-color: var(--secondary);
}

/* ==========================================================================
   PREMIUM FOOTER
   ========================================================================== */
.site-footer {
    background: var(--dark-surface);
    color: var(--white);
    position: relative;
}

/* Footer CTA Strip */
.footer-cta-strip {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 3rem 0;
    border-bottom: 1px solid rgba(198, 151, 82, 0.2);
}

.footer-cta-inner {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: center;
}

@media (min-width: 1024px) {
    .footer-cta-inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-cta-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.footer-cta-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.footer-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

@media (min-width: 1024px) {
    .footer-cta-actions {
        justify-content: flex-end;
    }
}

.footer-phone {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    transition: all var(--transition-base);
}

.footer-phone:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.footer-phone svg {
    color: var(--secondary);
}

/* Footer Main */
.footer-main {
    padding: 4rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    }
}

/* Footer Brand */
.footer-brand {
    max-width: 340px;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 52px;
    width: auto;
}

.footer-brand>p {
    font-size: 0.9375rem;
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Trust Badges */
.footer-trust-badges {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.7);
}

.trust-item svg {
    color: var(--secondary);
    flex-shrink: 0;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.5rem;
    color: var(--gray-400);
    transition: all var(--transition-base);
}

.social-link:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--primary);
}

.social-link svg {
    width: 1.125rem;
    height: 1.125rem;
}

/* Footer Links */
.footer-links h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1rem;
}

.footer-links h4::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.125rem;
    width: 3px;
    height: calc(100% - 0.25rem);
    background: var(--secondary);
    border-radius: 2px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    font-size: 0.9375rem;
    color: var(--gray-400);
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
}

.footer-links a:hover {
    color: var(--secondary);
}

/* Footer Contact */
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 2.5rem;
    height: 2.5rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-glow);
    border-radius: 0.5rem;
    color: var(--secondary);
    transition: all var(--transition-base);
}

.contact-item:hover .contact-icon {
    background: var(--secondary);
    color: var(--primary);
}

.contact-icon svg {
    width: 1.125rem;
    height: 1.125rem;
}

.contact-item a,
.contact-item address,
.contact-item .hours {
    font-size: 0.9375rem;
    color: var(--gray-400);
    font-style: normal;
    line-height: 1.6;
    transition: color var(--transition-base);
}

.contact-item a:hover {
    color: var(--white);
}

.contact-item a.phone {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--white);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
}

.footer-bottom-inner {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    align-items: center;
}

@media (min-width: 768px) {
    .footer-bottom-inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-bottom .copyright {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.footer-legal {
    display: flex;
    gap: 0.75rem;
    font-size: 0.875rem;
}

.footer-legal a {
    color: var(--gray-500);
    transition: color var(--transition-base);
}

.footer-legal a:hover {
    color: var(--secondary);
}

.footer-legal span {
    color: var(--gray-600);
}

.footer-bottom .company-info {
    font-size: 0.8125rem;
    color: var(--gray-600);
}

/* Mobile Collapsible Footer Sections */
.footer-title-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
    margin-bottom: 1rem;
    transition: all var(--transition-base);
}

.footer-title-toggle .chevron-icon {
    transition: transform 0.3s ease;
}

.footer-collapsible.collapsed .chevron-icon {
    transform: rotate(-90deg);
}

.footer-collapsible-content {
    max-height: 1000px;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    opacity: 1;
}

.footer-collapsible.collapsed .footer-collapsible-content {
    max-height: 0;
    opacity: 0;
}

/* Desktop - Show all, remove collapsible behavior */
@media (min-width: 768px) {
    .footer-title-toggle {
        cursor: default;
        pointer-events: none;
    }

    .footer-title-toggle .chevron-icon {
        display: none;
    }

    .footer-collapsible-content {
        max-height: none !important;
        opacity: 1 !important;
    }
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity 0.8s var(--ease-out-expo),
        transform 0.8s var(--ease-out-expo);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

/* ==========================================================================
   COMPREHENSIVE RESPONSIVE POLISH
   Perfect display at every breakpoint
   ========================================================================== */

/* -------------------------------------------------------------------------
   EXTRA SMALL DEVICES (< 375px) - Very small phones
   ------------------------------------------------------------------------- */
@media (max-width: 374px) {
    .container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-rating {
        padding: 0.5rem 1rem;
        gap: 0.5rem;
    }

    .hero-rating-text {
        font-size: 0.75rem;
    }

    .hero-stars svg {
        width: 1rem;
        height: 1rem;
    }

    .hero-feature span {
        font-size: 0.875rem;
    }

    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }

    .hero-stats {
        padding: 1.5rem;
        gap: 1rem;
    }

    .stat-value {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.6875rem;
    }

    .section {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .process-card {
        padding: 1.75rem;
    }

    .process-number {
        width: 3rem;
        height: 3rem;
        font-size: 1.125rem;
    }

    .process-card h3 {
        font-size: 1.125rem;
    }

    .advantage-card {
        padding: 2rem 1.5rem;
    }

    .advantage-icon {
        width: 4rem;
        height: 4rem;
    }

    .advantage-card h3 {
        font-size: 1.25rem;
    }

    .footer-grid {
        gap: 2rem;
    }
}

/* -------------------------------------------------------------------------
   SMALL DEVICES (375px - 480px) - Standard phones
   ------------------------------------------------------------------------- */
@media (min-width: 375px) and (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .service-card-content {
        padding: 1.5rem;
    }

    .service-card h3 {
        font-size: 1.375rem;
    }
}

/* -------------------------------------------------------------------------
   MEDIUM DEVICES (481px - 640px) - Large phones / Small tablets
   ------------------------------------------------------------------------- */
@media (min-width: 481px) and (max-width: 640px) {
    .section {
        padding: 5rem 0;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-description {
        font-size: 1.125rem;
    }

    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .advantage-grid {
        grid-template-columns: 1fr;
    }
}

/* -------------------------------------------------------------------------
   TABLET PORTRAIT (641px - 768px)
   ------------------------------------------------------------------------- */
@media (min-width: 641px) and (max-width: 768px) {
    .section {
        padding: 5.5rem 0;
    }

    .hero-content {
        padding: 9rem 0 5rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-features {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.25rem;
    }

    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
        max-width: 700px;
    }

    .stat-value {
        font-size: 2rem;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

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

    .service-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }

    .advantage-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .advantage-card {
        padding: 2rem 1.5rem;
    }

    .advantage-card p {
        font-size: 0.875rem;
    }

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

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

/* -------------------------------------------------------------------------
   TABLET LANDSCAPE (769px - 1024px)
   ------------------------------------------------------------------------- */
@media (min-width: 769px) and (max-width: 1024px) {
    .section {
        padding: 6rem 0;
    }

    .hero-content {
        padding: 10rem 0 6rem;
    }

    .hero-title {
        font-size: 4rem;
    }

    .hero-stats {
        max-width: 750px;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    @media (min-width: 900px) {
        .process-grid {
            grid-template-columns: repeat(4, 1fr);
        }
    }

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

    .service-card:last-child {
        grid-column: auto;
        max-width: none;
        margin: 0;
    }

    .advantage-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .difference-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
    }

    /* Show CTA in mobile menu at tablet */
    .mobile-menu {
        max-width: 450px;
    }
}

/* -------------------------------------------------------------------------
   SMALL DESKTOP (1025px - 1280px)
   ------------------------------------------------------------------------- */
@media (min-width: 1025px) and (max-width: 1280px) {
    .hero-title {
        font-size: 4.5rem;
    }

    .hero-stats {
        max-width: 800px;
    }

    .stat-value {
        font-size: 2.25rem;
    }

    .process-card {
        padding: 2rem;
    }

    .mega-menu-tabs {
        width: 260px;
    }

    .mega-menu-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 0.875rem;
    }
}

/* -------------------------------------------------------------------------
   LARGE DESKTOP (1281px - 1440px)
   ------------------------------------------------------------------------- */
@media (min-width: 1281px) and (max-width: 1440px) {
    .container {
        max-width: 1200px;
    }

    .hero-centered {
        max-width: 960px;
    }

    .hero-title {
        font-size: 5rem;
    }
}

/* -------------------------------------------------------------------------
   EXTRA LARGE DESKTOP (> 1440px)
   ------------------------------------------------------------------------- */
@media (min-width: 1441px) {
    .container {
        max-width: 1320px;
    }

    .hero-centered {
        max-width: 1000px;
    }

    .hero-title {
        font-size: 5.5rem;
    }

    .hero-description {
        font-size: 1.375rem;
    }

    .section {
        padding: 9rem 0;
    }

    .section-title {
        font-size: 3.5rem;
    }

    .process-card {
        padding: 2.5rem;
    }

    .service-card-content {
        padding: 2.5rem;
    }

    .advantage-card {
        padding: 3rem 2.5rem;
    }
}

/* -------------------------------------------------------------------------
   HEIGHT-BASED ADJUSTMENTS (Short screens)
   ------------------------------------------------------------------------- */
@media (max-height: 700px) {
    .hero-section {
        min-height: auto;
        padding: 8rem 0 4rem;
    }

    .hero-content {
        padding: 8rem 0 4rem;
    }

    .scroll-indicator {
        display: none;
    }
}

/* -------------------------------------------------------------------------
   TOUCH DEVICE OPTIMIZATIONS
   ------------------------------------------------------------------------- */
@media (hover: none) {
    .service-card p {
        opacity: 1;
        transform: translateY(0);
    }

    .process-card:hover {
        transform: none;
    }

    .advantage-card:hover {
        transform: none;
    }

    .service-card:hover {
        transform: none;
    }

    .service-card:hover .service-card-image img {
        transform: none;
    }
}

/* -------------------------------------------------------------------------
   REDUCED MOTION PREFERENCES
   ------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    .scroll-dot {
        animation: none;
    }
}

/* -------------------------------------------------------------------------
   PRINT STYLES
   ------------------------------------------------------------------------- */
@media print {

    .site-header,
    .mobile-menu,
    .mobile-menu-overlay,
    .mega-menu,
    .mega-menu-backdrop,
    .scroll-indicator {
        display: none !important;
    }

    .hero-section {
        min-height: auto;
        background: var(--primary) !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    .section {
        padding: 2rem 0;
    }
}

/* -------------------------------------------------------------------------
   FINE-TUNING UTILITIES
   ------------------------------------------------------------------------- */
.text-balance {
    text-wrap: balance;
}

.text-pretty {
    text-wrap: pretty;
}

/* Smooth focus states */
*:focus-visible {
    outline: 2px solid var(--secondary);
    outline-offset: 2px;
}

/* Scrollbar styling for webkit browsers */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--gray-400);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gray-500);
}

/* Firefox scrollbar */
html {
    scrollbar-width: thin;
    scrollbar-color: var(--gray-400) var(--gray-100);
}

/* ==========================================================================
   CUSTOM 404 PAGE
   ========================================================================== */
.error-404-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.error-404-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(225deg, rgba(198, 151, 82, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.error-content {
    text-align: center;
    position: relative;
    z-index: 10;
}

.error-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.error-4 {
    font-size: clamp(6rem, 15vw, 12rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    filter: drop-shadow(0 4px 20px rgba(198, 151, 82, 0.3));
}

.error-0 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-0 svg {
    width: clamp(5rem, 12vw, 10rem);
    height: clamp(5rem, 12vw, 10rem);
    color: var(--secondary);
    filter: drop-shadow(0 4px 20px rgba(198, 151, 82, 0.3));
    animation: houseFloat 3s ease-in-out infinite;
}

@keyframes houseFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.error-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.error-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.error-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
}

@media (min-width: 480px) {
    .error-actions {
        flex-direction: row;
        gap: 1.25rem;
    }
}

.error-links {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.error-links p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.error-links nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.error-links a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    padding: 0.5rem;
    transition: all var(--transition-base);
}

.error-links a:hover {
    color: var(--secondary);
}

/* ==========================================================================
   PREMIUM HERO REDESIGN - CREATIVE ELEMENTS
   ========================================================================== */

/* Floating Elements Container */
.hero-floating-elements {
    position: absolute;
    inset: 0;
    z-index: 5;
    pointer-events: none;
    overflow: hidden;
}

/* Floating Shapes - Gradient Orbs */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
}

.floating-shape.shape-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(198, 151, 82, 0.4) 0%, transparent 70%);
    top: -10%;
    right: -5%;
    animation: floatOrb1 20s ease-in-out infinite;
}

.floating-shape.shape-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(198, 151, 82, 0.3) 0%, transparent 70%);
    bottom: 20%;
    left: -10%;
    animation: floatOrb2 25s ease-in-out infinite;
}

.floating-shape.shape-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(198, 151, 82, 0.35) 0%, transparent 70%);
    top: 50%;
    right: 15%;
    animation: floatOrb3 18s ease-in-out infinite;
}

@keyframes floatOrb1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(-30px, 50px) scale(1.1);
    }

    66% {
        transform: translate(20px, -30px) scale(0.9);
    }
}

@keyframes floatOrb2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(40px, -40px) scale(1.15);
    }
}

@keyframes floatOrb3 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-20px, 30px);
    }
}

/* Floating Icons - Architectural */
.floating-icon {
    position: absolute;
    color: rgba(198, 151, 82, 0.15);
    opacity: 0.6;
}

.floating-icon svg {
    width: 100%;
    height: 100%;
}

.floating-icon.icon-1 {
    width: 80px;
    height: 80px;
    top: 15%;
    left: 8%;
    animation: floatIcon 8s ease-in-out infinite;
}

.floating-icon.icon-2 {
    width: 60px;
    height: 60px;
    top: 25%;
    right: 12%;
    animation: floatIcon 10s ease-in-out infinite reverse;
}

.floating-icon.icon-3 {
    width: 70px;
    height: 70px;
    bottom: 20%;
    right: 8%;
    animation: floatIcon 12s ease-in-out infinite;
}

@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.4;
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
        opacity: 0.7;
    }
}

/* Hero Badge - Animated Award */
.hero-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(198, 151, 82, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(198, 151, 82, 0.25);
    padding: 0.75rem 1.5rem;
    border-radius: 3rem;
    margin-bottom: 2rem;
    overflow: hidden;
}

.badge-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(198, 151, 82, 0.2), transparent);
    animation: badgeGlow 3s ease-in-out infinite;
}

@keyframes badgeGlow {

    0%,
    100% {
        transform: translateX(-100%);
    }

    50% {
        transform: translateX(100%);
    }
}

.badge-icon {
    font-size: 1.25rem;
    color: var(--secondary);
    animation: starPulse 2s ease-in-out infinite;
}

@keyframes starPulse {

    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 4px rgba(198, 151, 82, 0.5));
    }

    50% {
        transform: scale(1.15);
        filter: drop-shadow(0 0 12px rgba(198, 151, 82, 0.8));
    }
}

.badge-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--secondary);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

/* Hero Title - Creative Typography */
.hero-title .title-line {
    display: block;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.25rem;
    letter-spacing: -0.01em;
}

.hero-title .title-highlight {
    display: block;
    position: relative;
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--secondary) 0%, #e8c78a 50%, var(--secondary) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
    filter: drop-shadow(0 4px 20px rgba(198, 151, 82, 0.3));
}

@keyframes shimmer {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

.title-underline {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 12px;
    color: var(--secondary);
    opacity: 0.6;
}

.title-underline path {
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation: drawLine 1.5s ease-out 0.5s forwards;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

/* Hero Tagline */
.hero-tagline {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
    max-width: 700px;
}

.hero-tagline strong {
    color: var(--secondary);
    font-weight: 600;
}

/* Trust Indicators */
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    padding: 1.25rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    backdrop-filter: blur(8px);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.trust-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-icon svg {
    width: 100%;
    height: 100%;
    color: var(--secondary);
}

.trust-item span {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    white-space: nowrap;
}

.trust-divider {
    width: 1px;
    height: 24px;
    background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 768px) {
    .trust-divider {
        display: none;
    }

    .hero-trust {
        gap: 0.75rem;
        padding: 1rem;
    }
}

/* Hero CTA Buttons */
.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

@media (min-width: 480px) {
    .hero-cta {
        flex-direction: row;
        gap: 1.25rem;
    }
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.125rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    border-radius: 0.375rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px -10px rgba(198, 151, 82, 0.5);
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--secondary-light) 0%, var(--secondary) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px -10px rgba(198, 151, 82, 0.6);
}

.btn-hero-primary:hover::before {
    opacity: 1;
}

.btn-hero-primary span,
.btn-hero-primary svg {
    position: relative;
    z-index: 1;
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 1.125rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 3rem;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.btn-hero-secondary:hover {
    border-color: var(--secondary);
    background: rgba(198, 151, 82, 0.1);
    color: var(--secondary);
}

/* Hero Stats Bar */
.hero-stats-bar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    width: 100%;
    max-width: 800px;
}

@media (min-width: 768px) {
    .hero-stats-bar {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.25rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(198, 151, 82, 0.1);
    border-color: rgba(198, 151, 82, 0.3);
    transform: translateY(-4px);
}

.stat-number {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 0.375rem;
}

.stat-number sup {
    font-size: 0.5em;
    font-weight: 600;
    opacity: 0.8;
    margin-left: 0.125em;
}

.stat-text {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
}

/* Scroll Indicator - Redesigned */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    z-index: 20;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--secondary), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scaleY(0.8);
    }

    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

.scroll-text {
    font-size: 0.6875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* ==========================================================================
   CREATIVE PROFESSIONAL HERO - NEW DESIGN
   ========================================================================== */

/* Grid Pattern */
.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(198, 151, 82, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(198, 151, 82, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 2;
    pointer-events: none;
}

/* Corner Frames */
.hero-frame {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 2px solid rgba(198, 151, 82, 0.2);
    z-index: 3;
    pointer-events: none;
}

.hero-frame.frame-tl {
    top: 3rem;
    left: 3rem;
    border-right: none;
    border-bottom: none;
    animation: framePulse 4s ease-in-out infinite;
}

.hero-frame.frame-br {
    bottom: 6rem;
    right: 3rem;
    border-left: none;
    border-top: none;
    animation: framePulse 4s ease-in-out infinite 2s;
}

@keyframes framePulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.02);
    }
}

/* Hero Layout - Two Column */
.hero-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-layout {
        grid-template-columns: 1.2fr 1fr;
        gap: 4rem;
    }
}

/* Left Content */
.hero-main {
    text-align: center;
}

@media (min-width: 1024px) {
    .hero-main {
        text-align: left;
    }
}

/* Location Tag */
.hero-location {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.location-dot {
    width: 10px;
    height: 10px;
    background: var(--secondary);
    border-radius: 50%;
    position: relative;
}

.location-dot::before {
    content: '';
    position: absolute;
    inset: -4px;
    border: 2px solid var(--secondary);
    border-radius: 50%;
    opacity: 0.4;
    animation: locationPing 2s ease-out infinite;
}

@keyframes locationPing {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.hero-location span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Split Title */
.hero-title .title-small {
    display: block;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}

.hero-title .title-large {
    display: block;
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 800;
    line-height: 1.05;
    background: linear-gradient(135deg, #fff 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Tagline Box */
.hero-tagline-box {
    margin: 2rem 0;
    padding: 1.25rem 1.5rem;
    background: rgba(198, 151, 82, 0.08);
    border-left: 3px solid var(--secondary);
    border-radius: 0 0.5rem 0.5rem 0;
}

@media (min-width: 1024px) {
    .hero-tagline-box {
        display: inline-block;
    }
}

.hero-tagline-box p {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.05em;
    margin: 0;
}

.hero-tagline-box .tagline-sub {
    font-size: 0.9375rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
}

/* CTA Group */
.hero-cta-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

@media (min-width: 480px) {
    .hero-cta-group {
        flex-direction: row;
        gap: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .hero-cta-group {
        justify-content: flex-start;
    }
}

.btn-hero-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary);
    background: transparent;
    border: 2px solid rgba(198, 151, 82, 0.4);
    border-radius: 0.375rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-hero-phone:hover {
    background: rgba(198, 151, 82, 0.1);
    border-color: var(--secondary);
}

/* Right Side Cards */
.hero-cards {
    display: none;
}

@media (min-width: 1024px) {
    .hero-cards {
        display: block;
    }
}

.hero-stat-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-glass-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    transition: all 0.4s ease;
}

.stat-glass-card:hover {
    background: rgba(198, 151, 82, 0.1);
    border-color: rgba(198, 151, 82, 0.3);
}

.stat-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    border-radius: 0.75rem;
    flex-shrink: 0;
}

.stat-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
}

.stat-label {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Portfolio Preview Link */
.portfolio-preview {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(198, 151, 82, 0.15) 0%, rgba(198, 151, 82, 0.05) 100%);
    border: 1px solid rgba(198, 151, 82, 0.25);
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.portfolio-preview:hover {
    background: rgba(198, 151, 82, 0.2);
    transform: translateY(-2px);
}

.preview-text {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.preview-arrow {
    font-size: 1.5rem;
    color: var(--secondary);
    transition: transform 0.3s ease;
}

.portfolio-preview:hover .preview-arrow {
    transform: translateX(5px);
}

/* Bottom Bar */
.hero-bottom-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(9, 32, 57, 0.9);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1rem 0;
    z-index: 20;
}

.bottom-bar-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem 2.5rem;
}

.hero-bottom-bar .trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-bottom-bar .trust-badge svg {
    color: var(--secondary);
    flex-shrink: 0;
}

.hero-bottom-bar .trust-badge span {
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    white-space: nowrap;
}

/* Adjust hero content padding for bottom bar */
.hero-content {
    padding-bottom: 6rem;
}

@media (max-width: 768px) {
    .hero-frame {
        display: none;
    }

    .hero-content {
        padding-bottom: 5rem;
    }

    .bottom-bar-content {
        gap: 1rem;
    }

    .hero-bottom-bar .trust-badge span {
        font-size: 0.75rem;
    }
}

/* ==========================================================================
   CTA SECTION - MOUSE TRACKING GLOW EFFECT
   ========================================================================== */
.cta-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(198, 151, 82, 0.25) 0%, rgba(198, 151, 82, 0.1) 30%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    filter: blur(20px);
}

.cta-section:hover .cta-glow {
    opacity: 1;
}

/* Ensure content is above the glow */
.cta-section .container {
    position: relative;
    z-index: 10;
}

/* ==========================================================================
   HERO SPLIT LAYOUT - IMAGE ON RIGHT WITH FLOATING STATS
   ========================================================================== */
.hero-split {
    background: var(--primary);
}

.hero-split .hero-bg {
    display: none;
}

.hero-split-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-split-layout {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

/* Hero Image Wrapper */
/* Hero Image Wrapper */
.hero-image-wrapper {
    display: block;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .hero-image-wrapper {
        margin-top: 0;
    }
}

.hero-image-container {
    position: relative;
    border-radius: 1.5rem;
    overflow: visible;
}

.hero-showcase-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 1.5rem;
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.4);
}

/* Floating Stats on Image */
.floating-stat {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(9, 32, 57, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(198, 151, 82, 0.3);
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    min-width: 80px;
    animation: floatBadge 4s ease-in-out infinite;
}

.floating-stat.stat-1 {
    top: 10%;
    right: -20px;
    animation-delay: 0s;
}

.floating-stat.stat-2 {
    bottom: 30%;
    left: -30px;
    animation-delay: 1s;
}

.floating-stat.stat-3 {
    bottom: 5%;
    right: 10%;
    animation-delay: 2s;
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.floating-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
}

.floating-label {
    font-size: 0.6875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
}

/* Adjust hero-split specific styles */
.hero-split .hero-main {
    text-align: left;
}

.hero-split .hero-cta-group {
    justify-content: flex-start;
}

.hero-split .portfolio-preview {
    margin-top: 1.5rem;
}

/* ==========================================================================
   HERO MARQUEE TRUST STRIP
   ========================================================================== */
.hero-marquee-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    overflow: hidden;
}

.marquee-fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 10;
    pointer-events: none;
}

.marquee-fade-left {
    left: 0;
    background: linear-gradient(to right, var(--primary), transparent);
}

.marquee-fade-right {
    right: 0;
    background: linear-gradient(to left, var(--primary), transparent);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 40s linear infinite;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.marquee-content {
    display: flex;
    gap: 3rem;
    padding: 0 1.5rem;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    white-space: nowrap;
}

.marquee-item svg {
    color: var(--secondary);
    flex-shrink: 0;
}

.marquee-item span {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.02em;
}

/* Pause on hover */
.hero-marquee-strip:hover .marquee-track {
    animation-play-state: paused;
}

/* ==========================================================================
   D&B ADVANTAGE SECTION - CREATIVE FLOW DESIGN
   ========================================================================== */
.dab-section {
    overflow: hidden;
}

.dab-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 1024px) {
    .dab-flow {
        flex-direction: row;
        justify-content: center;
        align-items: stretch;
        gap: 0;
    }
}

/* D&B Card */
.dab-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    max-width: 400px;
}

@media (min-width: 1024px) {
    .dab-card {
        flex: 1;
        max-width: none;
    }
}

.dab-letter {
    font-size: 5rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
    text-shadow: 0 4px 20px rgba(198, 151, 82, 0.3);
    margin-bottom: 1rem;
}

.dab-connector {
    display: none;
}

@media (min-width: 1024px) {
    .dab-connector {
        display: block;
        position: absolute;
        top: 50%;
        width: 60px;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--secondary), transparent);
    }

    .dab-card:first-child .dab-connector {
        right: -30px;
    }

    .dab-card.reverse .dab-connector {
        left: -30px;
    }
}

.dab-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.dab-content p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.dab-stat {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: rgba(198, 151, 82, 0.08);
    border: 1px solid rgba(198, 151, 82, 0.2);
    border-radius: 2rem;
}

.dab-stat-value {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--secondary-dark);
}

.dab-stat-label {
    font-size: 0.75rem;
    color: var(--gray-600);
    text-align: left;
    line-height: 1.3;
}

/* Ampersand */
.dab-ampersand {
    display: flex;
    align-items: center;
    justify-content: center;
}

.dab-ampersand span {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.15;
    line-height: 1;
}

@media (min-width: 1024px) {
    .dab-ampersand span {
        font-size: 6rem;
    }
}

/* Result Banner */
.dab-result {
    margin-top: 1rem;
}

.dab-result-inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 1rem;
    border: 1px solid rgba(198, 151, 82, 0.2);
}

.dab-result-inner svg {
    color: var(--secondary);
    flex-shrink: 0;
}

.dab-result-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.dab-result-text strong {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
}

.dab-result-text span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 640px) {
    .dab-result-inner {
        flex-direction: column;
        text-align: center;
    }
}

/* ==========================================================================
   CONTACT / QUOTE PAGE
   ========================================================================== */

/* Page Hero */
.page-hero {
    padding: 8rem 0 4rem;
    background: var(--primary);
    position: relative;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary), transparent);
}

.page-hero-content {
    max-width: 600px;
}

.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .page-hero h1 {
        font-size: 3rem;
    }
}

.page-hero p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* Contact Section */
.contact-section {
    background: var(--gray-50);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1.5fr 1fr;
        gap: 4rem;
    }
}

/* Contact Form */
/* .contact-form-wrapper styles removed - see modernized version below */


.form-header {
    margin-bottom: 2rem;
}

.form-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--gray-600);
}

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

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

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 1px solid var(--gray-200);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    color: var(--gray-900);
    background: var(--white);
    transition: all var(--transition-base);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px var(--gold-glow);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

.form-checkbox {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
}

.form-checkbox input[type="checkbox"] {
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
    accent-color: var(--secondary);
}

.form-checkbox label {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--gray-600);
    line-height: 1.5;
}

.form-checkbox a {
    color: var(--secondary-dark);
    text-decoration: underline;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Contact Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-md);
}

.contact-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.contact-card p,
.contact-card address {
    font-size: 0.9375rem;
    color: var(--gray-600);
    font-style: normal;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.contact-phone,
.contact-email {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--gray-50);
    border-radius: 0.5rem;
    transition: all var(--transition-base);
    margin-bottom: 0.75rem;
}

.contact-phone:last-child,
.contact-email:last-child {
    margin-bottom: 0;
}

.contact-phone svg,
.contact-email svg {
    color: var(--secondary);
    flex-shrink: 0;
}

.contact-phone span {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary);
}

.contact-email span {
    font-size: 0.9375rem;
    color: var(--gray-700);
}

.contact-phone:hover,
.contact-email:hover {
    background: var(--gold-glow);
}

/* Highlight Card */
.contact-card.highlight {
    background: var(--primary);
    color: var(--white);
}

.contact-card.highlight h3 {
    color: var(--secondary);
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.next-steps li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-number {
    width: 1.75rem;
    height: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary);
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.next-steps li span:last-child {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

/* Trust Points */
.contact-trust {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.trust-point {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--white);
    border-radius: 0.5rem;
    box-shadow: var(--shadow-sm);
}

.trust-point svg {
    color: var(--secondary);
    flex-shrink: 0;
}

.trust-point span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
}

/* ==========================================================================
   CONTACT PAGE - PREMIUM DESIGN
   ========================================================================== */

/* Contact Hero Section */
.contact-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    overflow: hidden;
}

.contact-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

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

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 31, 51, 0.95) 0%, rgba(10, 31, 51, 0.85) 100%);
}

.contact-hero-section .container {
    position: relative;
    z-index: 2;
}

.contact-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .contact-hero-grid {
        grid-template-columns: 1fr 1.1fr;
        gap: 4rem;
    }
}

/* Contact Hero Content */
.contact-hero-content {
    color: var(--white);
}

.contact-hero-label {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(198, 151, 82, 0.15);
    border: 1px solid rgba(198, 151, 82, 0.3);
    border-radius: 2rem;
    color: var(--secondary);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.contact-hero-content h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    color: var(--white);
}

.contact-hero-subtitle {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Contact Info Cards */
.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(198, 151, 82, 0.3);
}

.info-icon {
    width: 48px;
    height: 48px;
    background: rgba(198, 151, 82, 0.15);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    flex-shrink: 0;
}

.info-text {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-text strong {
    font-size: 1rem;
    color: var(--white);
    font-weight: 600;
}

/* Contact Social */
.contact-social {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-social span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

.contact-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.contact-social a:hover {
    background: var(--secondary);
    color: var(--primary);
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    width: 100%;
    /* No background, no padding - removed per user request */
    background: transparent !important;
    padding: 0 !important;
}

.contact-form-card {
    background: transparent !important;
    border-radius: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
    overflow: visible !important;
}

@media (min-width: 768px) {
    .contact-form-card {
        padding: 0;
    }
}

.form-header {
    margin-bottom: 1.5rem;
}

.form-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.375rem;
}

.form-header p {
    font-size: 0.9375rem;
    color: var(--gray-500);
}

/* Contact Form Styles */
.contact-quote-form .form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .contact-quote-form .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-quote-form .form-group {
    display: flex;
    flex-direction: column;
}

.contact-quote-form .form-group-small {
    flex: 0 0 35%;
}

.contact-quote-form .form-group-large {
    flex: 1;
}

@media (min-width: 640px) {
    .contact-quote-form .form-row:has(.form-group-small) {
        grid-template-columns: 35% 1fr;
    }
}

.contact-quote-form .form-group-full {
    margin-bottom: 1.5rem;
}

.contact-quote-form label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.375rem;
}

.contact-quote-form input,
.contact-quote-form select,
.contact-quote-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
    color: var(--gray-900);
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

.contact-quote-form input:focus,
.contact-quote-form select:focus,
.contact-quote-form textarea:focus {
    outline: none;
    border-color: var(--secondary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(198, 151, 82, 0.1);
}

.contact-quote-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.contact-quote-form textarea {
    resize: vertical;
    min-height: 80px;
}

.form-submit-btn {
    width: 100%;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1rem;
}

.form-disclaimer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.75rem;
    color: var(--gray-500);
}

.form-disclaimer svg {
    color: var(--secondary);
}

/* ==========================================================================
   MODERN CONTACT FORM - CARD BASED
   ========================================================================== */

/* Modern Contact Form Card */
.contact-form-card-modern {
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    overflow: hidden;
}

.contact-form-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 2.5rem 2rem;
    text-align: center;
    color: var(--white);
}

.contact-form-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.contact-form-header p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

/* Modern Contact Form */
.modern-contact-form {
    padding: 2.5rem 2rem;
}

@media (min-width: 768px) {
    .modern-contact-form {
        padding: 3rem 2.5rem;
    }
}

/* Form Sections */
.form-section {
    margin-bottom: 2.5rem;
}

.form-section:last-of-type {
    margin-bottom: 2rem;
}

.form-section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.75rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gray-100);
}

.section-number {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.form-section-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}

/* Form Group */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.75rem;
}

.form-label .required {
    color: #ef4444;
}

.form-label small {
    font-weight: 400;
    color: var(--gray-500);
    font-size: 0.8125rem;
}

/* Form Inputs */
.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 0.9375rem;
    color: var(--gray-900);
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    font-family: inherit;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--secondary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(198, 151, 82, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--gray-400);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.6;
}

/* Form Row (2 columns) */
.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

/* Property Type Grid */
.property-type-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 0.75rem;
}

@media (max-width: 640px) {
    .property-type-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .property-type-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.property-type-option {
    cursor: pointer;
}

.property-type-option input[type="radio"] {
    display: none;
}

.property-type-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 0.75rem;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 0.75rem;
    transition: all 0.2s ease;
    text-align: center;
}

.property-type-option:hover .property-type-card {
    border-color: rgba(198, 151, 82, 0.5);
    background: rgba(198, 151, 82, 0.03);
}

.property-type-option input[type="radio"]:checked+.property-type-card {
    border-color: var(--secondary);
    background: rgba(198, 151, 82, 0.08);
    box-shadow: 0 0 0 3px rgba(198, 151, 82, 0.1);
}

.property-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.property-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.property-type-card span {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-700);
}

/* Work Type Grid */
.work-type-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
}

@media (max-width: 640px) {
    .work-type-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.work-type-checkbox {
    cursor: pointer;
}

.work-type-checkbox input[type="checkbox"] {
    display: none;
}

.work-type-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 1rem;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 0.75rem;
    transition: all 0.2s ease;
    text-align: center;
}

.work-type-checkbox:hover .work-type-card {
    border-color: rgba(198, 151, 82, 0.5);
    background: rgba(198, 151, 82, 0.03);
}

.work-type-checkbox input[type="checkbox"]:checked+.work-type-card {
    border-color: var(--secondary);
    background: rgba(198, 151, 82, 0.08);
    box-shadow: 0 0 0 3px rgba(198, 151, 82, 0.1);
}

.checkmark-icon {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 24px;
    height: 24px;
    background: var(--secondary);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.work-type-checkbox input[type="checkbox"]:checked+.work-type-card .checkmark-icon {
    display: flex;
}

.work-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.work-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.work-type-card span {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-700);
    line-height: 1.3;
}

/* Form Submit */
.form-submit {
    padding-top: 1.5rem;
    border-top: 2px solid var(--gray-100);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.0625rem;
    width: 100%;
    justify-content: center;
    gap: 0.75rem;
}

.form-privacy-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.8125rem;
    color: var(--gray-500);
    text-align: center;
}

.form-privacy-note svg {
    color: var(--secondary);
    flex-shrink: 0;
}

/* Success Message */
.form-success-message {
    padding: 3rem 2rem;
    text-align: center;
}

.success-icon-large {
    width: 80px;
    height: 80px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.success-icon-large svg {
    color: #22c55e;
}

.form-success-message h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.form-success-message p {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   QUOTE WIZARD
   ========================================================================== */
.quote-page {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 6rem 0 4rem;
    display: flex;
    align-items: center;
}

.quote-wizard {
    background: var(--white);
    border-radius: 1.25rem;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15), 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 920px;
    margin: 0 auto;
}

/* Wizard Header */
.wizard-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 2.5rem 2rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.wizard-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(198, 151, 82, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.wizard-header-text {
    position: relative;
    z-index: 1;
}

.wizard-header h1,
.wizard-header h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white) !important;
}

.wizard-step-indicator {
    font-size: 0.9375rem;
    color: rgba(198, 151, 82, 0.9);
    font-weight: 600;
    letter-spacing: 0.025em;
}

/* Progress Bar */
.wizard-progress {
    height: 5px;
    background: var(--gray-100);
}

.wizard-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--secondary-dark), var(--secondary), var(--secondary-light));
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(198, 151, 82, 0.4);
}

/* Wizard Content */
.wizard-content {
    padding: 3rem 2.5rem;
    min-height: 400px;
}

.wizard-step {
    display: none;
    animation: fadeIn 0.3s ease;
}

.wizard-step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.wizard-question {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    text-align: center;
    margin-bottom: 2rem;
}

.wizard-hint {
    text-align: center;
    color: var(--gray-500);
    font-size: 0.9375rem;
    margin-top: -1rem;
    margin-bottom: 2rem;
}

/* Wizard Options Grid */
.wizard-options {
    display: grid;
    gap: 1rem;
}

.wizard-options-5 {
    grid-template-columns: repeat(5, 1fr);
}

.wizard-options-3 {
    grid-template-columns: repeat(3, 1fr);
}

.wizard-options-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .wizard-options-5 {
        grid-template-columns: repeat(3, 1fr);
    }

    .wizard-options-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {

    .wizard-options-5,
    .wizard-options-3,
    .wizard-options-2 {
        grid-template-columns: 1fr 1fr;
    }
}

/* Option Button */
.wizard-option {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem 1rem;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 0.875rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.wizard-option:hover {
    border-color: var(--secondary);
    background: rgba(198, 151, 82, 0.04);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 20px rgba(198, 151, 82, 0.15);
}

.wizard-option.selected {
    border-color: var(--secondary);
    background: linear-gradient(135deg, rgba(198, 151, 82, 0.08) 0%, rgba(198, 151, 82, 0.12) 100%);
    box-shadow: 0 0 0 3px rgba(198, 151, 82, 0.1), 0 8px 25px rgba(198, 151, 82, 0.2);
    transform: scale(1.03);
}

.wizard-option-icon {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wizard-option-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.wizard-option span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
    text-align: center;
}

/* Multi-select checkmark */
.wizard-option-check {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 1.5rem;
    height: 1.5rem;
    background: var(--secondary);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.wizard-option.selected .wizard-option-check {
    display: flex;
}

/* Budget/Timeline options (no icon) */
.wizard-budget .wizard-option,
.wizard-timeline .wizard-option {
    padding: 1.5rem 2rem;
}

.wizard-budget .wizard-option span,
.wizard-timeline .wizard-option span {
    font-size: 1.125rem;
    font-weight: 700;
}

/* Wizard Form (Step 5) */
.wizard-form {
    max-width: 420px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

/* Premium Floating Label Fields */
.floating-field {
    position: relative;
}

.floating-field input {
    width: 100%;
    padding: 1.5rem 1rem 0.75rem;
    font-size: 1rem;
    color: var(--gray-800);
    background: var(--gray-50);
    border: none;
    border-bottom: 2px solid var(--gray-200);
    border-radius: 0.5rem 0.5rem 0 0;
    transition: all 0.3s ease;
    font-family: inherit;
}

.floating-field input:focus {
    outline: none;
    background: var(--white);
    border-bottom-color: transparent;
}

.floating-field label {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-400);
    pointer-events: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
}

/* Label float state */
.floating-field input:focus+label,
.floating-field input.has-value+label {
    top: 0.5rem;
    transform: translateY(0);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--secondary-dark);
    letter-spacing: 0.02em;
}

/* Animated bottom bar */
.floating-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary-dark), var(--secondary), var(--secondary-light));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0 0 0.5rem 0.5rem;
}

.floating-field input:focus~.floating-bar {
    transform: scaleX(1);
}

/* Validation states */
.floating-field input:valid.has-value {
    border-bottom-color: rgba(34, 197, 94, 0.4);
}

.floating-field input:valid.has-value~.floating-bar {
    background: linear-gradient(90deg, #22c55e, #16a34a);
    transform: scaleX(1);
}

/* Form Note */
.wizard-form-note {
    font-size: 0.875rem;
    color: var(--gray-500);
    text-align: center;
    margin-top: 0.75rem;
    line-height: 1.5;
}

/* Wizard Footer */
.wizard-footer {
    padding: 1.5rem 2.5rem;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-100);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wizard-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.wizard-btn-back {
    background: transparent;
    color: var(--gray-600);
}

.wizard-btn-back:hover {
    background: var(--gray-200);
}

.wizard-btn-next {
    background: var(--secondary);
    color: var(--primary);
}

.wizard-btn-next:hover:not(:disabled) {
    background: var(--secondary-dark);
}

.wizard-btn-next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.wizard-btn-submit {
    background: var(--primary);
    color: var(--white);
}

.wizard-btn-submit:hover {
    background: var(--primary-dark);
}

/* Success State */
.wizard-success {
    text-align: center;
    padding: 3rem 2rem;
}

.wizard-success .success-icon {
    width: 5rem;
    height: 5rem;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #22c55e;
}

.wizard-success h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.wizard-success p {
    color: var(--gray-600);
    max-width: 400px;
    margin: 0 auto 2rem;
}

/* ==========================================================================
   QUOTE WIZARD MODAL
   ========================================================================== */
.wizard-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.wizard-modal.open {
    display: flex;
}

.wizard-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(13px);
}

.wizard-modal-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    background: transparent;
    /* Ensure no background */
}

.wizard-modal .quote-wizard {
    background: var(--white);
    border-radius: 1rem;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-height: 90vh;
}

.wizard-modal .wizard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
}

.wizard-modal .wizard-header h2 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.wizard-close {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    transition: all 0.2s ease;
}

.wizard-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.wizard-modal .wizard-content {
    padding: 2rem;
    overflow-y: auto;
    flex: 1;
}

.wizard-modal .wizard-question {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 640px) {
    .wizard-modal .wizard-question {
        font-size: 1.25rem;
    }

    .wizard-modal .wizard-content {
        padding: 1.5rem;
    }
}

/* Quote Wizard Modal - Fixed Portrait Size */
.wizard-modal-container {
    width: 100%;
    max-width: 480px !important;
    height: auto;
    max-height: 85vh;
}

.wizard-modal .quote-wizard {
    max-width: 480px;
    width: 100%;
}

.wizard-modal .wizard-options-5,
.wizard-modal .wizard-options-3 {
    grid-template-columns: repeat(3, 1fr) !important;
}

.wizard-modal .wizard-options-2 {
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
}

.wizard-modal .wizard-option-icon {
    width: 3rem;
    height: 3rem;
}

.wizard-modal .wizard-option {
    padding: 1rem 0.75rem;
    gap: 0.5rem;
}

.wizard-modal .wizard-option span {
    font-size: 0.75rem;
}

@media (max-width: 520px) {
    .wizard-modal-container {
        max-width: 100%;
        max-height: 95vh;
        margin: 0;
    }

    .wizard-modal .quote-wizard {
        border-radius: 0.75rem;
        max-height: 95vh;
    }

    .wizard-modal .wizard-options-5,
    .wizard-modal .wizard-options-3 {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .wizard-modal .wizard-header {
        padding: 1rem 1.25rem;
    }

    .wizard-modal .wizard-content {
        padding: 1.25rem;
    }

    .wizard-modal .wizard-question {
        font-size: 1.125rem;
        margin-bottom: 1rem;
    }

    .wizard-modal .wizard-footer {
        padding: 1rem 1.25rem;
    }
}

/* ==========================================================================
   ABOUT PAGE - PREMIUM REDESIGN
   ========================================================================== */

/* About Hero - Full Width with Overlay */
.about-hero-premium {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 10rem 0 5rem;
    overflow: hidden;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

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

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 31, 51, 0.92) 0%, rgba(10, 31, 51, 0.85) 100%);
}

.about-hero-premium .container {
    position: relative;
    z-index: 2;
}

.about-hero-content {
    max-width: 800px;
}

.about-hero-content h1 {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.about-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.about-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.about-hero-stat {
    text-align: left;
}

.about-hero-stat .stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.1;
}

.about-hero-stat .stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* About Story Section */
.about-story-section {
    background: var(--white);
    padding: 6rem 0;
}

.about-story-section .about-story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-story-section .about-story-grid {
        grid-template-columns: 1.1fr 1fr;
        gap: 5rem;
    }
}

.about-story-content .section-label {
    display: inline-block;
    margin-bottom: 0.75rem;
}

.about-story-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-story-content .lead {
    font-size: 1.125rem;
    color: var(--gray-700);
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about-story-content p {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.about-story-signature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}

.about-story-signature img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--secondary);
}

.signature-info strong {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
}

.signature-info span {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.about-story-images {
    position: relative;
}

.story-image-main img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.story-image-secondary {
    position: absolute;
    bottom: -2rem;
    left: -2rem;
    width: 45%;
    display: none;
}

@media (min-width: 768px) {
    .story-image-secondary {
        display: block;
    }
}

.story-image-secondary img {
    width: 100%;
    border-radius: 0.75rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border: 4px solid var(--white);
}

.story-badge {
    position: absolute;
    top: -1rem;
    right: 2rem;
    background: var(--white);
    padding: 1rem 1.25rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.story-badge svg {
    color: var(--secondary);
}

.story-badge span {
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--primary);
}

/* Why Choose Us Section */
.about-why-section {
    padding: 6rem 0;
}

.about-why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (min-width: 640px) {
    .about-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .about-why-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.about-why-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-why-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(198, 151, 82, 0.3);
    transform: translateY(-4px);
}

.why-icon {
    width: 56px;
    height: 56px;
    background: rgba(198, 151, 82, 0.15);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--secondary);
}

.about-why-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.about-why-card p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
}

/* Team Section */
.about-team-section {
    background: var(--gray-50);
    padding: 6rem 0;
}

.about-team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .about-team-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

.team-card {
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.team-photo {
    aspect-ratio: 1;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-card:hover .team-photo img {
    transform: scale(1.05);
}

.team-info {
    padding: 1.25rem;
    text-align: center;
}

.team-info h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.team-role {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.team-info p {
    font-size: 0.8125rem;
    color: var(--gray-500);
    line-height: 1.5;
}

/* Values Section - Numbered List */
.about-values-section {
    padding: 6rem 0;
    background: var(--white);
}

.about-values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-values-grid {
        grid-template-columns: 1.2fr 1fr;
        gap: 5rem;
    }
}

.values-content .section-label {
    display: inline-block;
    margin-bottom: 0.75rem;
}

.values-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.values-content .lead {
    font-size: 1.0625rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.value-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.value-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
    flex-shrink: 0;
    opacity: 0.5;
}

.value-text h4 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.375rem;
}

.value-text p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.values-image {
    position: relative;
}

.values-image img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.values-overlay-stat {
    position: absolute;
    bottom: -1.5rem;
    right: 2rem;
    background: var(--secondary);
    padding: 1.5rem 2rem;
    border-radius: 0.75rem;
    text-align: center;
    box-shadow: 0 10px 25px rgba(198, 151, 82, 0.3);
}

.values-overlay-stat .big-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.values-overlay-stat .label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--primary);
    opacity: 0.8;
}

/* ==========================================================================
   SERVICES PAGE - COMPETITOR HIGH DENSITY DESIGN
   ========================================================================== */

/* 1. Split Hero Section */
.services-hero-competitor {
    background: var(--white);
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
}

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

@media (min-width: 1024px) {
    .hero-split-grid {
        grid-template-columns: 1fr 1fr;
        gap: 6rem;
    }
}

.hero-content .section-label {
    display: inline-block;
    color: var(--secondary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.services-hero-competitor h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-desc {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.hero-sub {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 2.5rem;
}

.hero-cta-wrapper {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
}

.video-card-wrapper {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    aspect-ratio: 16/9;
}

.hero-visual-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-card-wrapper:hover .hero-visual-img {
    transform: scale(1.05);
}

.play-button-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: background 0.3s ease;
    cursor: pointer;
}

.video-card-wrapper:hover .play-button-overlay {
    background: rgba(0, 0, 0, 0.1);
}

.play-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.watch-text {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* 2. Trust Bar */
.trust-bar-section {
    background: var(--primary);
    padding: 2.5rem 0;
    color: var(--white);
}

.trust-bar-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .trust-bar-inner {
        text-align: left;
    }
}

.trust-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--white);
}

.trust-header p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* 3. Process Grid 8 */
.process-grid-section {
    padding: 6rem 0;
    background: var(--gray-50);
}

.process-grid-8 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .process-grid-8 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .process-grid-8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.process-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--gray-100);
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.process-card .step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--secondary);
    color: var(--primary);
    font-weight: 700;
    font-size: 1.125rem;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.process-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--primary);
    height: 3rem;
    /* Enforce alignment */
    display: flex;
    align-items: flex-start;
}

.process-card p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

/* 4. Service Accordion List */
.service-accordion-section {
    padding: 6rem 0;
    background: var(--white);
}

.section-header-simple {
    text-align: left;
    margin-bottom: 3rem;
    border-bottom: 2px solid var(--gray-100);
    padding-bottom: 1rem;
}

.section-header-simple h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
}

.service-accordion-list {
    display: flex;
    flex-direction: column;
}

.service-acc-item {
    border-bottom: 1px solid var(--gray-200);
    transition: background 0.3s ease;
}

.service-acc-item:hover {
    background: var(--gray-50);
}

.acc-header {
    display: flex;
    align-items: center;
    padding: 2rem 0;
    cursor: pointer;
    gap: 1.5rem;
}

.acc-num {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
}

.acc-header h3 {
    flex: 1;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}

.acc-toggle {
    font-size: 2rem;
    font-weight: 300;
    color: var(--gray-400);
    transition: transform 0.3s ease;
}

.acc-item.active .acc-toggle {
    transform: rotate(45deg);
    color: var(--secondary);
}

.acc-content {
    display: none;
    /* JS needed to toggle, or just static for now */
    padding: 0 0 2rem 4rem;
}

/* For this iteration, let's keep them expanded or just visible */
.acc-content {
    display: block;
    padding-left: 3.5rem;
}

.service-sublist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.service-sublist li a {
    color: var(--gray-600);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
}

.service-sublist li a:before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--secondary);
    border-radius: 50%;
    margin-right: 0.75rem;
}

.service-sublist li a:hover {
    color: var(--secondary);
}

/* 5. Inline Quote Section */
.inline-quote-section {
    padding: 6rem 0;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.inline-quote-section .quote-wizard {
    border-radius: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}


/* 6. Value Added Grid */
.value-added-section {
    padding: 6rem 0;
    background: var(--white);
    text-align: center;
}

.va-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 4rem;
    color: var(--primary);
}

.value-grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 5rem;
}

@media (min-width: 768px) {
    .value-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .value-grid-3 {
        grid-template-columns: repeat(5, 1fr);
        /* 5 items in design */
    }
}

.value-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.value-card p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.value-cta-bar {
    background: var(--primary);
    padding: 4rem 2rem;
    border-radius: 1rem;
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .value-cta-bar {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        padding: 4rem 4rem;
    }
}

.value-cta-bar h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
    max-width: 600px;
    color: var(--white);
}

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

/* Duplicate wizard styles removed - see lines 4823-5370 for all wizard styling */


/* Draggable Testimonials Active State */
.testimonials-track.active {
    cursor: grabbing;
    cursor: -webkit-grabbing;
}


.hero-bg-layer {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: slow-zoom 20s infinite alternate;
}

.hero-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 31, 51, 0.85) 0%, rgba(10, 31, 51, 0.6) 100%);
}

.services-hero-premium .container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}

.hero-label {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(198, 151, 82, 0.15);
    border: 1px solid rgba(198, 151, 82, 0.3);
    border-radius: 2rem;
    color: var(--secondary);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.services-hero-premium h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.services-hero-premium h1 .gold-text {
    color: var(--secondary);
    font-family: var(--font-heading);
}

.hero-lead {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    opacity: 0.8;
}

.scroll-indicator span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--white);
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--white);
    border-radius: 13px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--white);
    border-radius: 50%;
    animation: scroll-dot 2s infinite;
}

/* 2. Elmore Standard Section */
.elmore-standard-section {
    padding: 8rem 0;
    background: var(--white);
}

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

@media (min-width: 1024px) {
    .standard-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.standard-content .section-label {
    display: block;
    color: var(--secondary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.standard-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.standard-content p {
    font-size: 1.0625rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.standard-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.badge-icon {
    width: 24px;
    height: 24px;
    background: var(--primary);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.badge-text {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.9375rem;
}

.visual-card-stack {
    position: relative;
    padding-bottom: 2rem;
    padding-right: 2rem;
}

.card-back {
    position: absolute;
    top: 2rem;
    right: 0;
    bottom: 0;
    left: 2rem;
    background: var(--secondary);
    border-radius: 1rem;
    z-index: 1;
}

.card-front {
    position: relative;
    z-index: 2;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    aspect-ratio: 4/5;
}

.card-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visual-stat {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-desc {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
}

/* 3. Deep Dive Service Pillars */
.service-pillar {
    padding: 6rem 0;
    overflow: hidden;
}

.service-pillar.bg-light {
    background: var(--gray-50);
}

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

/* Image stacking order for alternating layout */
@media (max-width: 1023px) {
    .pillar-visual {
        order: -1;
    }
}

@media (min-width: 1024px) {
    .pillar-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.pillar-img-wrap {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pillar-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.service-pillar:hover .pillar-img-wrap img {
    transform: scale(1.05);
}

.pillar-icon {
    width: 64px;
    height: 64px;
    background: rgba(198, 151, 82, 0.1);
    color: var(--secondary);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.pillar-content h2 {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.pillar-content h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.pillar-content p {
    font-size: 1.0625rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.pillar-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.pillar-list li {
    position: relative;
    padding-left: 1.5rem;
    font-weight: 500;
    color: var(--primary);
}

.pillar-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-size: 1.5rem;
    line-height: 1;
    top: -2px;
}

.btn-text-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    font-size: 1.125rem;
    transition: gap 0.3s ease;
}

.btn-text-arrow:hover {
    gap: 1rem;
    color: var(--secondary);
}

/* 4. Process Methodology */
.premium-process-section {
    padding: 8rem 0;
    background: var(--primary);
    color: var(--white);
    position: relative;
}

.premium-process-section .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.methodology-track {
    margin-top: 5rem;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 3rem;
    position: relative;
}

@media (min-width: 768px) {
    .methodology-track {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

.track-line {
    display: none;
    position: absolute;
    top: 24px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
}

@media (min-width: 768px) {
    .track-line {
        display: block;
    }
}

.method-step {
    position: relative;
    padding-top: 70px;
    text-align: center;
}

.step-marker {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    background: var(--primary);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--secondary);
    z-index: 2;
    transition: all 0.3s ease;
}

.method-step:hover .step-marker {
    background: var(--secondary);
    color: var(--primary);
    border-color: var(--secondary);
    transform: translateX(-50%) scale(1.1);
}

.method-step h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.method-step p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* 5. Bespoke Quote Form Section */
.bespoke-quote-section {
    padding: 8rem 0;
    background: var(--gray-50);
}

.quote-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    background: var(--white);
    border-radius: 2rem;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

@media (min-width: 1024px) {
    .quote-wrapper {
        grid-template-columns: 2fr 3fr;
    }
}

.quote-content-side {
    background: var(--primary);
    padding: 4rem 3rem;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quote-label {
    display: inline-block;
    color: var(--secondary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.quote-content-side h2 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.quote-content-side p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 3rem;
}

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

.qc-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.qc-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
}

.qc-text {
    display: flex;
    flex-direction: column;
}

.qc-text span {
    font-size: 0.8125rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.25rem;
}

.qc-text strong {
    font-size: 1.125rem;
    font-weight: 700;
}

.quote-form-side {
    padding: 4rem 3rem;
}

.bespoke-form .form-group {
    margin-bottom: 1.5rem;
}

.bespoke-form label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--gray-200);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--gray-50);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(9, 32, 57, 0.05);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-hint {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-top: 0.5rem;
}

.privacy-note {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-top: 1.5rem;
}



.services-hero-cinematic .services-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 31, 51, 0.92) 0%, rgba(10, 31, 51, 0.8) 100%);
}

.services-hero-cinematic .container {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 6rem 0 4rem;
}

.services-hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(198, 151, 82, 0.15);
    border: 1px solid rgba(198, 151, 82, 0.3);
    border-radius: 2rem;
    color: var(--secondary);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.services-hero-cinematic h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.services-hero-cinematic h1 .gold-text {
    color: var(--secondary);
}

.services-hero-tagline {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.services-hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.btn-video-play {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.75rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.5rem;
    color: var(--white);
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-video-play:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.play-icon {
    width: 40px;
    height: 40px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.scroll-indicator-wrap {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    position: relative;
}

.scroll-mouse::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--secondary);
    border-radius: 2px;
    animation: scroll-bounce 1.5s ease-in-out infinite;
}

/* Services Intro Section */
.services-intro-section {
    padding: 6rem 0;
    background: var(--white);
}

.services-intro-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .services-intro-grid {
        grid-template-columns: 1.2fr 1fr;
        gap: 4rem;
    }
}

.intro-content .section-label {
    margin-bottom: 0.75rem;
}

.intro-content h2 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.intro-content .lead {
    font-size: 1.0625rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.intro-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.intro-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--gray-700);
}

.intro-feature svg {
    color: var(--secondary);
    flex-shrink: 0;
}

.intro-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.stat-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: rgba(198, 151, 82, 0.3);
    transform: translateY(-4px);
}

.stat-card.featured {
    background: linear-gradient(135deg, var(--secondary) 0%, #e8c87a 100%);
    border-color: transparent;
}

.stat-card.featured .stat-number,
.stat-card.featured .stat-label {
    color: var(--primary);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.8125rem;
    color: var(--gray-500);
    font-weight: 500;
}

/* 8-Step Process Grid */
.services-process-full {
    padding: 6rem 0;
}

.process-steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 3rem;
}

@media (min-width: 640px) {
    .process-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .process-steps-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.process-step-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.process-step-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(198, 151, 82, 0.3);
    transform: translateY(-4px);
}

.process-step-card .step-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(198, 151, 82, 0.15);
    line-height: 1;
}

.process-step-card .step-icon {
    width: 56px;
    height: 56px;
    background: rgba(198, 151, 82, 0.15);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    margin-bottom: 1.25rem;
}

.process-step-card h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.625rem;
}

.process-step-card p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
}

/* Services Accordion */
.services-categories-section {
    padding: 6rem 0;
    background: var(--gray-50);
}

.services-accordion {
    max-width: 900px;
    margin: 3rem auto 0;
}

.service-accordion-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 1rem;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-accordion-item:hover {
    border-color: rgba(198, 151, 82, 0.3);
}

.accordion-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: var(--gray-50);
}

.accordion-number {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--secondary);
    min-width: 40px;
}

.accordion-header h3 {
    flex: 1;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0;
}

.accordion-toggle {
    width: 40px;
    height: 40px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    transition: all 0.3s ease;
}

.service-accordion-item.active .accordion-toggle {
    background: var(--secondary);
    color: var(--primary);
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.service-accordion-item.active .accordion-content {
    max-height: 500px;
}

.accordion-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 0 1.5rem 1.5rem;
}

@media (min-width: 640px) {
    .accordion-services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.accordion-service-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.accordion-service-link:hover {
    background: var(--primary);
}

.accordion-service-link:hover span {
    color: var(--white);
}

.accordion-service-link img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.accordion-service-link span {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-700);
    text-align: center;
    transition: color 0.3s ease;
}

/* Value Services Section */
.services-value-section {
    padding: 6rem 0;
}

.value-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .value-grid {
        grid-template-columns: 1fr 1.5fr;
        gap: 4rem;
        align-items: start;
    }
}

.value-content h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.value-content .lead {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.value-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .value-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

.value-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: rgba(198, 151, 82, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.value-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(198, 151, 82, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.value-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.value-card p {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Services Quote Section */
.services-quote-section {
    padding: 6rem 0;
}

.quote-section-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .quote-section-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.quote-section-content h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.quote-section-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.quote-section-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.qsf-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
}

.qsf-item svg {
    color: var(--secondary);
}

.quote-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.quote-phone:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(198, 151, 82, 0.3);
}

.quote-phone svg {
    color: var(--secondary);
}

.quote-phone span {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
}

/* Inline Quote Form */
.inline-quote-form {
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem;
}

.inline-quote-form h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.inline-quote-form .form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

@media (min-width: 480px) {
    .inline-quote-form .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.inline-quote-form input,
.inline-quote-form select {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 0.9375rem;
    color: var(--gray-900);
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

.inline-quote-form input:focus,
.inline-quote-form select:focus {
    outline: none;
    border-color: var(--secondary);
    background: var(--white);
}

.inline-quote-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.inline-quote-form .btn {
    width: 100%;
    margin-top: 0.5rem;
}

/* ==========================================================================
   PROBLEM-AGITATE SECTION
   ========================================================================== */

/* Services Hero - Immersive Full-Screen */
.services-hero-immersive {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.services-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.services-hero-bg video,
.services-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 31, 51, 0.9) 0%, rgba(10, 31, 51, 0.75) 100%);
}

.services-hero-immersive .container {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 6rem;
}

.services-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.services-hero-label {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(198, 151, 82, 0.15);
    border: 1px solid rgba(198, 151, 82, 0.3);
    border-radius: 2rem;
    color: var(--secondary);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.services-hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.services-hero-content h1 .text-gradient {
    background: linear-gradient(135deg, var(--secondary) 0%, #e8c87a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto 2.5rem;
}

.services-hero-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.btn-ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 0.875rem 1.75rem;
    border-radius: 0.5rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.services-hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
}

.services-hero-scroll span {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    margin: 0 auto;
    position: relative;
}

.scroll-indicator::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--secondary);
    border-radius: 2px;
    animation: scroll-bounce 1.5s ease-in-out infinite;
}

@keyframes scroll-bounce {

    0%,
    100% {
        top: 6px;
        opacity: 1;
    }

    50% {
        top: 18px;
        opacity: 0.3;
    }
}

/* Services Showcase - Horizontal Scroll Cards */
.services-showcase-section {
    padding: 6rem 0;
    background: var(--gray-50);
    overflow: hidden;
}

.services-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.services-intro h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.services-intro p {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.services-showcase-wrapper {
    width: 100%;
    overflow-x: auto;
    padding: 1rem 0 2rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.services-showcase-wrapper::-webkit-scrollbar {
    display: none;
}

.services-showcase-track {
    display: flex;
    gap: 1.5rem;
    padding: 0 max(1rem, calc((100vw - 1200px) / 2));
    width: max-content;
}

.service-showcase-card {
    width: 340px;
    flex-shrink: 0;
    background: var(--white);
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 768px) {
    .service-showcase-card {
        width: 400px;
    }
}

.service-showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

/* Conflicting styles removed to fix homepage service cards */
.service-showcase-card .service-number {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.service-showcase-card .service-types {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.service-types li {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-500);
    background: var(--gray-100);
    padding: 0.375rem 0.75rem;
    border-radius: 1rem;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 0.375rem;
    margin-bottom: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-100);
}

.service-price .from {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

.service-price .amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-link:hover {
    gap: 0.75rem;
    color: var(--secondary-dark);
}

/* Services Spectrum Section */
.services-spectrum-section {
    padding: 6rem 0;
}

.spectrum-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.spectrum-header h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.spectrum-header p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

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

@media (min-width: 640px) {
    .spectrum-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .spectrum-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.spectrum-category {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.spectrum-category:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(198, 151, 82, 0.3);
}

.spectrum-icon {
    width: 56px;
    height: 56px;
    background: rgba(198, 151, 82, 0.15);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--secondary);
}

.spectrum-category h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.spectrum-services {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.spectrum-services li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
}

.spectrum-services li svg {
    color: var(--secondary);
    flex-shrink: 0;
}

/* Services Process Section */
.services-process-section {
    padding: 6rem 0;
    background: var(--white);
}

.process-timeline {
    max-width: 800px;
    margin: 3rem auto 0;
    position: relative;
}

.process-timeline-line {
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--secondary) 0%, var(--gray-200) 100%);
}

@media (min-width: 768px) {
    .process-timeline-line {
        left: 50%;
        transform: translateX(-50%);
    }
}

.process-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    position: relative;
}

@media (min-width: 768px) {
    .process-step {
        justify-content: flex-start;
    }

    .process-step:nth-child(even) {
        flex-direction: row-reverse;
    }

    .process-step:nth-child(even) .step-content {
        text-align: right;
    }
}

.step-marker {
    width: 48px;
    height: 48px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.step-marker span {
    font-size: 0.875rem;
    font-weight: 800;
    color: var(--primary);
}

@media (min-width: 768px) {
    .step-marker {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .step-content {
        width: calc(50% - 60px);
    }
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.step-content p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.step-duration {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--secondary);
    background: var(--gold-glow);
    padding: 0.375rem 0.75rem;
    border-radius: 1rem;
}

/* Services Difference Section */
.services-difference-section {
    padding: 6rem 0;
}

.difference-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .difference-grid {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}

.difference-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.difference-content .lead {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.difference-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.diff-stat {
    text-align: left;
}

.diff-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.1;
}

.diff-label {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
}

.difference-features {
    display: grid;
    gap: 1rem;
}

.feature-card {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(198, 151, 82, 0.3);
}

.feature-icon {
    width: 44px;
    height: 44px;
    background: rgba(198, 151, 82, 0.15);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--secondary);
}

.feature-text h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.feature-text p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

/* ==========================================================================
   PROBLEM-AGITATE SECTION
   ========================================================================== */
.problem-section {
    background: linear-gradient(180deg, var(--primary) 0%, #0a1f33 100%);
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .problem-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.problem-card {
    padding: 2rem 1.5rem;
    background: rgba(255, 80, 80, 0.06);
    border: 1px solid rgba(255, 80, 80, 0.15);
    border-radius: 1rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.problem-card:hover {
    background: rgba(255, 80, 80, 0.1);
    border-color: rgba(255, 80, 80, 0.25);
    transform: translateY(-6px);
}

.problem-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 80, 80, 0.12);
    border-radius: 50%;
    color: #ff7b7b;
}

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

.problem-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.625rem;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.problem-card p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
}

.problem-solution {
    text-align: center;
    padding-top: 1rem;
}

.solution-arrow {
    width: 44px;
    height: 44px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary);
    border-radius: 50%;
    color: var(--primary);
    animation: bounce 2s ease-in-out infinite;
}

.solution-arrow svg {
    width: 20px;
    height: 20px;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(6px);
    }
}

.solution-text {
    font-size: 1.375rem;
    font-weight: 500;
    color: var(--white);
    letter-spacing: -0.01em;
}

.solution-text strong {
    color: var(--secondary);
    font-weight: 700;
}

/* ==========================================================================
   STATS COUNTER SECTION
   ========================================================================== */
.stats-section {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary) 50%, var(--secondary-light) 100%);
    position: relative;
    overflow: hidden;
    padding: 4.5rem 0;
}

.stats-bg-pattern {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem;
    }
}

.stat-block {
    text-align: center;
    padding: 1.25rem 1rem;
}

.stat-block .stat-number {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    display: inline;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .stat-block .stat-number {
        font-size: 3.5rem;
    }
}

.stat-block .stat-prefix,
.stat-block .stat-suffix {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    display: inline;
}

@media (min-width: 768px) {

    .stat-block .stat-prefix,
    .stat-block .stat-suffix {
        font-size: 2rem;
    }
}

.stat-block .stat-label {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.stat-block .stat-detail {
    font-size: 0.8125rem;
    color: rgba(9, 32, 57, 0.65);
    margin-top: 0.25rem;
    font-weight: 500;
}

/* ==========================================================================
   PROCESS SECTION - Enhanced
   ========================================================================== */
.process-duration {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.375rem 0.75rem;
    background: var(--secondary);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.process-timeline-dot {
    display: none;
}

@media (min-width: 1024px) {
    .process-timeline-dot {
        display: block;
        position: absolute;
        bottom: -2rem;
        left: 50%;
        transform: translateX(-50%);
        width: 16px;
        height: 16px;
        background: var(--secondary);
        border: 3px solid var(--white);
        border-radius: 50%;
        box-shadow: 0 0 0 4px rgba(198, 151, 82, 0.2);
    }
}

/* ==========================================================================
   PORTFOLIO BEFORE/AFTER SECTION
   ========================================================================== */
.portfolio-section {
    background: var(--primary);
}

.portfolio-section .section-label {
    color: var(--secondary);
}

.portfolio-section .section-title {
    color: var(--white);
}

.portfolio-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.portfolio-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.portfolio-tab {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.portfolio-tab:hover,
.portfolio-tab.active {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--primary);
}

.portfolio-project {
    display: none;
}

.portfolio-project.active {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    animation: fadeIn 0.5s ease;
}

@media (min-width: 1024px) {
    .portfolio-project.active {
        grid-template-columns: 1.5fr 1fr;
        gap: 3rem;
        align-items: center;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.comparison-container {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 16/10;
    user-select: none;
    -webkit-user-select: none;
    touch-action: pan-y;
    cursor: col-resize;
}

.comparison-before,
.comparison-after {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.comparison-after {
    clip-path: inset(0 50% 0 0);
}

.comparison-slider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: var(--secondary);
    cursor: col-resize;
    z-index: 20;
    touch-action: none;
}

.comparison-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

.comparison-label {
    position: absolute;
    bottom: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 0.25rem;
}

.label-before {
    left: 1rem;
}

.label-after {
    right: 1rem;
}

.portfolio-details h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.portfolio-details>p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.portfolio-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.portfolio-stat {
    text-align: center;
}

.portfolio-stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
}

.portfolio-stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.portfolio-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ==========================================================================
   TESTIMONIALS - PREMIUM 3D CAROUSEL (Full Width, Center Focus)
   ========================================================================== */
.testimonials-section-3d {
    background: linear-gradient(180deg, #f8f9fb 0%, #ffffff 50%, #f8f9fb 100%);
    padding: 6rem 0 5rem;
    overflow: hidden;
}

.testimonials-section-3d .section-header {
    margin-bottom: 3rem;
}

/* Full-width carousel wrapper */
.testimonials-3d-wrapper {
    position: relative;
    width: 100%;
    max-width: 100vw;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
    cursor: grab;
    /* Enable grab cursor */
}

.testimonials-3d-wrapper:active {
    cursor: grabbing;
    /* Enable grabbing cursor on click */
}

@media (min-width: 768px) {
    .testimonials-3d-wrapper {
        height: 380px;
    }
}

/* Track for cards - uses JS for positioning */
.testimonials-3d-track {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Individual 3D Cards */
.testimonial-3d-card {
    position: absolute;
    width: 90%;
    max-width: 520px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: grab;
}

.testimonial-3d-card:active {
    cursor: grabbing;
}

@media (min-width: 768px) {
    .testimonial-3d-card {
        width: 480px;
    }
}

/* Card States via data attributes - JS will toggle these */
.testimonial-3d-card[data-position="center"] {
    z-index: 30;
    transform: translateX(0) scale(1);
    opacity: 1;
    filter: blur(0);
}

.testimonial-3d-card[data-position="left"] {
    z-index: 20;
    transform: translateX(-70%) scale(0.85);
    opacity: 0.5;
    filter: blur(2px);
    pointer-events: none;
}

.testimonial-3d-card[data-position="right"] {
    z-index: 20;
    transform: translateX(70%) scale(0.85);
    opacity: 0.5;
    filter: blur(2px);
    pointer-events: none;
}

.testimonial-3d-card[data-position="far-left"] {
    z-index: 10;
    transform: translateX(-140%) scale(0.7);
    opacity: 0.2;
    filter: blur(4px);
    pointer-events: none;
}

.testimonial-3d-card[data-position="far-right"] {
    z-index: 10;
    transform: translateX(140%) scale(0.7);
    opacity: 0.2;
    filter: blur(4px);
    pointer-events: none;
}

.testimonial-3d-card[data-position="hidden"] {
    z-index: 0;
    transform: translateX(0) scale(0.5);
    opacity: 0;
    pointer-events: none;
}

/* Inner Card Styling */
.testimonial-3d-inner {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 1.25rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 8px 24px rgba(0, 0, 0, 0.06);
    text-align: center;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .testimonial-3d-inner {
        padding: 2.5rem 3rem;
    }
}

/* Center card gets extra glow */
.testimonial-3d-card[data-position="center"] .testimonial-3d-inner {
    box-shadow: 0 25px 80px rgba(198, 151, 82, 0.15), 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* Quote Icon */
.testimonial-quote-icon {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    color: var(--secondary);
    opacity: 0.2;
}

/* Rating Stars */
.testimonial-3d-inner .testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1.25rem;
    color: #f59e0b;
}

/* Blockquote */
.testimonial-3d-inner blockquote {
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

@media (min-width: 768px) {
    .testimonial-3d-inner blockquote {
        font-size: 1.125rem;
    }
}

/* Author Section */
.testimonial-3d-inner .testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.testimonial-3d-inner .testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--secondary);
}

.testimonial-3d-inner .testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-3d-inner .testimonial-info {
    text-align: left;
}

.testimonial-3d-inner .testimonial-info strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--primary);
}

.testimonial-3d-inner .testimonial-info span {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

/* Navigation Arrows */
.testimonial-3d-prev,
.testimonial-3d-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 50;
    width: 48px;
    height: 48px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.testimonial-3d-prev {
    left: 1rem;
}

.testimonial-3d-next {
    right: 1rem;
}

@media (min-width: 768px) {
    .testimonial-3d-prev {
        left: 2rem;
    }

    .testimonial-3d-next {
        right: 2rem;
    }
}

@media (min-width: 1024px) {
    .testimonial-3d-prev {
        left: 5%;
    }

    .testimonial-3d-next {
        right: 5%;
    }
}

.testimonial-3d-prev:hover,
.testimonial-3d-next:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--primary);
    transform: translateY(-50%) scale(1.1);
}

/* Dots Navigation */
.testimonials-3d-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.testimonial-3d-dot {
    width: 10px;
    height: 10px;
    background: var(--gray-300);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-3d-dot.active {
    background: var(--secondary);
    width: 28px;
    border-radius: 5px;
}

/* ==========================================================================
   PRICING TRANSPARENCY SECTION
   ========================================================================== */
.pricing-section {
    background: var(--primary);
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.pricing-section .section-label {
    color: var(--secondary);
}

.pricing-section .section-title {
    color: var(--white);
}

.pricing-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

.pricing-card {
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

@media (min-width: 768px) {
    .pricing-card {
        padding: 2.5rem 2rem;
    }
}

.pricing-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-6px);
}

.pricing-card.featured {
    background: rgba(198, 151, 82, 0.08);
    border-color: rgba(198, 151, 82, 0.4);
}

.pricing-card.featured:hover {
    border-color: var(--secondary);
}

.pricing-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.375rem 0.875rem;
    background: var(--secondary);
    color: var(--primary);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 2rem;
}

.pricing-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(198, 151, 82, 0.12);
    border-radius: 0.875rem;
    color: var(--secondary);
}

.pricing-icon svg {
    width: 26px;
    height: 26px;
}

.pricing-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.875rem;
    letter-spacing: -0.01em;
}

.pricing-range {
    margin-bottom: 1rem;
}

.pricing-from {
    display: block;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-amount {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--secondary);
    letter-spacing: -0.02em;
}

.pricing-card>p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.pricing-includes {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.pricing-includes li {
    padding: 0.625rem 0;
    padding-left: 1.375rem;
    position: relative;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.75);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.pricing-includes li:first-child {
    border-top: none;
}

.pricing-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.75rem;
}

.pricing-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    margin-top: 2.5rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 0.625rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.pricing-note svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--secondary);
}

.pricing-note p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    text-align: left;
}

/* New Competitor-Inspired Pricing Grid */
.pricing-category {
    margin-bottom: 3rem;
}

.pricing-category-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-category-title svg {
    color: var(--secondary);
}

.pricing-table-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .pricing-table-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem;
    }
}

.pricing-table-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.875rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-table-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.pricing-table-card.featured {
    background: rgba(198, 151, 82, 0.1);
    border-color: rgba(198, 151, 82, 0.3);
}

.pricing-table-card.featured:hover {
    border-color: var(--secondary);
}

.pricing-table-type {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.pricing-table-style {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.pricing-table-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary);
    letter-spacing: -0.02em;
}

.pricing-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    width: 100%;
}

.pricing-footer .pricing-note {
    margin: 0 auto;
    max-width: 850px;
    padding: 2.5rem 3rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.pricing-footer .pricing-note svg {
    flex-shrink: 0;
}

.pricing-footer .pricing-note p {
    font-size: 1.0625rem;
    line-height: 1.7;
    text-align: center;
    margin: 0;
}

.pricing-footer .btn {
    margin: 0 auto;
    padding: 1.125rem 3rem;
    font-size: 1.0625rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .pricing-footer {
        gap: 2rem;
        padding-top: 2.5rem;
        margin-top: 3rem;
    }

    .pricing-footer .pricing-note {
        padding: 2rem;
        flex-direction: column;
    }

    .pricing-footer .pricing-note p {
        font-size: 0.9375rem;
    }

    .pricing-footer .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

.pricing-cta {
    text-align: center;
    margin-top: 0;
}

/* ==========================================================================
   AREAS SERVED SECTION
   ========================================================================== */
.areas-section {
    background: linear-gradient(180deg, #0a1f33 0%, var(--primary) 100%);
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.areas-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.areas-featured h3 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.625rem;
    margin-bottom: 2rem;
}

.area-tag {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.8125rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.area-tag:hover {
    background: rgba(198, 151, 82, 0.12);
    border-color: rgba(198, 151, 82, 0.4);
    color: var(--secondary);
}

.areas-extended {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.areas-extended p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.65);
}

/* ==========================================================================
   ACCREDITATIONS SECTION - Trust Bar
   ========================================================================== */


/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-section {
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.faq-grid {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    border-color: var(--gray-300);
}

.faq-item.active {
    border-color: var(--secondary);
    box-shadow: 0 4px 16px rgba(198, 151, 82, 0.08);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.125rem 1.25rem;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question span {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: -0.01em;
}

.faq-question svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: var(--gray-400);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
    color: var(--secondary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 400px;
}

.faq-answer p {
    padding: 0 1.25rem 1.25rem;
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.faq-cta {
    text-align: center;
    margin-top: 2.5rem;
}

.faq-cta p {
    font-size: 0.9375rem;
    color: var(--gray-500);
    margin-bottom: 1rem;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    background: transparent;
    border: 2px solid var(--primary);
    border-radius: 0.5rem;
    color: var(--primary);
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ==========================================================================
   SERVICES PAGE - PREMIUM DESIGN (NEW)
   ========================================================================== */

/* 1. CINEMATIC HERO SECTION */
.services-hero-cinematic {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.services-hero-cinematic .hero-bg-container {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.services-hero-cinematic .hero-bg-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    animation: heroZoomPremium 20s ease-in-out infinite alternate;
}

@keyframes heroZoomPremium {
    0% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.services-hero-cinematic .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 31, 51, 0.92) 0%, rgba(10, 31, 51, 0.75) 50%, rgba(10, 31, 51, 0.85) 100%);
}

.services-hero-cinematic .hero-content-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 8rem 0 4rem;
}

.services-hero-cinematic .hero-content-centered {
    max-width: 800px;
    margin: 0 auto;
}

.services-hero-cinematic .section-label {
    display: inline-block;
    background: rgba(198, 151, 82, 0.15);
    color: var(--secondary);
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.services-hero-cinematic .hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.text-gradient {
    background: linear-gradient(135deg, var(--secondary) 0%, #e8c77b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-hero-cinematic .hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

/* Hero Stats Bar */
.hero-stats-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2rem 3rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 700px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary);
}

.stat-suffix {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.25rem;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .stat-divider {
        display: none;
    }

    .hero-stats-bar {
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.services-page-premium .mouse {
    width: 24px;
    height: 36px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    position: relative;
}

.services-page-premium .mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--secondary);
    border-radius: 2px;
    animation: scrollWheel 1.5s ease-in-out infinite;
}

@keyframes scrollWheel {

    0%,
    100% {
        opacity: 1;
        top: 8px;
    }

    50% {
        opacity: 0.5;
        top: 16px;
    }
}

/* Fade up animations */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUpPremium 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

@keyframes fadeUpPremium {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 2. TRUST BAR */
.trust-bar-premium {
    background: var(--white);
    padding: 2rem 0;
    border-bottom: 1px solid var(--gray-100);
}

.trust-bar-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.trust-logos {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-logo-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-600);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.trust-logo-item svg {
    color: var(--secondary);
}

/* 3. PREMIUM SERVICE CARDS */
.services-grid-section {
    padding: 6rem 0;
    background: var(--gray-50);
}

.section-header-center {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header-center .section-label {
    display: inline-block;
    background: rgba(198, 151, 82, 0.1);
    color: var(--secondary);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.section-header-center .section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-header-center .section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

.services-premium-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .services-premium-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .services-premium-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card-premium {
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
}

.service-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.service-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card-premium:hover .service-card-image img {
    transform: scale(1.1);
}

.service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(10, 31, 51, 0.6));
}

.service-card-content {
    padding: 2rem;
}

.service-icon {
    width: 56px;
    height: 56px;
    background: rgba(198, 151, 82, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--secondary);
}

.service-card-content h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.service-card-content>p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.service-sub-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.service-sub-list li {
    font-size: 0.8125rem;
    color: var(--gray-600);
    background: var(--gray-50);
    padding: 0.375rem 0.75rem;
    border-radius: 100px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 0.75rem;
}

/* 4. PROCESS TIMELINE */
.process-timeline-section {
    padding: 6rem 0;
    background: var(--primary);
    color: var(--white);
}

.process-timeline-section .section-label {
    color: var(--secondary);
}

.process-timeline-section .section-title {
    color: var(--white);
}

.process-timeline-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.process-timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 4rem;
    padding: 0 1rem;
}

.timeline-track {
    position: absolute;
    top: 24px;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    display: none;
}

@media (min-width: 1024px) {
    .timeline-track {
        display: block;
    }
}

.timeline-step {
    flex: 1;
    min-width: 140px;
    text-align: center;
    position: relative;
}

.step-marker {
    width: 48px;
    height: 48px;
    background: var(--secondary);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    margin: 0 auto 1rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.timeline-step:hover .step-marker {
    transform: scale(1.1);
    box-shadow: 0 0 0 8px rgba(198, 151, 82, 0.2);
}

.step-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.step-content p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
    .process-timeline {
        flex-direction: column;
        gap: 1.5rem;
    }

    .timeline-step {
        display: flex;
        align-items: center;
        text-align: left;
        gap: 1rem;
    }

    .step-marker {
        margin: 0;
        flex-shrink: 0;
    }
}

/* 5. DIFFERENCE SECTION */
.difference-section {
    padding: 6rem 0;
    background: var(--white);
}

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

@media (min-width: 1024px) {
    .difference-grid {
        grid-template-columns: 1fr 1fr;
        gap: 6rem;
    }
}

.difference-image {
    position: relative;
}

.difference-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.difference-image .image-accent {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    width: 60%;
    height: 60%;
    background: var(--secondary);
    border-radius: 1rem;
    z-index: -1;
    opacity: 0.2;
}

.difference-content .section-label {
    display: inline-block;
    background: rgba(198, 151, 82, 0.1);
    color: var(--secondary);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.difference-content .section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 2rem;
}

.difference-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.diff-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.diff-icon {
    width: 48px;
    height: 48px;
    background: rgba(198, 151, 82, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--secondary);
}

.diff-text h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.diff-text p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* 6. PORTFOLIO PREVIEW */
.portfolio-preview-section {
    padding: 6rem 0;
    background: var(--gray-50);
}

.portfolio-bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 220px);
    gap: 1rem;
}

@media (min-width: 768px) {
    .portfolio-bento-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(2, 280px);
    }
}

.portfolio-item {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
}

.portfolio-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.portfolio-item.wide {
    grid-column: span 2;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 31, 51, 0.9) 0%, transparent 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.project-type {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.project-location {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
}

.portfolio-cta {
    text-align: center;
    margin-top: 3rem;
}

/* 7. QUOTE WIZARD SECTION */
.quote-wizard-section {
    padding: 6rem 0;
    background: var(--primary);
}

.quote-wizard-section .section-label {
    color: var(--secondary);
}

.quote-wizard-section .section-title {
    color: var(--white);
}

.quote-wizard-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

/* 8. TESTIMONIAL HIGHLIGHT */
.testimonial-highlight-section {
    padding: 6rem 0;
    background: var(--white);
}

.testimonial-highlight-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background: var(--gray-50);
    border-radius: 1.5rem;
}

.testimonial-quote-icon {
    color: var(--secondary);
    opacity: 0.2;
    margin-bottom: 1.5rem;
}

.testimonial-highlight-card blockquote {
    font-size: 1.375rem;
    font-weight: 500;
    color: var(--primary);
    line-height: 1.7;
    margin: 0 0 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.author-avatar img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

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

.author-info strong {
    display: block;
    font-size: 1rem;
    color: var(--primary);
}

.author-info span {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.testimonial-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.testimonial-rating .stars {
    color: #F59E0B;
    font-size: 1.25rem;
}

.testimonial-rating .platform {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* 9. CTA FOOTER */
.services-cta-section {
    padding: 5rem 0;
    background: var(--primary);
    color: var(--white);
    text-align: center;
}

.cta-content-wrapper h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.cta-content-wrapper>p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.cta-contact-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cta-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.cta-contact-item:hover {
    color: var(--secondary);
}

.cta-contact-item svg {
    color: var(--secondary);
}

.cta-accreditations {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-accreditations>span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.accred-logos {
    display: flex;
    gap: 1.5rem;
}

.accred-logos span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ==========================================================================
   SERVICES PAGE V2 - COMPETITOR FLOW STYLE
   ========================================================================== */

.gold {
    color: var(--secondary);
}

/* ----------------------------------------------------------------
   Hero
   ---------------------------------------------------------------- */
.srv2-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.srv2-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.srv2-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 31, 51, 0.9) 0%, rgba(10, 31, 51, 0.7) 100%);
}

.srv2-hero .container {
    position: relative;
    z-index: 1;
}

.srv2-hero-content {
    max-width: 700px;
    padding: 8rem 0 5rem;
}

.srv2-eyebrow {
    display: inline-block;
    color: var(--secondary);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
}

.srv2-hero h1 {
    font-size: clamp(2.25rem, 5vw, 3.25rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.srv2-hero p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* ----------------------------------------------------------------
   Process Dark Section (Zigzag)
   ---------------------------------------------------------------- */
.srv2-process-dark {
    background: var(--primary);
    padding: 5rem 0;
}

.srv2-process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

@media (min-width: 1024px) {
    .srv2-process-grid {
        grid-template-columns: 400px 1fr;
        gap: 4rem;
    }
}

.srv2-process-images {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.srv2-process-img-1,
.srv2-process-img-2 {
    position: relative;
}

.srv2-process-img-1 img,
.srv2-process-img-2 img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 0.75rem;
}

.srv2-img-caption {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

.srv2-process-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.srv2-process-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.srv2-process-item.srv2-left {
    text-align: left;
    justify-content: flex-start;
}

.srv2-process-item.srv2-right {
    text-align: right;
    justify-content: flex-end;
    flex-direction: row-reverse;
}

.srv2-num {
    width: 28px;
    height: 28px;
    background: var(--secondary);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    flex-shrink: 0;
}

.srv2-item-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.375rem;
}

.srv2-item-content p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    max-width: 400px;
}

.srv2-process-item.srv2-right .srv2-item-content {
    margin-left: auto;
}

/* ----------------------------------------------------------------
   Service Accordion
   ---------------------------------------------------------------- */
.srv2-accordion-section {
    padding: 5rem 0;
    background: var(--white);
}

.srv2-accordion-header {
    margin-bottom: 2.5rem;
}

.srv2-accordion-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.srv2-accordion {
    max-width: 100%;
}

.srv2-accordion-item {
    border-bottom: 1px solid var(--gray-200);
}

.srv2-accordion-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.srv2-acc-num {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-400);
    font-style: italic;
}

.srv2-acc-title {
    flex: 1;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary);
    transition: color 0.3s ease;
}

.srv2-accordion-item.active .srv2-acc-title,
.srv2-accordion-trigger:hover .srv2-acc-title {
    color: var(--secondary);
}

.srv2-acc-icon {
    width: 48px;
    height: 48px;
    background: var(--secondary);
    border-radius: 0.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s ease;
}

.srv2-acc-icon .minus {
    display: none;
}

.srv2-acc-icon .plus {
    display: block;
}

.srv2-accordion-item.active .srv2-acc-icon .minus {
    display: block;
}

.srv2-accordion-item.active .srv2-acc-icon .plus {
    display: none;
}

.srv2-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.srv2-accordion-item.active .srv2-accordion-content {
    max-height: 400px;
}

.srv2-acc-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1.5rem 0 2.5rem;
}

@media (min-width: 768px) {
    .srv2-acc-inner {
        grid-template-columns: 1fr 300px;
        gap: 3rem;
    }
}

.srv2-acc-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.srv2-acc-list a {
    font-size: 1rem;
    color: var(--primary);
    text-decoration: none;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-100);
    transition: color 0.3s ease;
}

.srv2-acc-list a:hover {
    color: var(--secondary);
}

.srv2-acc-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0.5rem;
}

/* ----------------------------------------------------------------
   All-in-One Section
   ---------------------------------------------------------------- */
.srv2-allinone {
    position: relative;
    padding: 5rem 0;
    background: var(--white);
    overflow: hidden;
}

.srv2-allinone-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--secondary);
}

.srv2-allinone-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .srv2-allinone-grid {
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 2rem 3rem;
    }

    .srv2-aio-center {
        grid-row: span 2;
        grid-column: 2;
    }
}

.srv2-aio-card {
    padding: 1.5rem;
}

.srv2-aio-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.srv2-aio-card p {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.srv2-aio-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.srv2-aio-center img {
    width: 100%;
    max-width: 350px;
    height: 400px;
    object-fit: cover;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
}

.srv2-aio-title {
    display: flex;
    flex-direction: column;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}

.srv2-aio-title .gold {
    font-size: 1.75rem;
}

/* ----------------------------------------------------------------
   Quote Section
   ---------------------------------------------------------------- */
.srv2-quote {
    padding: 5rem 0;
    background: var(--gray-50);
}

.srv2-quote-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.srv2-quote-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.srv2-quote-header p {
    color: var(--gray-600);
}

/* ----------------------------------------------------------------
   Final CTA
   ---------------------------------------------------------------- */
.srv2-cta {
    background: var(--primary);
    padding: 2.5rem 0;
}

.srv2-cta-content {
    text-align: center;
}

.srv2-cta-content>p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
}

.srv2-cta-content strong {
    color: var(--white);
}

.srv2-cta-logos {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.srv2-cta-logos span {
    font-size: 0.6875rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}


/* Gold accent shorthand */
.gold {
    color: var(--secondary);
}

.section-eyebrow {
    display: inline-block;
    background: rgba(198, 151, 82, 0.1);
    color: var(--secondary);
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

/* ----------------------------------------------------------------
   Section 1: Cinematic Hero
   ---------------------------------------------------------------- */
.srv-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.srv-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.srv-hero-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.08);
    }
}

.srv-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 31, 51, 0.92) 0%, rgba(10, 31, 51, 0.75) 100%);
}

.srv-hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 6rem 0 4rem;
}

.srv-hero-content {
    max-width: 800px;
}

.srv-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--secondary);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.srv-hero-label .dot {
    width: 8px;
    height: 8px;
    background: var(--secondary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.srv-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.srv-hero-content>p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.srv-hero-ctas {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.srv-hero-scroll {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.srv-hero-scroll:hover {
    color: var(--secondary);
}

/* Floating Stats */
.srv-hero-stats {
    display: flex;
    gap: 1.5rem;
    margin-top: 4rem;
    flex-wrap: wrap;
    justify-content: center;
}

.srv-stat-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1rem;
    padding: 1.5rem 2rem;
    text-align: center;
    min-width: 150px;
}

.srv-stat-num {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 0.375rem;
}

.srv-stat-text {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* ----------------------------------------------------------------
   Section 2: Intro Statement
   ---------------------------------------------------------------- */
.srv-intro {
    padding: 6rem 0;
    background: var(--white);
}

.srv-intro-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

@media (min-width: 992px) {
    .srv-intro-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.srv-intro-label {
    display: inline-block;
    color: var(--secondary);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.srv-intro-left h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--primary);
    line-height: 1.3;
}

.srv-intro-right>p {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.srv-intro-points {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.srv-intro-point {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--primary);
}

.srv-intro-point svg {
    color: var(--secondary);
    flex-shrink: 0;
}

/* ----------------------------------------------------------------
   Section 3: Bento Grid
   ---------------------------------------------------------------- */
.srv-bento {
    padding: 5rem 0 6rem;
    background: var(--gray-50);
}

.srv-bento-header {
    text-align: center;
    margin-bottom: 3rem;
}

.srv-bento-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.srv-bento-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .srv-bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .srv-bento-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 280px);
    }

    .srv-bento-large {
        grid-column: span 2;
        grid-row: span 1;
    }
}

.srv-bento-card {
    position: relative;
    border-radius: 1.25rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 280px;
    text-decoration: none;
    transition: transform 0.4s ease;
}

.srv-bento-card:hover {
    transform: translateY(-6px);
}

.srv-bento-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.srv-bento-card:hover .srv-bento-bg {
    transform: scale(1.08);
}

.srv-bento-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 31, 51, 0.95) 0%, rgba(10, 31, 51, 0.4) 50%, transparent 100%);
    z-index: 1;
}

.srv-bento-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.srv-bento-num {
    display: inline-block;
    background: var(--secondary);
    color: var(--primary);
    font-size: 0.6875rem;
    font-weight: 800;
    padding: 0.375rem 0.625rem;
    border-radius: 0.375rem;
    margin-bottom: 0.75rem;
}

.srv-bento-content h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.srv-bento-content p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.srv-bento-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: gap 0.3s ease;
}

.srv-bento-card:hover .srv-bento-link {
    gap: 0.75rem;
}

/* ----------------------------------------------------------------
   Section 4: Service Tabs
   ---------------------------------------------------------------- */
.srv-details {
    padding: 5rem 0;
    background: var(--white);
}

.srv-details-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.srv-details-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.srv-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    padding: 0.5rem;
    background: var(--gray-50);
    border-radius: 100px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.srv-tab-btn {
    padding: 0.875rem 1.5rem;
    background: transparent;
    border: none;
    border-radius: 100px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-600);
    cursor: pointer;
    transition: all 0.3s ease;
}

.srv-tab-btn:hover {
    color: var(--primary);
}

.srv-tab-btn.active {
    background: var(--primary);
    color: var(--white);
}

.srv-tab-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.srv-tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.srv-tab-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 992px) {
    .srv-tab-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.srv-tab-image {
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.srv-tab-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.srv-tab-info h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
}

.srv-tab-info>p {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.srv-tab-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.srv-tab-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: var(--primary);
}

.srv-tab-list li::before {
    content: '✓';
    color: var(--secondary);
    font-weight: 700;
}

.srv-tab-stats {
    display: flex;
    gap: 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
    margin-bottom: 1.5rem;
}

.srv-tab-stats>div {
    display: flex;
    flex-direction: column;
}

.srv-tab-stats strong {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
}

.srv-tab-stats span {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ----------------------------------------------------------------
   Section 5: The Difference
   ---------------------------------------------------------------- */
.srv-difference {
    padding: 5rem 0;
    background: var(--primary);
}

.srv-difference-header {
    text-align: center;
    margin-bottom: 3rem;
}

.srv-difference-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.srv-difference-header p {
    color: rgba(255, 255, 255, 0.6);
}

.srv-difference-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 992px) {
    .srv-difference-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.srv-diff-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.srv-diff-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

.srv-diff-icon {
    width: 60px;
    height: 60px;
    background: rgba(198, 151, 82, 0.15);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--secondary);
}

.srv-diff-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.srv-diff-card>p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.srv-diff-tag {
    display: inline-block;
    background: var(--secondary);
    color: var(--primary);
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 0.375rem 0.75rem;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ----------------------------------------------------------------
   Section 6: Process Timeline
   ---------------------------------------------------------------- */
.srv-process {
    padding: 5rem 0;
    background: var(--gray-50);
}

.srv-process-header {
    text-align: center;
    margin-bottom: 3rem;
}

.srv-process-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.srv-process-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.srv-process-timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gray-200);
}

.srv-process-step {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
    position: relative;
}

.srv-step-marker {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
    color: var(--secondary);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.srv-step-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.srv-step-content p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ----------------------------------------------------------------
   Section 7: Quote Wizard
   ---------------------------------------------------------------- */
.srv-quote-section {
    padding: 5rem 0;
    background: var(--white);
}

.srv-quote-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.srv-quote-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.srv-quote-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.srv-quote-header p {
    color: var(--gray-600);
}

/* ----------------------------------------------------------------
   Section 8: Final CTA
   ---------------------------------------------------------------- */
.srv-final-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, #0a2540 100%);
}

.srv-cta-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

@media (min-width: 992px) {
    .srv-cta-inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.srv-cta-text h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.srv-cta-text p {
    color: rgba(255, 255, 255, 0.7);
}

.srv-cta-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.srv-cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.srv-cta-phone svg {
    color: var(--secondary);
}

.srv-cta-phone:hover {
    color: var(--secondary);
}

.srv-cta-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.srv-cta-badges span {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}


/* Hero */
.sp-hero {
    background: linear-gradient(135deg, var(--primary) 0%, #0d2847 100%);
    padding: 10rem 0 5rem;
    text-align: center;
}

.sp-hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.sp-label {
    display: inline-block;
    background: rgba(198, 151, 82, 0.15);
    color: var(--secondary);
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
}

.sp-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.sp-hero p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.sp-hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.sp-hero-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sp-hero-phone:hover {
    color: var(--secondary);
}

.sp-hero-phone svg {
    color: var(--secondary);
}

/* Services List */
.sp-services {
    padding: 5rem 0;
    background: var(--white);
}

.sp-service-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    padding: 3rem 0;
    border-bottom: 1px solid var(--gray-100);
}

.sp-service-block:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sp-service-block:first-child {
    padding-top: 0;
}

@media (min-width: 992px) {
    .sp-service-block {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .sp-service-block.sp-reversed .sp-service-visual {
        order: 2;
    }

    .sp-service-block.sp-reversed .sp-service-info {
        order: 1;
    }
}

.sp-service-visual {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.sp-service-visual img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.sp-service-block:hover .sp-service-visual img {
    transform: scale(1.03);
}

.sp-service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.sp-service-num {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--secondary);
    background: rgba(198, 151, 82, 0.1);
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
}

.sp-service-info h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
    margin: 0;
}

.sp-service-info>p {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.sp-service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.sp-service-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: var(--primary);
}

.sp-service-list li::before {
    content: '✓';
    color: var(--secondary);
    font-weight: 700;
}

.sp-service-meta {
    display: flex;
    gap: 2rem;
    padding: 1.25rem 0;
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
    margin-bottom: 1.5rem;
}

.sp-service-meta>div {
    display: flex;
    flex-direction: column;
}

.sp-service-meta strong {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
}

.sp-service-meta span {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Why Choose Us */
.sp-why {
    padding: 5rem 0;
    background: var(--primary);
}

.sp-why-header {
    text-align: center;
    margin-bottom: 3rem;
}

.sp-why-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.sp-why-header p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.sp-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 992px) {
    .sp-why-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.sp-why-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.sp-why-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

.sp-why-icon {
    width: 56px;
    height: 56px;
    background: rgba(198, 151, 82, 0.15);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--secondary);
}

.sp-why-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.sp-why-card p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

/* Quote Section */
.sp-quote {
    padding: 5rem 0;
    background: var(--gray-50);
}

.sp-quote-header {
    text-align: center;
    margin-bottom: 3rem;
}

.sp-quote-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.sp-quote-header p {
    color: var(--gray-600);
}

/* Final CTA */
.sp-cta {
    padding: 4rem 0;
    background: var(--primary);
    text-align: center;
}

.sp-cta h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.sp-cta>.container>p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.sp-cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.sp-cta-phone {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.sp-cta-phone strong {
    color: var(--secondary);
}


/* Services Page Hero */
.services-hero {
    position: relative;
    background: var(--primary);
    padding: 10rem 0 5rem;
    text-align: center;
    overflow: hidden;
}

.services-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(198, 151, 82, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(198, 151, 82, 0.08) 0%, transparent 40%);
}

.breadcrumb {
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--secondary);
}

.breadcrumb .separator {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 0.75rem;
}

.breadcrumb .current {
    color: var(--secondary);
    font-weight: 600;
}

.services-hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--white);
    margin: 0 auto 1.25rem;
    max-width: 800px;
    line-height: 1.2;
}

.services-hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.services-hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

/* Service Showcase Section */
.service-showcase-section {
    padding: 5rem 0;
    background: var(--white);
}

.service-showcase-card {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 1400px;
    margin: 0 auto 4rem;
    background: var(--gray-50);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

@media (min-width: 1024px) {
    .service-showcase-card {
        grid-template-columns: 1fr 1fr;
    }

    .service-showcase-card.reversed {
        direction: rtl;
    }

    .service-showcase-card.reversed>* {
        direction: ltr;
    }
}

.service-showcase-card:last-child {
    margin-bottom: 0;
}

.service-showcase-image {
    position: relative;
    min-height: 400px;
    overflow: hidden;
}

.service-showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-showcase-card:hover .service-showcase-image img {
    transform: scale(1.05);
}

.service-showcase-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: var(--secondary);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-showcase-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-number {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.service-showcase-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
}

.service-intro {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-types-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.service-type-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.875rem;
    color: var(--primary);
    border: 1px solid var(--gray-200);
}

.service-type-item svg {
    color: var(--secondary);
    width: 16px;
    height: 16px;
}

.service-meta-row {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 1.5rem 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 1.5rem;
}

.service-meta-item {
    display: flex;
    flex-direction: column;
}

.meta-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.meta-value {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

/* Services Benefits Section */
.services-benefits-section {
    padding: 5rem 0;
    background: var(--primary);
}

.services-benefits-header {
    text-align: center;
    margin-bottom: 3rem;
}

.services-benefits-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.services-benefits-header p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.services-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .services-benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    background: rgba(198, 151, 82, 0.15);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: var(--secondary);
}

.benefit-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.benefit-card p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
}

/* Case Study Section */
.case-study-section {
    padding: 5rem 0;
    background: var(--gray-50);
}

.case-study-header {
    text-align: center;
    margin-bottom: 3rem;
}

.case-study-label {
    display: inline-block;
    background: rgba(198, 151, 82, 0.1);
    color: var(--secondary);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.case-study-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.case-study-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .case-study-content {
        grid-template-columns: 1.5fr 1fr;
    }
}

.case-study-main-image {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.case-study-main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.case-study-main-image .image-label {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: var(--secondary);
    color: var(--primary);
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 700;
}

.case-study-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--gray-200);
}

.cs-stat {
    display: flex;
    flex-direction: column;
}

.cs-stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.cs-stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.case-study-testimonial {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--primary);
    line-height: 1.7;
    font-style: italic;
    margin: 0 0 2rem;
    padding: 0;
    border: none;
}

.case-study-testimonial cite {
    display: block;
    margin-top: 1rem;
    font-size: 0.9375rem;
    font-weight: 600;
    font-style: normal;
    color: var(--secondary);
}

/* FAQ Section */
.services-faq-section {
    padding: 5rem 0;
    background: var(--white);
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.faq-header p {
    color: var(--gray-600);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--gray-200);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-question span {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary);
    padding-right: 1rem;
}

.faq-question svg {
    color: var(--secondary);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* Quote Section */
.services-quote-section {
    padding: 5rem 0;
    background: var(--gray-50);
}

.quote-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.quote-section-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.quote-section-header p {
    color: var(--gray-600);
}

/* Final CTA */
.services-cta-final {
    padding: 5rem 0;
    background: var(--primary);
    text-align: center;
}

.cta-final-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.cta-final-content>p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.cta-final-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.cta-phone {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.cta-phone:hover {
    color: var(--white);
}

.cta-phone strong {
    color: var(--secondary);
}

.cta-trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-trust-badges span {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Responsive */
@media (max-width: 768px) {
    .service-showcase-content {
        padding: 2rem;
    }

    .service-meta-row {
        gap: 1.5rem;
    }

    .case-study-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
}

/* ==========================================================================
   SERVICE INNER PAGES (Extensions, Lofts, etc.)
   ========================================================================== */

/* Hero Section */
.si-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.si-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.si-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 31, 51, 0.88) 0%, rgba(10, 31, 51, 0.7) 100%);
}

.si-hero .container {
    position: relative;
    z-index: 1;
    padding-top: 8rem;
    padding-bottom: 4rem;
}

.si-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
}

.si-breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.si-breadcrumb a:hover {
    color: var(--secondary);
}

.si-breadcrumb span {
    color: rgba(255, 255, 255, 0.4);
}

.si-breadcrumb span:last-child {
    color: var(--secondary);
}

.si-hero-content {
    max-width: 700px;
}

.si-hero h1 {
    font-size: clamp(2.25rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.si-hero-content>p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.si-hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Overview Section */
.si-overview {
    padding: 5rem 0;
    background: var(--white);
}

.si-overview-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 992px) {
    .si-overview-grid {
        grid-template-columns: 1.5fr 1fr;
        gap: 4rem;
    }
}

.si-overview-content h2 {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1.25rem;
}

.si-overview-content>p {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.si-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.si-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.si-benefit-item svg {
    color: var(--secondary);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.si-benefit-item span {
    font-size: 0.9375rem;
    color: var(--primary);
    font-weight: 500;
}

.si-stats-card {
    background: var(--gray-50);
    border-radius: 1rem;
    padding: 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.si-stat {
    display: flex;
    flex-direction: column;
}

.si-stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.si-stat-label {
    font-size: 0.8125rem;
    color: var(--gray-600);
    font-weight: 500;
}

/* Section Headers */
.si-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.si-section-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.si-section-header p {
    font-size: 1rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* Types Grid */
.si-types {
    padding: 5rem 0;
    background: var(--gray-50);
}

.si-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.si-type-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-100);
}

.si-type-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.si-type-icon {
    width: 64px;
    height: 64px;
    background: rgba(198, 151, 82, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    margin-bottom: 1.25rem;
}

.si-type-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.si-type-card p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.si-type-link {
    display: inline-flex;
    align-items: center;
    color: var(--secondary);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.si-type-link:hover {
    gap: 0.5rem;
}

/* Process Timeline */
.si-process {
    padding: 5rem 0;
    background: var(--white);
}

.si-process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.si-process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gray-200);
}

@media (max-width: 768px) {
    .si-process-timeline::before {
        left: 20px;
    }
}

.si-process-step {
    display: flex;
    gap: 2rem;
    padding: 1.5rem 0;
    position: relative;
}

.si-step-num {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--secondary);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .si-step-num {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

.si-step-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.si-step-content p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.si-step-duration {
    display: inline-block;
    background: rgba(198, 151, 82, 0.1);
    color: var(--secondary);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.375rem 0.75rem;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Why Choose Us */
.si-why {
    padding: 5rem 0;
    background: var(--primary);
}

.si-why .si-section-header h2 {
    color: var(--white);
}

.si-why .si-section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.si-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.si-why-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.si-why-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

.si-why-icon {
    width: 64px;
    height: 64px;
    background: rgba(198, 151, 82, 0.15);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    margin: 0 auto 1.25rem;
}

.si-why-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.si-why-card p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Pricing Section */
.si-pricing {
    padding: 5rem 0;
    background: var(--gray-50);
}

.si-pricing-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.si-price-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 2.5rem;
    border: 2px solid var(--gray-100);
    position: relative;
    transition: all 0.3s ease;
}

.si-price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.si-price-featured {
    border-color: var(--secondary);
    box-shadow: 0 8px 24px rgba(198, 151, 82, 0.15);
}

.si-price-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.375rem 1rem;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.si-price-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.si-price-range {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 0;
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
    margin-bottom: 1.5rem;
}

.si-price-from {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.si-price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
}

.si-price-includes {
    list-style: none;
    padding: 0;
    margin: 0;
}

.si-price-includes li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.5rem 0;
    font-size: 0.9375rem;
    color: var(--gray-600);
}

.si-price-includes li::before {
    content: '✓';
    color: var(--secondary);
    font-weight: 700;
    flex-shrink: 0;
}

.si-pricing-note {
    background: var(--white);
    border-radius: 0.75rem;
    padding: 1.5rem;
    border-left: 4px solid var(--secondary);
}

.si-pricing-note p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* FAQ Section */
.si-faq {
    padding: 5rem 0;
    background: var(--white);
}

.si-faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.si-faq-item {
    border-bottom: 1px solid var(--gray-200);
}

.si-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.5rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.si-faq-question span {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary);
}

.si-faq-question svg {
    color: var(--secondary);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.si-faq-item.active .si-faq-question svg {
    transform: rotate(180deg);
}

.si-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.si-faq-item.active .si-faq-answer {
    max-height: 300px;
}

.si-faq-answer p {
    padding-bottom: 1.5rem;
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* CTA Section */
.si-cta {
    padding: 5rem 0;
    background: var(--gray-50);
}

.si-cta-content {
    text-align: center;
    margin-bottom: 3rem;
}

.si-cta-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.si-cta-content p {
    font-size: 1rem;
    color: var(--gray-600);
}

/* ==========================================================================
   SERVICES PAGE STYLES
   ========================================================================== */

/* --- Hero Section --- */
.services-hero {
    position: relative;
    padding: 180px 0 100px;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--primary-dark);
    margin-bottom: 0;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?q=80&w=2000&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    opacity: 0.4;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(5, 21, 37, 0.8), rgba(5, 21, 37, 0.95));
}

.page-hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
}

.hero-label {
    display: inline-block;
    color: var(--secondary);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.text-gold {
    color: var(--secondary);
    background: linear-gradient(135deg, #e8c77b 0%, #c69752 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-300);
    max-width: 600px;
    margin: 0 auto;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.7;
    animation: bounce 2s infinite;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--white);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-10px) translateX(-50%);
    }

    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* --- Process Roadmap Section --- */
.process-roadmap-section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.roadmap-visual {
    position: relative;
    margin-top: 4rem;
    padding-bottom: 2rem;
}

.roadmap-line-container {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    transform: translateX(-2px);
    z-index: 1;
}

.roadmap-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.roadmap-path {
    fill: none;
    stroke: var(--secondary);
    stroke-width: 2;
    stroke-dasharray: 10, 10;
    opacity: 0.3;
}

.roadmap-steps {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.roadmap-step {
    display: flex;
    position: relative;
    width: 50%;
}

.step-left {
    align-self: flex-start;
    justify-content: flex-end;
    padding-right: 4rem;
    text-align: right;
}

.step-right {
    align-self: flex-end;
    padding-left: 4rem;
    text-align: left;
}

.step-center {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding-top: 2rem;
}

.roadmap-marker {
    position: absolute;
    top: 0;
    width: 3rem;
    height: 3rem;
    background: var(--primary);
    border: 2px solid var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-weight: 700;
    box-shadow: 0 0 0 8px rgba(9, 32, 57, 1);
    /* Mask line behind */
}

.step-left .roadmap-marker {
    right: -1.5rem;
}

.step-right .roadmap-marker {
    left: -1.5rem;
}

.step-center .roadmap-marker {
    position: relative;
    width: 4rem;
    height: 4rem;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
    background: var(--secondary);
    color: var(--primary);
    box-shadow: 0 0 20px rgba(198, 151, 82, 0.4);
}

.roadmap-content h3 {
    color: var(--white);
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    margin-bottom: 0.5rem;
}

.roadmap-content p {
    color: var(--gray-400);
    font-size: 1rem;
}

/* --- Service List Section --- */
.service-list-section {
    padding: 6rem 0;
    background: var(--white);
}

.service-row {
    display: flex;
    align-items: center;
    gap: 5rem;
    margin-bottom: 8rem;
}

.service-row:last-child {
    margin-bottom: 0;
}

.service-row.reverse {
    flex-direction: row-reverse;
}

.service-visual {
    flex: 1;
    position: relative;
}

.service-img-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transform: rotate(-1deg);
    transition: transform 0.4s ease;
}

.service-row.reverse .service-img-wrapper {
    transform: rotate(1deg);
}

.service-row:hover .service-img-wrapper {
    transform: rotate(0);
}

.service-img-wrapper img {
    transition: transform 0.7s ease;
}

.service-row:hover .service-img-wrapper img {
    transform: scale(1.05);
}

.service-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: var(--secondary);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    box-shadow: var(--shadow-md);
}

.service-info {
    flex: 1;
    padding-top: 1rem;
}

.service-number {
    display: block;
    font-family: var(--font-primary);
    font-size: 4rem;
    font-weight: 800;
    color: rgba(198, 151, 82, 0.15);
    /* Faint Gold */
    line-height: 1;
    margin-bottom: -1rem;
    margin-left: -0.25rem;
}

.service-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--primary);
    margin-bottom: 1rem;
    position: relative;
}

.service-desc {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.service-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.service-features li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--gray-700);
    font-weight: 500;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 6px;
    height: 6px;
    background: var(--secondary);
    border-radius: 50%;
}

.btn-text-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
    transition: gap 0.3s ease;
}

.btn-text-arrow::after {
    content: '→';
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-text-arrow:hover {
    gap: 1rem;
    color: var(--secondary);
}

/* --- Mobile Responsiveness --- */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .process-roadmap-section {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .roadmap-line-container {
        left: 2rem;
        transform: none;
    }

    .roadmap-step {
        width: 100%;
        padding: 0 0 0 4rem;
        text-align: left;
    }

    .step-left {
        align-self: flex-start;
        justify-content: flex-start;
        padding-right: 0;
    }

    .step-right {
        align-self: flex-start;
        padding-left: 4rem;
    }

    .roadmap-marker {
        left: 0.5rem !important;
        right: auto !important;
    }

    .step-center {
        padding-left: 0;
        text-align: center;
    }

    .step-center .roadmap-marker {
        position: relative;
        left: auto !important;
        margin: 0 auto 1rem;
    }

    .service-row,
    .service-row.reverse {
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 5rem;
    }

    .service-img-wrapper {
        transform: rotate(0) !important;
    }
}

@media (max-width: 767px) {
    .services-hero {
        padding: 140px 0 80px;
        min-height: auto;
    }

    .hero-title {
        font-size: 2rem;
    }
}

/* ==========================================================================
   SERVICE LINKS GRID (Premium Sub-links)
   ========================================================================== */
.service-links-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
    .service-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service-link-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
}

.service-link-item::after {
    content: '→';
    position: absolute;
    right: 1.25rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--secondary);
    font-weight: 400;
}

.service-link-item:hover {
    border-color: var(--secondary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
    padding-right: 2.5rem;
}

.service-link-item:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* ==========================================================================
   EXTENSIONS PAGE STYLES
   ========================================================================== */
.image-stack {
    position: relative;
    padding-bottom: 2rem;
    padding-right: 2rem;
}

.image-stack .img-main {
    position: relative;
    z-index: 2;
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
    width: 100%;
}

.image-stack .image-offset {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    height: 60%;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    border-radius: 1rem;
    z-index: 1;
    opacity: 0.15;
}

.stats-grid-mini {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
}

.stat-mini {
    text-align: center;
}

.stat-mini .stat-num {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.stat-mini .stat-desc {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-500);
    font-weight: 600;
}

/* ==========================================================================
   EXTENSIONS PAGE REFINEMENTS
   ========================================================================== */

/* 1. Hero Centering */
.extension-hero .page-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.extension-hero .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
}

/* 2. Intro Image Shadow Fix (Blurry elegant shadow) */
.image-stack .img-main {
    box-shadow: 0 20px 60px -10px rgba(0, 0, 0, 0.5);
    /* Deep soft shadow */
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.1));
}

.image-stack .image-offset {
    display: none;
    /* Remove bold offset block per request */
}

/* 2b. Larger Intro Visual */
@media (min-width: 1024px) {
    .intro-section .intro-visual {
        transform: scale(1.1);
        /* Make image larger */
        margin-left: -2rem;
        /* Pull slightly left to balance */
    }
}

/* 3. Types Grid - Expanding Flex Cards */
@media (min-width: 1024px) {
    .types-section .services-grid {
        display: flex !important;
        grid-template-columns: none !important;
        gap: 1rem;
    }

    .types-section .service-card {
        flex: 1;
        /* Collapsed state */
        min-width: 0;
        /* Allow shrinking */
        transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1);
        transform: none !important;
        /* Disable float hover */
    }

    .types-section .service-card:hover {
        transform: none !important;
        box-shadow: 0 20px 60px -10px rgba(0, 0, 0, 0.5) !important;
    }

    /* Content alignment - All at Bottom Left */
    .types-section .service-card .service-card-content {
        justify-content: flex-end;
        /* Push all to bottom */
        align-items: flex-start;
        /* Left align */
        padding: 2rem;
        text-align: left;
    }

    /* Icon Styling */
    .types-section .service-card-icon {
        margin-bottom: 0.75rem;
        width: 2.5rem;
        height: 2.5rem;
    }

    /* Disable lift animation on link and paragraph */
    .types-section .service-card p,
    .types-section .service-card:hover p,
    .types-section .service-card .service-card-link,
    .types-section .service-card:hover .service-card-link {
        transform: none !important;
    }

    /* Content Visibility Animation */
    .types-section .service-card p,
    .types-section .service-card .service-card-link {
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        transition: all 0.4s ease;
        white-space: nowrap;
    }

    .types-section .service-card h3 {
        white-space: nowrap;
        margin-bottom: 0;
        /* Default collapsed margin */
        transition: margin 0.4s ease;
    }

    /* EXPANDED STATE (First Child OR Hovered) */
    .types-section .service-card:first-child,
    .types-section .services-grid .service-card:hover {
        flex: 3 !important;
    }

    /* Unified Expanded Styles */
    .types-section .service-card:first-child p,
    .types-section .service-card:first-child .service-card-link,
    .types-section .services-grid .service-card:hover p,
    .types-section .services-grid .service-card:hover .service-card-link {
        opacity: 1;
        max-height: 200px;
        white-space: normal;
        transition-delay: 0s;
        /* No delay to prevent jitter */
    }

    /* Spacing for Expanded Content */
    .types-section .service-card:first-child p,
    .types-section .services-grid .service-card:hover p {
        margin-bottom: 0.5rem;
    }

    .types-section .service-card:first-child .service-card-link,
    .types-section .services-grid .service-card:hover .service-card-link {
        margin-bottom: 0;
        margin-top: 0.75rem;
    }

    .types-section .service-card:first-child h3,
    .types-section .services-grid .service-card:hover h3 {
        margin-bottom: 0.5rem;
        white-space: normal;
    }

    /* Stabilize first-child on hover - no changes */
    .types-section .service-card:first-child:hover p,
    .types-section .service-card:first-child:hover .service-card-link,
    .types-section .service-card:first-child:hover h3 {
        transition-delay: 0s;
    }

    /* COLLAPSE LOGIC (When another card is hovered) */
    .types-section .services-grid:hover .service-card:first-child:not(:hover) {
        flex: 1 !important;
    }

    .types-section .services-grid:hover .service-card:first-child:not(:hover) p,
    .types-section .services-grid:hover .service-card:first-child:not(:hover) .service-card-link {
        opacity: 0;
        max-height: 0;
        margin: 0;
        white-space: nowrap;
        transition-delay: 0s;
    }

    .types-section .services-grid:hover .service-card:first-child:not(:hover) h3 {
        margin-bottom: 0;
        /* Reset title margin */
    }
}

/* Base Mobile/Tablet Styles (unchanged mostly, but ensure flex properties don't break functionality) */
.types-section .service-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    min-height: 480px;
    background: var(--dark-surface);
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.types-section .service-card .service-card-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* All content at bottom */
    padding: 1.5rem 2rem;
    margin-top: auto;
    /* Push entire content block to bottom */
}

.types-section .service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.types-section .service-card p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.types-section .service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary);
    font-weight: 600;
    margin-top: 1rem;
    pointer-events: none;
}

/* 4. Process Section Cleanup (No Boxes) */
.process-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 3rem;
    margin-top: 4rem;
    position: relative;
}

@media (min-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }

    /* Connecting Line */
    .process-grid::before {
        content: '';
        position: absolute;
        top: 24px;
        left: 50px;
        right: 50px;
        height: 1px;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.1) 100%);
        z-index: 0;
    }
}

.difference-item {
    background: transparent !important;
    /* Force transparent */
    padding: 0 !important;
    border: none !important;
    text-align: left;
    position: relative;
    z-index: 1;
}

.difference-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: var(--dark-surface);
    border: 1px solid rgba(198, 151, 82, 0.4);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    /* Bolder number */
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 2;
}

.difference-content h3 {
    color: var(--white);
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    margin-bottom: 0.75rem;
}

.difference-content p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    font-size: 0.9375rem;
}

/* 5. Extensions Page - Portfolio Section Light Mode Override */
/* Only applies when inline style sets cream/light background */
.extension-page .portfolio-section,
.portfolio-section[style*="cream"] {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

/* Light mode text colors */
.portfolio-section[style*="cream"] .section-label {
    color: var(--secondary);
}

.portfolio-section[style*="cream"] .section-title,
.portfolio-section[style*="cream"] .portfolio-details h3 {
    color: var(--gray-900);
}

.portfolio-section[style*="cream"] .section-subtitle,
.portfolio-section[style*="cream"] .portfolio-details p {
    color: var(--gray-600);
}

/* Portfolio Stats - Light Mode */
.portfolio-section[style*="cream"] .portfolio-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.portfolio-section[style*="cream"] .portfolio-stat {
    text-align: center;
    padding: 1rem;
}

.portfolio-section[style*="cream"] .portfolio-stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.portfolio-section[style*="cream"] .portfolio-stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Extensions page portfolio details centering */
.portfolio-section .portfolio-details.text-center .portfolio-stats {
    justify-content: center;
}

/* ================================================
   Extensions Page - Before/After Comparison 
   ================================================ */
.portfolio-section[style*="cream"] .portfolio-comparison {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto 2rem;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.portfolio-section[style*="cream"] .comparison-container {
    position: relative;
    width: 100%;
    height: 280px;
    aspect-ratio: auto;
}

@media (min-width: 768px) {
    .portfolio-section[style*="cream"] .comparison-container {
        height: 420px;
    }
}

@media (min-width: 1024px) {
    .portfolio-section[style*="cream"] .comparison-container {
        height: 500px;
    }
}

.portfolio-section[style*="cream"] .comparison-before,
.portfolio-section[style*="cream"] .comparison-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-section[style*="cream"] .comparison-after {
    clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
}

.portfolio-section[style*="cream"] .comparison-slider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: var(--white);
    cursor: ew-resize;
    z-index: 10;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.portfolio-section[style*="cream"] .comparison-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: var(--secondary);
    border: 3px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.portfolio-section[style*="cream"] .comparison-label {
    position: absolute;
    top: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.6);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 2rem;
    backdrop-filter: blur(4px);
    z-index: 5;
}

.portfolio-section[style*="cream"] .label-before {
    left: 1rem;
}

.portfolio-section[style*="cream"] .label-after {
    right: 1rem;
}

/* ==========================================================================
   EXTENSIONS PAGE - UNIQUE PORTFOLIO SECTION (Real Results)
   ========================================================================== */

/* Section Styling */
.extensions-portfolio-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.extensions-portfolio-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(198, 151, 82, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(9, 32, 57, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.extensions-portfolio-section .section-header {
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.extensions-portfolio-section .section-label {
    color: var(--secondary);
}

.extensions-portfolio-section .section-title {
    color: var(--primary);
}

.extensions-portfolio-section .section-subtitle {
    color: var(--gray-600);
}

.extensions-portfolio-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* Before/After Comparison Card */
.extensions-comparison-card {
    background: var(--white);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow:
        0 20px 60px -10px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(9, 32, 57, 0.05);
    margin-bottom: 3rem;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.extensions-comparison-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 30px 80px -10px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(9, 32, 57, 0.08);
}

.extensions-ba-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    -webkit-user-select: none;
    user-select: none;
    cursor: ew-resize;
    background: var(--gray-100);
}

.extensions-ba-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--gray-200);
}

/* Before Image (Full Width) */
.extensions-ba-before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.extensions-ba-before img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* After Image (Clipped by slider position) */
.extensions-ba-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    clip-path: inset(0 0 0 50%);
    z-index: 2;
}

.extensions-ba-after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Before/After Labels */
.extensions-ba-label {
    position: absolute;
    top: 1.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(9, 32, 57, 0.85);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 2rem;
    backdrop-filter: blur(10px);
    z-index: 5;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.extensions-ba-before .extensions-ba-label {
    left: 1.5rem;
}

.extensions-ba-after .extensions-ba-label {
    right: 1.5rem;
}

/* Slider Control */
.extensions-ba-slider {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    transform: translateX(-50%);
    z-index: 10;
    pointer-events: none;
}

.extensions-ba-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: var(--white);
    transform: translateX(-50%);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.extensions-ba-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    background: var(--secondary);
    border: 4px solid var(--white);
    border-radius: 50%;
    display: flex;
    gap: 2px;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow:
        0 4px 20px rgba(198, 151, 82, 0.4),
        0 0 0 8px rgba(198, 151, 82, 0.1);
    cursor: ew-resize;
    pointer-events: auto;
    transition: all 0.3s ease;
}

.extensions-ba-handle:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow:
        0 6px 24px rgba(198, 151, 82, 0.5),
        0 0 0 12px rgba(198, 151, 82, 0.15);
}

.extensions-ba-handle svg {
    width: 20px;
    height: 20px;
}

/* Stats Grid */
.extensions-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.extensions-stat-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow:
        0 10px 30px -5px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(9, 32, 57, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.extensions-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.extensions-stat-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 20px 40px -5px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(9, 32, 57, 0.08);
}

.extensions-stat-card:hover::before {
    transform: scaleX(1);
}

.extensions-stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(198, 151, 82, 0.1) 0%, rgba(198, 151, 82, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    transition: all 0.3s ease;
}

.extensions-stat-card:hover .extensions-stat-icon {
    background: var(--secondary);
    color: var(--white);
    transform: rotate(10deg) scale(1.1);
}

.extensions-stat-icon svg {
    width: 28px;
    height: 28px;
    stroke-width: 2;
}

.extensions-stat-value {
    display: block;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 0.5rem;
    font-family: var(--font-primary);
}

.extensions-stat-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-500);
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .extensions-portfolio-section {
        padding: 4rem 0;
    }

    .extensions-portfolio-section .section-header {
        margin-bottom: 3rem;
    }

    .extensions-ba-container {
        aspect-ratio: 4 / 3;
    }

    .extensions-ba-handle {
        width: 48px;
        height: 48px;
    }

    .extensions-ba-handle svg {
        width: 16px;
        height: 16px;
    }

    .extensions-stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .extensions-stat-card {
        padding: 1.5rem;
    }
}

@media (max-width: 767px) {
    .extensions-portfolio-section {
        padding: 3rem 0;
    }

    .extensions-ba-label {
        font-size: 0.625rem;
        padding: 0.4rem 1rem;
        top: 1rem;
    }

    .extensions-ba-before .extensions-ba-label {
        left: 1rem;
    }

    .extensions-ba-after .extensions-ba-label {
        right: 1rem;
    }

    .extensions-ba-handle {
        width: 40px;
        height: 40px;
        border-width: 3px;
    }

    .extensions-stat-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }

    .extensions-stat-icon svg {
        width: 24px;
        height: 24px;
    }
}

/* ==========================================================================
   EXTENSION PAGES - FIXES FOR LIGHT BACKGROUND COMPATIBILITY
   ========================================================================== */

/* Process grid on light backgrounds */
.section-light .difference-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.section-light .difference-item:hover {
    background: var(--white);
    border-color: var(--secondary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.section-light .difference-content h3 {
    color: var(--primary);
}

.section-light .difference-content p {
    color: var(--gray-600);
}

.section-light .difference-icon span {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.25rem;
}

/* FAQ Accordion Styling */
.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: transparent;
}

.faq-item.active {
    background: var(--gray-50);
}

.faq-question h3 {
    font-size: 1.125rem;
    color: var(--primary);
    margin: 0;
    font-weight: 600;
}

.faq-toggle {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(198, 151, 82, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.faq-toggle svg {
    width: 20px;
    height: 20px;
    color: var(--secondary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    background: var(--secondary);
}

.faq-item.active .faq-toggle svg {
    color: var(--primary);
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
}

/* Dark FAQ variant */
.section-dark .faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.section-dark .faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.section-dark .faq-question h3 {
    color: var(--white);
}

.section-dark .faq-answer p {
    color: rgba(255, 255, 255, 0.7);
}

/* Stats Grid Mini Fixes */
.stats-grid-mini {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-mini {
    text-align: center;
    padding: 1.5rem;
    background: rgba(198, 151, 82, 0.05);
    border-radius: 0.75rem;
    border: 1px solid rgba(198, 151, 82, 0.2);
}

.stat-num {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.stat-desc {
    display: block;
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-question {
        padding: 1.25rem 1.5rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.25rem 1.5rem;
    }

    .stats-grid-mini {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* ==========================================================================
   SERVICE PAGE HERO IMPROVEMENTS - BETTER VISUAL IMPACT
   ========================================================================== */

/* Enhanced hero background - more visible, vibrant */
.extension-hero .page-hero-bg,
.page-hero.extension-hero .page-hero-bg {
    opacity: 1 !important;
    background-size: cover;
    background-position: center 40%;
    filter: brightness(0.7);
}

/* Better overlay gradient - more sophisticated */
.extension-hero .page-hero-overlay,
.page-hero.extension-hero .page-hero-overlay {
    background: linear-gradient(135deg,
            rgba(9, 32, 57, 0.85) 0%,
            rgba(9, 32, 57, 0.75) 50%,
            rgba(198, 151, 82, 0.15) 100%);
}

/* Hero content improvements */
.extension-hero .hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.extension-hero .hero-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    line-height: 1.6;
    max-width: 700px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Stat cards - more premium look */
.hero-stats-inline {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.hero-stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 1.5rem 2rem;
    border-radius: 1rem;
    text-align: center;
    min-width: 160px;
    transition: all 0.3s ease;
}

.hero-stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(198, 151, 82, 0.5);
    transform: translateY(-4px);
}

.hero-stat-item .stat-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(198, 151, 82, 0.3);
}

.hero-stat-item .stat-text {
    display: block;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Responsive improvements */
@media (max-width: 768px) {
    .hero-stats-inline {
        gap: 1rem;
    }

    .hero-stat-item {
        padding: 1.25rem 1.5rem;
        min-width: 140px;
    }

    .hero-stat-item .stat-number {
        font-size: 1.5rem;
    }
}

/* Services Page Hero Enhancement */
.services-hero .page-hero-bg {
    opacity: 1 !important;
    background-size: cover;
    background-position: center;
    filter: brightness(0.7);
}

.services-hero .page-hero-overlay {
    background: linear-gradient(135deg,
            rgba(9, 32, 57, 0.85) 0%,
            rgba(9, 32, 57, 0.75) 50%,
            rgba(198, 151, 82, 0.15) 100%);
}

.services-hero .hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.services-hero .hero-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* ==========================================================================
   DOUBLE STOREY INTRO SECTION - PRODUCTION READY MOBILE-FIRST
   ========================================================================== */

/* Container improvements */
.intro-section .row.align-items-center {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 2rem !important;
    /* Reduced from 4rem */
    align-items: flex-start !important;
}

/* Column styling */
.intro-section .col-lg-6 {
    flex: 1;
    min-width: 280px !important;
    padding: 0 !important;
}

/* Content side - better spacing */
.intro-section .intro-content {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(198, 151, 82, 0.02) 0%, transparent 100%);
    border-radius: 1rem;
}

/* Value comparison box - enhanced */
.intro-section .value-comparison {
    box-shadow: 0 4px 20px rgba(198, 151, 82, 0.1);
    transition: all 0.3s ease;
}

.intro-section .value-comparison:hover {
    box-shadow: 0 8px 30px rgba(198, 151, 82, 0.15);
    transform: translateY(-2px);
}

/* Stats grid - better layout */
.intro-section .stats-grid-mini {
    margin-top: 2rem !important;
}

/* Visual side - double storey stack */
.intro-section .double-storey-stack {
    transition: all 0.3s ease;
}

.intro-section .double-storey-stack:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15) !important;
    transform: translateY(-4px);
}

/* Tablet responsive (768px - 991px) */
@media (max-width: 991px) {
    .intro-section .row.align-items-center {
        gap: 3rem !important;
        flex-direction: column;
    }

    .intro-section .col-lg-6 {
        width: 100%;
        max-width: 100%;
    }

    .intro-section .intro-content {
        padding: 2rem 1.5rem;
    }
}

/* Mobile responsive (max 767px) */
@media (max-width: 767px) {
    .intro-section {
        padding: 3rem 0 !important;
    }

    .intro-section .row.align-items-center {
        gap: 2rem !important;
    }

    .intro-section .intro-content {
        padding: 1.5rem 1rem;
    }

    .intro-section .section-title {
        font-size: 1.75rem !important;
    }

    .intro-section .lead-text {
        font-size: 1rem !important;
    }

    .intro-section .value-comparison {
        padding: 1.5rem !important;
    }

    .intro-section .stats-grid-mini {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    .intro-section .double-storey-stack {
        padding: 1.5rem !important;
    }

    /* Stack floor cards on mobile */
    .double-storey-stack>div[style*="background: linear"] {
        padding: 1.5rem !important;
    }

    .double-storey-stack h4 {
        font-size: 1rem !important;
    }

    .double-storey-stack p {
        font-size: 0.8125rem !important;
    }

    .double-storey-stack svg {
        width: 36px !important;
        height: 36px !important;
    }
}

/* Extra small mobile (max 480px) */
@media (max-width: 480px) {
    .intro-section .container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .intro-section .value-comparison {
        padding: 1.25rem !important;
    }

    .intro-section .double-storey-stack {
        padding: 1.25rem !important;
    }
}

/* ==========================================================================
   DOUBLE STOREY INTRO - PREMIUM MODERN REDESIGN
   ========================================================================== */

/* Section spacing */
.ds-intro-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(198, 151, 82, 0.02) 0%, transparent 100%);
}

/* Content Grid - Two Column */
.ds-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* ===== LEFT SIDE: Value Proposition ===== */
.ds-value-side {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Comparison Card */
.ds-comparison-card {
    background: var(--white);
    border-radius: 1.25rem;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(198, 151, 82, 0.1);
    transition: all 0.3s ease;
}

.ds-comparison-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.ds-comparison-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(198, 151, 82, 0.1);
}

.ds-comparison-header svg {
    color: var(--secondary);
    flex-shrink: 0;
}

.ds-comparison-header h3 {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary);
}

.ds-comparison-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.ds-comparison-label {
    font-size: 0.9375rem;
    color: var(--gray-600);
    font-weight: 500;
}

.ds-comparison-value {
    font-size: 1.375rem;
    font-weight: 800;
}

.ds-value-high {
    color: var(--gray-500);
}

.ds-value-low {
    color: var(--secondary);
}

.ds-comparison-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(198, 151, 82, 0.2), transparent);
    margin: 0.5rem 0;
}

.ds-savings-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.875rem 1.25rem;
    background: linear-gradient(135deg, rgba(198, 151, 82, 0.15), rgba(198, 151, 82, 0.05));
    border-radius: 0.75rem;
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.9375rem;
}

.ds-savings-badge svg {
    flex-shrink: 0;
}

/* Stats Row */
.ds-stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.ds-stat-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--gray-100);
    transition: all 0.3s ease;
}

.ds-stat-card:hover {
    box-shadow: 0 8px 30px rgba(198, 151, 82, 0.15);
    border-color: var(--secondary);
    transform: translateY(-2px);
}

.ds-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.ds-stat-label {
    font-size: 0.8125rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

/* Description */
.ds-description {
    background: rgba(9, 32, 57, 0.02);
    padding: 1.5rem;
    border-radius: 1rem;
    border-left: 3px solid var(--primary);
}

.ds-description p {
    margin: 0;
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 0.9375rem;
}

/* ===== RIGHT SIDE: Floor Visualization ===== */
.ds-visual-side {
    position: sticky;
    top: 2rem;
}

.ds-floors-container {
    background: var(--white);
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(198, 151, 82, 0.1);
}

.ds-floors-label {
    text-align: center;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--secondary);
    margin-bottom: 2rem;
}

/* Floor Cards */
.ds-floor-card {
    position: relative;
    padding: 2rem;
    border-radius: 1.25rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.ds-floor-card:hover {
    transform: translateX(4px);
}

.ds-floor-first {
    background: linear-gradient(135deg, rgba(198, 151, 82, 0.1) 0%, rgba(198, 151, 82, 0.03) 100%);
    border: 2px solid rgba(198, 151, 82, 0.3);
}

.ds-floor-ground {
    background: linear-gradient(135deg, rgba(9, 32, 57, 0.08) 0%, rgba(9, 32, 57, 0.02) 100%);
    border: 2px solid rgba(9, 32, 57, 0.2);
}

.ds-floor-badge {
    position: absolute;
    top: -12px;
    left: 1.5rem;
    background: var(--secondary);
    color: var(--primary);
    padding: 0.375rem 1rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(198, 151, 82, 0.3);
}

.ds-badge-dark {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(9, 32, 57, 0.3);
}

.ds-floor-icon {
    width: 60px;
    height: 60px;
    background: rgba(198, 151, 82, 0.15);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.ds-floor-icon svg {
    color: var(--secondary);
}

.ds-icon-dark {
    background: rgba(9, 32, 57, 0.1);
}

.ds-icon-dark svg {
    color: var(--primary);
}

.ds-floor-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.ds-floor-card p {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.ds-floor-sqm {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--white);
    border-radius: 0.5rem;
    font-weight: 700;
    color: var(--secondary);
    font-size: 0.9375rem;
}

/* Total Card */
.ds-total-card {
    background: linear-gradient(135deg, var(--secondary) 0%, #d4a574 100%);
    padding: 1.5rem;
    border-radius: 1.25rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(198, 151, 82, 0.3);
}

.ds-total-number {
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.ds-total-label {
    font-size: 0.875rem;
    color: rgba(9, 32, 57, 0.8);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 991px) {
    .ds-content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .ds-visual-side {
        position: relative;
        top: 0;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .ds-intro-section {
        padding: 3rem 0;
    }

    .ds-content-grid {
        gap: 2.5rem;
    }

    .ds-comparison-card,
    .ds-floors-container {
        padding: 1.5rem;
    }

    .ds-stats-row {
        grid-template-columns: 1fr;
    }

    .ds-floor-card {
        padding: 1.5rem;
    }

    .ds-stat-number {
        font-size: 1.75rem;
    }

    .ds-total-number {
        font-size: 1.875rem;
    }
}

/* Extra Small */
@media (max-width: 480px) {
    .ds-comparison-card {
        padding: 1.25rem;
    }

    .ds-floors-container {
        padding: 1.25rem;
    }

    .ds-comparison-value {
        font-size: 1.125rem;
    }
}

/* Quote Wizard Popup - Text Color Fix */
#quote-wizard h2 {
    color: #ffffff !important;
}

#quote-wizard .wizard-intro p {
    color: var(--gray-600) !important;
}

/* Fix Quote Wizard inside Contact Page Card */
.contact-form-card .quote-wizard {
    box-shadow: none !important;
    border-radius: 0 !important;
    max-width: 100% !important;
    margin: 0 !important;
    background: transparent !important;
}

/* =========================================
   PREMIUM CINEMATIC HERO (Shared)
   ========================================= */
.services-hero-cinematic {
    position: relative;
    height: 90vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}

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

.hero-bg-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    animation: heroZoom 20s infinite alternate;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4));
    z-index: 2;
}

.hero-content-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
}

.hero-content-centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.section-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.text-gradient {
    background: linear-gradient(135deg, #ffffff 0%, #a8a8a8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Stats Bar */
.hero-stats-bar {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem 3rem;
    gap: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-suffix {
    font-size: 1.25rem;
    color: var(--secondary);
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

/* Scroll Wrapper */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.mouse {
    width: 24px;
    height: 36px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    position: relative;
}

.mouse::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    width: 2px;
    height: 6px;
    background: var(--white);
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

/* Trust Bar Premium */
.trust-bar-premium {
    padding: 2.5rem 0;
    background: #f8f9fa;
    border-top: 1px solid #e5e7eb;
}

.trust-bar-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-label {
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
}

.trust-logos {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.trust-logos img {
    /* Height handled by inline style or default */
    transition: all 0.3s ease;
    filter: grayscale(100%);
    opacity: 0.7;
}

.trust-logos img:hover {
    filter: grayscale(0%) !important;
    opacity: 1 !important;
    transform: translateY(-2px);
}

/* Animations */
@keyframes heroZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        top: 6px;
    }

    100% {
        opacity: 0;
        top: 12px;
    }
}

.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats-bar {
        padding: 1rem;
        width: 100%;
        justify-content: space-around;
        gap: 1rem;
    }

    .stat-divider {
        display: none;
    }

    .trust-bar-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

/* ==========================================================================
   HOMEPAGE SERVICES REDESIGN - PREMIUM GLASSMORPHISM
   ========================================================================== */

.services-premium-section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.services-grid-premium {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .services-grid-premium {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid-premium {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

.service-card-premium {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    height: 480px;
    display: block;
    /* Ensure it works as anchor */
    cursor: pointer;
    isolation: isolate;
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

.service-card-premium:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.service-card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.service-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.service-card-premium:hover .service-card-bg img {
    transform: scale(1.15);
}

.service-card-overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(9, 32, 57, 0.1) 0%,
            rgba(9, 32, 57, 0.6) 50%,
            rgba(9, 32, 57, 0.95) 100%);
    z-index: 1;
}

.service-card-content-premium {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem;
    z-index: 2;
    transform: translateY(80px);
    transition: transform 0.5s ease;
}

.service-card-premium:hover .service-card-content-premium {
    transform: translateY(0);
}

.service-icon-wrapper {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--secondary);
    transition: all 0.5s ease;
}

.service-card-premium:hover .service-icon-wrapper {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
    transform: scale(1.1);
}

.service-card-content-premium h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.service-card-content-premium p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.1s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-card-premium:hover .service-card-content-premium p {
    opacity: 1;
    transform: translateY(0);
}

.service-card-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.2s;
}

.service-card-premium:hover .service-card-link-btn {
    opacity: 1;
    transform: translateY(0);
    color: var(--white);
}

/* Smooth Scroll Reveal (Matches About Page) */
.reveal.reveal-smooth {
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* ==========================================================================
   PORTFOLIO PAGE STYLES
   ========================================================================== */

.portfolio-section {
    padding: 4rem 0 6rem;
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.portfolio-filter-btn {
    padding: 0.75rem 2rem;
    border: 1px solid rgba(9, 32, 57, 0.1);
    background: transparent;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.portfolio-filter-btn:hover,
.portfolio-filter-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(9, 32, 57, 0.2);
}

.portfolio-grid-premium {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .portfolio-grid-premium {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .portfolio-grid-premium {
        grid-template-columns: repeat(3, 1fr);
    }
}

.portfolio-item-premium {
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    height: 400px;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
}

/* For filtering animation */
.portfolio-item-premium.hidden {
    display: none;
}

.portfolio-item-premium:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.portfolio-img-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.portfolio-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.portfolio-item-premium:hover .portfolio-img-wrapper img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(9, 32, 57, 0.9) 0%, rgba(9, 32, 57, 0.4) 50%, rgba(9, 32, 57, 0) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
}

.portfolio-item-premium:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-content {
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.portfolio-item-premium:hover .portfolio-content {
    transform: translateY(0);
}

.project-category {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.project-title {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    opacity: 0.9;
    transition: gap 0.3s ease;
}

.project-link:hover {
    gap: 0.75rem;
    color: var(--secondary);
}

/* ==========================================================================
   PORTFOLIO PAGE - PREMIUM STYLES
   ========================================================================== */

/* Hero - Centered */
.page-hero-portfolio .page-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.page-hero-portfolio .hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

.page-hero-portfolio .hero-subtitle {
    max-width: 600px;
    margin: 0 auto;
}

/* Main Section */
.portfolio-main-section {
    padding: 5rem 0 6rem;
    background: var(--gray-50);
}

/* Filter Tabs - Premium Pills */
.portfolio-filter-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.portfolio-tab-btn {
    padding: 0.875rem 1.75rem;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-600);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.portfolio-tab-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(9, 32, 57, 0.1);
}

.portfolio-tab-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(9, 32, 57, 0.25);
}

/* Portfolio Grid - Masonry Style */
.portfolio-masonry-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .portfolio-masonry-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .portfolio-masonry-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

/* Portfolio Card */
.portfolio-card {
    position: relative;
    display: block;
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    text-decoration: none;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.portfolio-card.hidden {
    display: none;
}

/* Card Image */
.portfolio-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.portfolio-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-card:hover .portfolio-card-img img {
    transform: scale(1.1);
}

/* Card Overlay */
.portfolio-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(9, 32, 57, 0.95) 0%,
            rgba(9, 32, 57, 0.5) 40%,
            rgba(9, 32, 57, 0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-card:hover .portfolio-card-overlay {
    opacity: 1;
}

/* Card Content */
.portfolio-card-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--secondary);
    margin-bottom: 0.5rem;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.05s;
}

.portfolio-card:hover .portfolio-card-tag {
    transform: translateY(0);
}

.portfolio-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 1rem;
    line-height: 1.2;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}

.portfolio-card:hover .portfolio-card-title {
    transform: translateY(0);
}

.portfolio-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.15s, gap 0.3s ease;
}

.portfolio-card:hover .portfolio-card-link {
    transform: translateY(0);
}

.portfolio-card-link:hover {
    gap: 0.75rem;
    color: var(--secondary);
}

/* ==========================================================================
   PORTFOLIO LIGHTBOX
   ========================================================================== */
.portfolio-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.portfolio-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(9, 32, 57, 0.95);
    backdrop-filter: blur(10px);
}

.lightbox-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}

.lightbox-image-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.lightbox-image {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 0.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: lightboxFadeIn 0.3s ease;
}

@keyframes lightboxFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lightbox-caption {
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0.5rem;
}

.lightbox-counter {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    font-weight: 500;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--white);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.lightbox-close {
    top: 1rem;
    right: 1rem;
}

.lightbox-prev {
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-prev:hover {
    transform: translateY(-50%) scale(1.1);
}

.lightbox-next {
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next:hover {
    transform: translateY(-50%) scale(1.1);
}

@media (max-width: 768px) {

    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
    }

    .lightbox-prev svg,
    .lightbox-next svg {
        width: 24px;
        height: 24px;
    }

    .lightbox-close {
        width: 40px;
        height: 40px;
    }
}

/* CTA Section Fix */
.cta-section {
    position: relative;
    padding: 6rem 0;
    background: var(--primary);
    overflow: hidden;
}

.cta-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.cta-section .cta-content {
    position: relative;
    z-index: 1;
}

.cta-section .cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-section .cta-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn-outline-white {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.text-gold {
    color: var(--secondary);
}

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

/* ==========================================================================
   PRICING PAGE STYLES
   ========================================================================== */

/* Hero */
.page-hero-pricing .page-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Quote CTA Card */
.pricing-cta-section {
    padding: 0;
    margin-top: -4rem;
    position: relative;
    z-index: 10;
}

.pricing-cta-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 2.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    flex-wrap: wrap;
}

.pricing-cta-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}

.pricing-cta-icon {
    width: 80px;
    height: 80px;
    background: rgba(198, 151, 82, 0.1);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    flex-shrink: 0;
}

.pricing-cta-text h2 {
    font-size: 1.5rem;
    color: var(--primary);
    margin: 0 0 0.5rem;
}

.pricing-cta-text p {
    color: var(--gray-600);
    margin: 0;
    line-height: 1.5;
}

/* Pricing Sections */
.pricing-section {
    padding: 5rem 0;
}

.pricing-section-alt {
    background: var(--gray-50);
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (min-width: 640px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

/* Pricing Card */
.pricing-card {
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Featured Card */
.pricing-card-featured {
    border: 2px solid var(--secondary);
    transform: scale(1.05);
}

.pricing-card-featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-card-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: var(--white);
    padding: 0.5rem 1.25rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 0 0 0.5rem 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.pricing-card-header {
    padding: 2rem 1.5rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid var(--gray-100);
}

.pricing-card-featured .pricing-card-header {
    padding-top: 3rem;
}

.pricing-card-header h3 {
    font-size: 1.375rem;
    color: var(--primary);
    margin: 0 0 0.5rem;
    font-weight: 700;
}

.pricing-card-desc {
    font-size: 0.875rem;
    color: var(--gray-500);
    font-weight: 500;
}

.pricing-card-body {
    padding: 1.75rem 1.5rem;
    flex-grow: 1;
}

.pricing-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-100);
}

.pricing-option:last-child {
    border-bottom: none;
}

.roof-type {
    font-size: 0.9375rem;
    color: var(--gray-700);
    font-weight: 500;
}

.price {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--primary);
}

.pricing-card-footer {
    padding: 1.25rem 1.5rem;
    background: var(--gray-50);
    text-align: center;
    margin-top: auto;
}

.pricing-note {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.pricing-amount {
    text-align: center;
    padding: 1.5rem 0;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary);
    display: block;
    line-height: 1;
}

.pricing-disclaimer {
    max-width: 800px;
    margin: 3rem auto 0;
    padding: 1.5rem 2rem;
    background: rgba(206, 164, 97, 0.1);
    border-left: 4px solid var(--secondary);
    border-radius: 0.5rem;
}

.pricing-disclaimer p {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--gray-700);
    line-height: 1.6;
}

.pricing-disclaimer strong {
    color: var(--primary);
    font-weight: 700;
}

/* Included Section */
.pricing-included-section {
    padding: 5rem 0;
    background: var(--primary);
}

.pricing-included-section .section-label,
.pricing-included-section .section-title {
    color: var(--white);
}

.pricing-included-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .included-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .included-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 1.5rem;
    }
}

.included-item {
    text-align: center;
}

.included-icon {
    width: 64px;
    height: 64px;
    background: rgba(198, 151, 82, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--secondary);
}

.included-item h4 {
    font-size: 1rem;
    color: var(--white);
    margin: 0 0 0.5rem;
}

.included-item p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 767px) {
    .pricing-cta-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .pricing-cta-content {
        flex-direction: column;
    }
}

/* ==========================================================================
   ADVICE CENTRE PAGE STYLES
   ========================================================================== */

/* Hero */
.page-hero-advice .page-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Featured Section */
.advice-featured-section {
    padding: 5rem 0;
}

.advice-featured-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .advice-featured-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.advice-featured-card {
    display: block;
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    transition: all 0.4s ease;
}

.advice-featured-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.advice-featured-img {
    height: 200px;
    overflow: hidden;
}

.advice-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.advice-featured-card:hover .advice-featured-img img {
    transform: scale(1.1);
}

.advice-featured-content {
    padding: 1.5rem;
}

.advice-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--secondary);
    margin-bottom: 0.75rem;
}

.advice-featured-content h3 {
    font-size: 1.25rem;
    color: var(--primary);
    margin: 0 0 0.75rem;
    line-height: 1.3;
}

.advice-featured-content p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin: 0 0 1rem;
    line-height: 1.5;
}

.advice-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    transition: gap 0.3s ease;
}

.advice-featured-card:hover .advice-read-more {
    gap: 0.75rem;
    color: var(--secondary);
}

/* Articles Section */
.advice-articles-section {
    padding: 5rem 0;
    background: var(--gray-50);
}

/* Topic Filters */
.advice-topic-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.advice-topic-btn {
    padding: 0.625rem 1.25rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gray-600);
    cursor: pointer;
    transition: all 0.3s ease;
}

.advice-topic-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.advice-topic-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* Articles Grid */
.advice-articles-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .advice-articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .advice-articles-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.advice-article-card {
    display: block;
    background: var(--white);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    text-decoration: none;
    transition: all 0.3s ease;
}

.advice-article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.advice-article-card.hidden {
    display: none;
}

.advice-article-img {
    height: 160px;
    overflow: hidden;
}

.advice-article-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.advice-article-card:hover .advice-article-img img {
    transform: scale(1.05);
}

.advice-article-content {
    padding: 1.25rem;
}

.advice-article-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.advice-article-content h4 {
    font-size: 1rem;
    color: var(--primary);
    margin: 0;
    line-height: 1.4;
}

/* Tools Section */
.advice-tools-section {
    padding: 5rem 0;
}

.advice-tools-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .advice-tools-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.advice-tool-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 1rem;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.advice-tool-card:hover {
    border-color: var(--secondary);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.advice-tool-icon {
    width: 80px;
    height: 80px;
    background: rgba(198, 151, 82, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--secondary);
}

.advice-tool-card h3 {
    font-size: 1.25rem;
    color: var(--primary);
    margin: 0 0 0.75rem;
}

.advice-tool-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin: 0 0 1.5rem;
    line-height: 1.5;
}

.btn-secondary-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 2px solid var(--secondary);
    border-radius: 0.5rem;
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary-outline:hover {
    background: var(--secondary);
    color: var(--white);
}

/* ==========================================================================
   SERVICE PAGES - SHARED COMPONENTS
   ========================================================================== */

/* Intro Grid */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 992px) {
    .intro-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.image-stack {
    position: relative;
}

.image-stack .img-main {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.image-stack .image-offset {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--secondary);
    border-radius: 1rem;
    z-index: -1;
}

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

.stat-mini {
    text-align: center;
    padding: 1rem;
    background: rgba(198, 151, 82, 0.08);
    border-radius: 0.5rem;
}

.stat-mini .stat-num {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
}

.stat-mini .stat-desc {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-600);
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--gray-700);
}

.feature-list li svg {
    color: var(--secondary);
    flex-shrink: 0;
}

/* Service Card V2 */
.services-grid-3,
.services-grid-4 {
    display: grid;
    gap: 2rem;
}

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

.services-grid-4 {
    grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 640px) {
    .services-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .services-grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-card-v2 {
    display: block;
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    transition: all 0.4s ease;
}

.service-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.service-card-img {
    height: 200px;
    overflow: hidden;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card-v2:hover .service-card-img img {
    transform: scale(1.1);
}

.service-card-body {
    padding: 1.5rem;
}

.service-card-body h3 {
    font-size: 1.25rem;
    color: var(--primary);
    margin: 0 0 0.75rem;
}

.service-card-body p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.5;
    margin: 0 0 1rem;
}

.service-price {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--secondary);
}

/* Suitability Grid */
.suitability-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .suitability-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.suitability-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
}

.suitability-card h3 {
    font-size: 1.25rem;
    color: var(--white);
    margin: 0 0 1.5rem;
}

.suitability-card.ideal h3 {
    color: #4ade80;
}

.suitability-card.consider h3 {
    color: #f97316;
}

.suitability-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.suitability-card ul li {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.suitability-card ul li:last-child {
    border-bottom: none;
}

/* Scope/Included Grid */
.included-renovation-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .included-renovation-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .included-renovation-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.included-renovation-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--white);
    border-radius: 0.75rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.included-renovation-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.included-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(198, 151, 82, 0.1);
    border-radius: 50%;
    color: var(--secondary);
}

.included-renovation-item h4 {
    font-size: 0.95rem;
    color: var(--primary);
    margin: 0 0 0.5rem;
}

.included-renovation-item p {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin: 0;
    line-height: 1.4;
}

/* Scope Grid (for Renovations) */
.scope-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .scope-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.scope-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.scope-item:hover {
    border-color: var(--secondary);
    background: rgba(198, 151, 82, 0.1);
}

.scope-item h4 {
    font-size: 1rem;
    color: var(--white);
    margin: 0 0 0.5rem;
}

.scope-item p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.benefit-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: var(--secondary);
    background: rgba(198, 151, 82, 0.08);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(198, 151, 82, 0.15);
    border-radius: 50%;
    color: var(--secondary);
}

.benefit-card h4 {
    font-size: 1.1rem;
    color: var(--white);
    margin: 0 0 0.75rem;
}

.benefit-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.5;
}

/* Why Grid (for New Build) */
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .why-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.why-item {
    text-align: center;
    padding: 2rem 1.5rem;
}

.why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(198, 151, 82, 0.12);
    border-radius: 50%;
    color: var(--secondary);
}

.why-item h4 {
    font-size: 1.1rem;
    color: var(--primary);
    margin: 0 0 0.75rem;
}

.why-item p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.5;
}

/* Style Gallery */
.style-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .style-gallery {
        grid-template-columns: repeat(4, 1fr);
    }
}

.style-card {
    position: relative;
    height: 200px;
    border-radius: 0.75rem;
    overflow: hidden;
}

.style-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.style-card:hover img {
    transform: scale(1.1);
}

.style-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(9, 32, 57, 0.9));
}

.style-overlay h4 {
    color: var(--white);
    margin: 0;
    font-size: 1rem;
}

/* Portfolio Showcase (Before/After) */
.portfolio-showcase-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.ba-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    cursor: ew-resize;
}

.ba-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.ba-before,
.ba-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ba-before img,
.ba-after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ba-after {
    clip-path: inset(0 0 0 50%);
}

.ba-label {
    position: absolute;
    bottom: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 0.25rem;
}

.ba-before .ba-label {
    left: 1rem;
}

.ba-after .ba-label {
    right: 1rem;
}

.ba-slider {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    z-index: 10;
    cursor: ew-resize;
}

.ba-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--white);
}

.ba-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    color: var(--primary);
}

.project-stats-bar {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: 0.75rem;
}

.project-stat {
    text-align: center;
}

.project-stat .stat-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.project-stat .stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-500);
}

/* Gallery Section Light Background */
.gallery-section {
    background: var(--gray-50);
}

/* Button Outline White */
.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 0.5rem;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* Responsive Stats Mini */
@media (max-width: 767px) {
    .stats-grid-mini {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-mini .stat-num {
        font-size: 1.25rem;
    }

    .project-stats-bar {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
}

/* ==========================================================================
   ADVICE CENTRE & SINGLE POST STYLES
  /* ===================================
   ARTICLE TEMPLATE STYLES
   =================================== */

/* 1. Article Hero Section */
.article-hero {
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: flex-end;
    padding: 6rem 0 4rem;
    overflow: hidden;
    text-align: center;
}

.article-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.article-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(12, 30, 49, 0.6) 0%,
            rgba(12, 30, 49, 0.85) 60%,
            rgba(12, 30, 49, 0.95) 100%);
    z-index: 2;
}

.article-hero .container {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.article-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white) !important;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    padding: 0.625rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.article-back-link:hover {
    background: rgba(206, 164, 97, 0.2);
    border-color: var(--secondary);
    color: var(--secondary) !important;
    transform: translateX(-4px);
}

.article-back-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
    stroke: currentColor;
}

.article-back-link:hover svg {
    transform: translateX(-2px);
}

.article-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.75rem;
}

.article-sep {
    color: var(--secondary) !important;
    opacity: 0.8;
}

.article-title {
    font-size: clamp(2.25rem, 5vw, 4rem);
    line-height: 1.15;
    margin: 0 auto;
    padding: 0;
    color: var(--white) !important;
    font-weight: 800;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
    max-width: 900px;
    letter-spacing: -0.02em;
    text-align: center;
}



.article-meta span,
.article-meta time {
    color: var(--white) !important;
}

.article-meta span:first-child {
    background: var(--secondary);
    color: var(--primary) !important;
    padding: 0.375rem 0.875rem;
    border-radius: 4px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .article-hero {
        min-height: 50vh;
    }

    .article-title {
        font-size: 2rem;
    }
}

/* 2. Reading Progress Bar */
.reading-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    z-index: 1000;
}

.reading-progress-bar {
    height: 100%;
    background: var(--secondary);
    width: 0%;
    transition: width 0.1s;
}

/* 3. Article Layout */
.article-body-section {
    padding: 4rem 0 6rem;
    background: var(--white);
}

/* Article Layout */
.article-layout {
    display: block;
}

@media (min-width: 1024px) {
    .article-layout {
        display: grid;
        grid-template-columns: 320px 1fr;
        gap: 4rem;
        align-items: stretch;
    }

    .article-sidebar {
        position: relative;
        grid-row: 1;
        grid-column: 1;
    }

    .article-content {
        grid-row: 1;
        grid-column: 2;
    }
}

/* Sidebar */
.article-sidebar {
    order: 2;
}

@media (min-width: 1024px) {
    .article-sidebar {
        order: 1;
    }
}

.sidebar-widget {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.sidebar-widget:last-child {
    border-bottom: none;
}

.widget-title {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-500);
    margin-bottom: 1.25rem;
}

/* TOC */
.article-toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
    border-left: 3px solid var(--gray-200);
}

.article-toc li {
    margin-bottom: 0;
}

.article-toc a {
    text-decoration: none;
    color: var(--gray-600);
    font-size: 0.875rem;
    line-height: 1.6;
    transition: all 0.2s ease;
    display: block;
    padding: 0.5rem 0 0.5rem 1rem;
    border-left: 3px solid transparent;
    margin-left: -3px;
    position: relative;
}

.article-toc a:hover {
    color: var(--secondary);
    background: rgba(198, 151, 82, 0.05);
    border-left-color: var(--secondary);
}

.article-toc a.active {
    color: var(--secondary);
    font-weight: 600;
    border-left-color: var(--secondary);
    background: rgba(198, 151, 82, 0.08);
}

.article-toc .h3-link {
    padding-left: 2rem;
    font-size: 0.8125rem;
    color: var(--gray-500);
}

.widget-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-500);
    margin-bottom: 1rem;
    font-weight: 700;
}

/* Hide toggle controls on desktop by default */
.toc-toggle {
    display: none;
}

.toc-toggle-icon {
    display: none;
}

/* Mobile TOC - Collapsible */
@media (max-width: 1023px) {
    .article-toc {
        background: var(--gray-50);
        border-radius: 0.75rem;
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .toc-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
        padding-bottom: 1rem;
        border-bottom: 2px solid var(--gray-200);
        margin-bottom: 1rem;
    }

    .toc-toggle .widget-title {
        margin: 0;
        cursor: pointer;
    }

    .toc-toggle-icon {
        display: block;
        width: 20px;
        height: 20px;
        color: var(--secondary);
        transition: transform 0.3s ease;
    }

    .toc-toggle.collapsed .toc-toggle-icon {
        transform: rotate(180deg);
    }

    .article-toc ul {
        max-height: 400px;
        overflow-y: auto;
    }

    .article-toc ul.collapsed {
        display: none;
    }

    .article-toc a {
        color: rgba(255, 255, 255, 0.8);
        border-left-color: rgba(206, 164, 97, 0.3);
        padding: 0.625rem 0 0.625rem 1rem;
    }

    .article-toc a:hover,
    .article-toc a.active {
        color: var(--white);
        background: rgba(206, 164, 97, 0.15);
        border-left-color: var(--secondary);
    }

    .article-toc .h3-link {
        color: rgba(255, 255, 255, 0.6);
    }
}

/* Desktop - Sticky Sidebar */
@media (min-width: 1024px) {
    .sticky-sidebar {
        position: -webkit-sticky !important;
        position: sticky !important;
        top: 120px !important;
        max-height: calc(100vh - 140px);
        overflow-y: auto;
        padding-right: 0.5rem;
        will-change: transform;
    }

    .sticky-sidebar::-webkit-scrollbar {
        width: 4px;
    }

    .sticky-sidebar::-webkit-scrollbar-track {
        background: transparent;
    }

    .sticky-sidebar::-webkit-scrollbar-thumb {
        background: var(--gray-300);
        border-radius: 4px;
    }

    .sticky-sidebar::-webkit-scrollbar-thumb:hover {
        background: var(--secondary);
    }

    .article-toc {
        background: var(--white);
        border: 1px solid var(--gray-200);
        border-radius: 0.75rem;
        padding: 1.5rem;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    }

    /* Force TOC visible on desktop */
    .article-toc ul,
    .article-toc ul.collapsed {
        display: block !important;
    }

    .toc-toggle {
        display: none !important;
    }
}

/* Author Profiler */
.author-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-img img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h5 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--primary);
}

.author-info p {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin: 0;
}

/* Share Links */
.share-links {
    display: flex;
    gap: 0.75rem;
}

.share-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gray-100);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.share-link:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-2px);
}

/* 4. Article Content Typography */
.article-content {
    order: 1;
}

@media (min-width: 1024px) {
    .article-content {
        order: 2;
    }
}

.content-body {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray-700);
}

.content-body p {
    margin-bottom: 1.5rem;
}

.content-body h2 {
    font-size: 1.75rem;
    color: var(--primary);
    margin: 3rem 0 1.5rem;
    font-weight: 700;
}

.content-body h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin: 2.5rem 0 1.25rem;
    font-weight: 600;
}

.content-body ul,
.content-body ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.content-body li {
    margin-bottom: 0.5rem;
}

.content-body blockquote {
    border-left: 4px solid var(--secondary);
    background: var(--light-surface);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--primary);
    font-size: 1.25rem;
    border-radius: 0 0.5rem 0.5rem 0;
}

.content-body img {
    max-width: 100%;
    height: auto;
    border-radius: 0.75rem;
    margin: 2rem 0;
    box-shadow: var(--shadow-md);
}

/* CTA Box */
.article-cta-box {
    margin-top: 4rem;
    padding: 3rem;
    background: var(--primary);
    border-radius: 1rem;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.article-cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(198, 151, 82, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.article-cta-box h3 {
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.article-cta-box p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    font-size: 1.125rem;
    position: relative;
    z-index: 1;
}

.article-cta-box .btn {
    position: relative;
    z-index: 1;
}

/* 5. Related Articles */
.related-articles {
    padding-top: 4rem;
    padding-bottom: 4rem;
    background: #f8f9fa;
    /* Light gray */
}

/* 6. Advice Card Styles (Reused/Refined) */
.advice-featured-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .advice-featured-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.advice-featured-card {
    text-decoration: none;
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.advice-featured-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.advice-featured-img {
    height: 240px;
    overflow: hidden;
}

.advice-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.advice-featured-card:hover .advice-featured-img img {
    transform: scale(1.05);
}

.advice-featured-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.advice-tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.advice-featured-content h3 {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.advice-featured-content p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.advice-read-more {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--primary);
    font-size: 0.9375rem;
}

/* 7. Article Grid (Smaller Cards) */
.advice-articles-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 640px) {
    .advice-articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .advice-articles-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.advice-article-card {
    display: flex;
    align-items: center;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 0.75rem;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
}

.advice-article-card:hover {
    border-color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.advice-article-img {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
}

.advice-article-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.advice-article-content {
    padding: 1rem 1.25rem;
}

.advice-article-tag {
    display: block;
    font-size: 0.75rem;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
}

.advice-article-content h4 {
    font-size: 1rem;
    color: var(--primary);
    margin: 0;
    line-height: 1.4;
}

/* 8. Topic Filters */
.advice-topic-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
}

.advice-topic-btn {
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    background: transparent;
    border: 1px solid var(--gray-300);
    color: var(--gray-600);
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.advice-topic-btn:hover,
.advice-topic-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* 9. Tools Section */
.advice-tools-grid {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .advice-tools-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.advice-tool-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    text-align: center;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
    transition: transform 0.3s ease;
}

.advice-tool-card:hover {
    transform: translateY(-5px);
}

.advice-tool-icon {
    width: 80px;
    height: 80px;
    background: var(--light-surface);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.advice-tool-icon svg {
    width: 40px;
    height: 40px;
}

.advice-tool-card h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.advice-tool-card p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

/* Portfolio Page H1 Size Fix */
.page-hero-portfolio .hero-title {
    font-size: 3.5rem;
}

@media (max-width: 768px) {
    .page-hero-portfolio .hero-title {
        font-size: 2.25rem;
    }
}

/* Mouse Glow Effect */
.mouse-glow-section {
    position: relative;
    overflow: hidden;
}

.mouse-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(206, 164, 97, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    z-index: 1;
}

/* Fix CTA Section Label Color */
.cta-section .section-label {
    color: var(--secondary);
}

/* ==========================================================================
   LEGAL PAGES (Privacy Policy, Terms & Conditions)
   ========================================================================== */
.legal-content-section {
    padding: 5rem 0;
    background: var(--white);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
    background: var(--white);
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.legal-content h2 {
    font-size: 1.75rem;
    color: var(--primary);
    margin-top: 3rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--secondary);
    font-weight: 700;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.25rem;
    color: var(--primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 1.25rem;
}

.legal-content ul {
    margin: 1.25rem 0 1.25rem 1.5rem;
    padding: 0;
}

.legal-content li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 0.75rem;
    padding-left: 0.5rem;
}

.legal-content a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: var(--primary);
    text-decoration: underline;
}

.legal-content .contact-details {
    background: var(--gray-50);
    padding: 2rem;
    border-radius: 0.75rem;
    border-left: 4px solid var(--secondary);
    margin-top: 1.5rem;
}

.legal-content .contact-details p {
    margin-bottom: 0.75rem;
}

.legal-content .contact-details p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 2rem 1.5rem;
    }

    .legal-content h2 {
        font-size: 1.5rem;
    }

    .legal-content h3 {
        font-size: 1.125rem;
    }
}