/* -------------------------------------------------------------
 * GLOBAL PROJEKT MANAGER - ULTRA-LUXURY LIGHT BRAND STYLESHEET
 * ------------------------------------------------------------- */

/* --- Custom Variables & Light Theme Tokens --- */
:root {
    --color-bg-deep: #faf7f2;         /* Sweet Luxury Cream */
    --color-bg-card: rgba(253, 251, 246, 0.65); /* Warm Glass Pearl */
    --color-accent: #c89637;          /* Imperial Matte Gold */
    --color-accent-rgb: 200, 150, 55;
    --color-text-primary: #11224E;    /* Deep Obsidian Slate */
    --color-text-muted: #57657a;      /* Medium Slate Gray */
    --color-border: rgba(200, 150, 55, 0.25); /* Thin Gold Line */
    --color-border-hover: rgba(200, 150, 55, 0.75);
    
    --shadow-premium: 0 35px 70px -15px rgba(15, 23, 42, 0.08);
    --shadow-glow: 0 0 45px rgba(200, 150, 55, 0.15);
    --transition-premium: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.3s ease;
}

/* --- Base & Reset Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: auto;
    overflow-x: hidden;
}

body {
    background-color: var(--color-bg-deep);
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--color-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* --- Custom Cursor --- */
.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease;
}

.custom-cursor-inner {
    width: 4px;
    height: 4px;
    background-color: var(--color-accent);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
}

.cursor-hover .custom-cursor {
    width: 50px;
    height: 50px;
    background-color: rgba(200, 150, 55, 0.1);
    border-color: var(--color-accent);
}

/* --- Layout Container & Grids --- */
.container {
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

/* Bespoke Grid Utilities */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -12px;
}

.col-12 { width: 100%; padding: 0 12px; }
.col-6 { width: 50%; padding: 0 12px; }
.col-4 { width: 33.333%; padding: 0 12px; }
.col-3 { width: 25%; padding: 0 12px; }
.col-8 { width: 66.666%; padding: 0 12px; }

@media (max-width: 992px) {
    .col-6, .col-4, .col-3, .col-8 { width: 100%; }
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--color-text-primary);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

/* --- Section Layout --- */
.section {
    padding: 65px 0;
    position: relative;
    z-index: 2;
    scroll-margin-top: 100px;
}

.admin-bar .section {
    scroll-margin-top: 132px;
}

.section-bg {
    background-color: rgba(245, 240, 230, 0.45);
    backdrop-filter: blur(25px) saturate(120%);
}

.section-title-wrapper {
    margin-bottom: 45px;
}

.text-center {
    text-align: center;
}

.title-center {
    max-width: 750px;
    margin: 0 auto 45px;
    text-align: center;
}

.section-subtitle {
    color: #a37b2d; /* Enhanced contrast premium matte gold */
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 20px;
    display: inline-block;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
}

.section-title span {
    background: linear-gradient(135deg, var(--color-text-primary) 30%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 768px) {
    .section { padding: 45px 0; }
    .section-title { font-size: 34px; }
}

/* --- Glassmorphism & Gold Glow Cards --- */
.glass-panel {
    background: var(--color-bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    transition: var(--transition-premium);
}

.gold-glow:hover {
    border-color: var(--color-border-hover);
    box-shadow: var(--shadow-premium), var(--shadow-glow);
    transform: translateY(-8px);
    background: #ffffff;
}

/* --- Premium Navigation Header --- */
.site-header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1380px;
    z-index: 1000;
    background-color: rgba(250, 247, 242, 0.78);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(200, 150, 55, 0.18);
    border-radius: 100px;
    box-shadow: 0 10px 40px -10px rgba(15, 23, 42, 0.05),
                0 0 25px -5px rgba(200, 150, 55, 0.04);
    transition: var(--transition-premium);
}

/* Scroll and Active state styling */
.site-header.scrolled {
    top: 10px;
    background-color: rgba(250, 247, 242, 0.94);
    box-shadow: 0 15px 40px -15px rgba(15, 23, 42, 0.08),
                0 0 35px -5px rgba(200, 150, 55, 0.05);
    border-color: rgba(200, 150, 55, 0.3);
}

@media screen and (max-width: 992px) {
    .site-header.scrolled {
        background-color: rgba(250, 247, 242, 0.78);
        border-color: rgba(200, 150, 55, 0.18);
        box-shadow: 0 10px 40px -10px rgba(15, 23, 42, 0.05),
                    0 0 25px -5px rgba(200, 150, 55, 0.04);
    }
}

/* WordPress Admin Bar Offset */
.admin-bar .site-header {
    top: 52px;
}
.admin-bar .site-header.scrolled {
    top: 42px;
}
@media screen and (max-width: 782px) {
    .admin-bar .site-header {
        top: 66px;
    }
    .admin-bar .site-header.scrolled {
        top: 56px;
    }
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 96px;
    padding: 0 32px;
    transition: var(--transition-premium);
}

.site-header.scrolled .nav-container {
    height: 80px;
}

.site-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--color-text-primary);
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    overflow: hidden;
}

.site-logo:hover {
    opacity: 0.85;
    transform: scale(0.98);
}

/* Logo Shine Effect */
.site-logo::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 120%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.7) 15%,
        rgba(255, 255, 255, 1) 40%,
        rgba(255, 255, 255, 1) 60%,
        rgba(255, 255, 255, 0.7) 85%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-30deg);
    pointer-events: none;
    z-index: 10;
    animation: logo-shine-anim 5s infinite ease-in-out;
}

.site-logo:hover::after {
    animation: logo-shine-hover 2.2s ease-in-out;
}

@keyframes logo-shine-anim {
    0% {
        left: -150%;
    }
    48% {
        left: 150%;
    }
    100% {
        left: 150%;
    }
}

@keyframes logo-shine-hover {
    0% {
        left: -150%;
    }
    100% {
        left: 150%;
    }
}



.site-logo-img {
    height: 76px; /* Optimized height for cropped premium logo */
    width: auto;
    display: block;
    object-fit: contain;
    transition: height var(--transition-fast);
}

.site-header.scrolled .site-logo-img {
    height: 72px; /* Sleek, elegant height for sticky scrolled state */
}

@media screen and (max-width: 768px) {
    .nav-container {
        padding-left: 10px; /* Shifts logo further to the left */
        padding-right: 24px;
    }
    .site-logo-img {
        height: 72px; /* Increased height for mobile logo */
    }
    .site-header.scrolled .site-logo-img {
        height: 66px;
    }
}

.logo-accent {
    color: var(--color-accent);
}

.desktop-menu-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-hover-pill {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 38px;
    background: rgba(200, 150, 55, 0.08);
    border: 1px solid rgba(200, 150, 55, 0.22);
    border-radius: 100px;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-menu-list {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.nav-link-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    text-decoration: none;
    position: relative;
    border-radius: 100px;
    transition: var(--transition-fast);
    border: 1.5px solid transparent; /* prevent layout shift */
    background: transparent;
}

.nav-text {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #000000;
    opacity: 1;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition-fast);
    border-bottom: none !important;
    text-decoration: none !important;
}

.nav-link-custom:hover .nav-text {
    color: var(--color-accent);
}

.nav-link-custom.active {
    background: rgba(200, 150, 55, 0.12) !important;
    border-color: rgba(200, 150, 55, 0.8) !important;
    border-bottom: none !important;
    text-decoration: none !important;
}

.nav-link-custom.active .nav-text {
    opacity: 1;
    color: #000000 !important;
    border-bottom: none !important;
    text-decoration: none !important;
}

.nav-cta {
    padding: 10px 24px;
    font-size: 11px;
    border-radius: 100px;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.08);
    border: 1px solid var(--color-accent);
}
.nav-cta::before {
    border-radius: 100px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(200, 150, 55, 0.05);
    border: 1px solid rgba(200, 150, 55, 0.15);
    transition: var(--transition-fast);
    z-index: 1100;
}

.mobile-menu-toggle:hover {
    background: rgba(200, 150, 55, 0.12);
    border-color: rgba(200, 150, 55, 0.4);
}

.mobile-menu-toggle .bar {
    position: absolute;
    left: 50%;
    margin-left: -12px;
    width: 24px;
    height: 2px;
    background-color: var(--color-text-primary);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.mobile-menu-toggle .bar-1 {
    top: calc(50% - 6px);
}
.mobile-menu-toggle .bar-2 {
    top: 50%;
    transform: translateY(-50%);
}
.mobile-menu-toggle .bar-3 {
    top: calc(50% + 4px);
}

.mobile-nav-drawer {
    display: none;
}

/* --- Buttons & Action Elements --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 36px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 12px;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    position: relative;
    z-index: 1;
    gap: 10px;
    overflow: hidden;
}

.btn > span,
.btn > svg {
    position: relative;
    z-index: 3;
}

.btn::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-accent);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
    pointer-events: none;
    border-radius: 100px;
}

.btn:hover::before {
    transform: translateY(-100%);
}

.btn-primary {
    background: #11224E;
    color: #ffffff;
    border: 1px solid var(--color-accent);
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.12);
}

.btn-primary::before {
    background: var(--color-accent);
}

.btn-primary:hover {
    color: #11224E;
    border-color: var(--color-accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(200, 150, 55, 0.25);
    letter-spacing: 3px;
}

.btn-primary:hover span,
.btn-primary:hover .btn-arrow-icon {
    color: #11224E !important;
}

.btn-arrow-icon {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
}

.btn-primary .btn-arrow-icon {
    color: var(--color-accent);
}

.btn-primary:hover .btn-arrow-icon {
    transform: translateX(4px);
}

.btn-outline {
    background-color: transparent;
    border: 1.5px solid rgba(15, 23, 42, 0.38);
    color: var(--color-text-primary);
}

.btn-outline::before {
    background: #11224E;
}

.btn-outline:hover {
    color: #ffffff;
    border-color: #11224E;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.15);
    letter-spacing: 3px;
}

.btn-outline:hover span,
.btn-outline:hover .btn-arrow-icon {
    color: #ffffff !important;
}

.btn-outline .btn-arrow-icon {
    color: var(--color-text-primary);
}

.btn-outline:hover .btn-arrow-icon {
    transform: translateX(4px);
}

.btn-block {
    display: flex;
    width: 100%;
}
/* --- Hero Section --- */
/* --- Hero Section --- */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 140px;
    padding-bottom: 120px;
    overflow: hidden;
}

/* Serif luxury highlight font */
.serif-italic-gold {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    background: linear-gradient(135deg, var(--color-accent) 10%, #e2c074 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Animated rotating word wrapper and target styles */
.animated-word-wrapper {
    display: inline-block;
    vertical-align: bottom;
    position: relative;
    overflow: hidden;
    line-height: 1.2;
    padding: 0 6px 2px 2px;
    margin-right: -6px;
}

.animated-word-target {
    display: inline-block;
    position: relative;
    will-change: transform, opacity;
    background: linear-gradient(135deg, #c89637 0%, #927534 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    font-weight: 600;
    filter: drop-shadow(0.5px 1px 1.5px rgba(15, 23, 42, 0.18));
}

.typing-cursor {
    display: inline-block;
    color: var(--color-accent);
    font-weight: 300;
    margin-left: 4px;
    animation: cursorHeartbeat 1.6s infinite ease-in-out;
}

@keyframes cursorHeartbeat {
    0%, 100% { 
        opacity: 0.15; 
        transform: scaleY(0.9); 
        filter: drop-shadow(0 0 0 rgba(200, 150, 55, 0));
    }
    50% { 
        opacity: 1; 
        transform: scaleY(1.1); 
        filter: drop-shadow(0 0 8px rgba(200, 150, 55, 0.8));
    }
}

/* Tagline layout styling */
.hero-tagline-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.hero-tag-line {
    width: 35px;
    height: 1px;
    background-color: var(--color-accent);
    display: inline-block;
}

.hero-tagline-wrapper .hero-subtitle {
    margin-bottom: 0;
    padding-left: 0;
}

.hero-tagline-wrapper .hero-subtitle::before {
    display: none;
}

/* Highlights statistics row */
.hero-highlights-row {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 45px;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hl-number {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text-primary);
    line-height: 1.1;
}

.hl-label {
    font-size: 11px;
    color: var(--color-text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.highlight-divider {
    width: 1px;
    height: 30px;
    background-color: rgba(200, 150, 55, 0.2);
}

/* Interactive Overlapping Collage Visuals */
.hero-collage-wrapper {
    position: relative;
    width: 100%;
    max-width: 530px;
    height: 530px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.collage-frame {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    padding: 12px;
    border-radius: 4px;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-premium);
}

.collage-frame.main-frame {
    width: 82%;
    height: 82%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
}

.collage-frame.main-frame .hero-mansion-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
}

.collage-frame.secondary-frame {
    width: 48%;
    height: 48%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 10;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.18), var(--shadow-glow);
}

.collage-frame.secondary-frame .hero-detail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
    display: block;
}

/* Floating Glass Spec Tag */
.floating-glass-tag {
    position: absolute;
    right: -15px;
    bottom: 90px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(200, 150, 55, 0.3);
    border-radius: 4px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 20;
    box-shadow: var(--shadow-premium);
}

.tag-status-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-accent);
    border-radius: 50%;
    animation: statusPulse 2s infinite ease-in-out;
}

.tag-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tag-title {
    font-family: 'Outfit', sans-serif;
    font-size: 8px;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: 1.5px;
}

.tag-value {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: var(--color-text-primary);
}

/* Keyframe Animations */
.float-animation {
    animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

@keyframes statusPulse {
    0%, 100% {
        opacity: 0.4;
        transform: scale(0.9);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
        box-shadow: 0 0 10px rgba(200, 150, 55, 0.6);
    }
}

/* Hover effects for collage */
.hero-collage-wrapper:hover .collage-frame.main-frame {
    transform: scale(0.98);
}

.hero-collage-wrapper:hover .collage-frame.secondary-frame {
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.25), 0 0 35px rgba(200, 150, 55, 0.25);
    border-color: var(--color-accent);
}

/* Blueprint Grid Background Pattern */
.blueprint-grid {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: 
        linear-gradient(to right, rgba(200, 150, 55, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(200, 150, 55, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.hero-bg-glow {
    position: absolute;
    width: 900px;
    height: 900px;
    top: -20%;
    right: -10%;
    background: radial-gradient(circle, rgba(200, 150, 55, 0.07) 0%, rgba(255, 255, 255, 0) 70%);
    filter: blur(80px);
    z-index: 2;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 3;
}

.hero-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1.1;
    will-change: filter, transform, opacity;
}

.hero-visual {
    flex: 0.9;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    will-change: filter, transform, opacity;
}

.hero-image-frame {
    width: 100%;
    max-width: 520px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    padding: 16px;
    border-radius: 4px;
    box-shadow: var(--shadow-premium);
    position: relative;
}

.hero-mansion-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 2px;
    display: block;
}

/* CAD blueprints dimensions & coordinates */
.cad-marker {
    position: absolute;
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: 1px;
    text-transform: uppercase;
    pointer-events: none;
    z-index: 4;
}

.cad-coord {
    top: -30px;
    left: 16px;
}

.cad-dim-h {
    top: 50%;
    right: -45px;
    transform: translateY(-50%) rotate(90deg);
    display: flex;
    align-items: center;
    gap: 8px;
}

.cad-dim-w {
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* CAD line indicators */
.cad-line-h {
    width: 40px;
    height: 1px;
    background-color: var(--color-accent);
    position: relative;
}
.cad-line-h::before, .cad-line-h::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 6px;
    background-color: var(--color-accent);
    top: -3px;
}
.cad-line-h::before { left: 0; }
.cad-line-h::after { right: 0; }

/* Onload fade animations specifically for Hero Section */
.hero-onload-subtitle,
.hero-onload-title,
.hero-onload-desc,
.hero-onload-actions {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-onload-subtitle.visible,
.hero-onload-title.visible,
.hero-onload-desc.visible,
.hero-onload-actions.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-subtitle {
    display: inline-block;
    color: var(--color-accent);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 35px;
    position: relative;
    padding-left: 45px;
}

.hero-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 1px;
    background-color: var(--color-accent);
}

.hero-title {
    font-size: 68px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--color-text-primary);
    margin-bottom: 32px;
    letter-spacing: -2px;
}

.hero-title span {
    background: linear-gradient(135deg, var(--color-text-primary) 20%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 18px;
    color: var(--color-text-muted);
    margin-bottom: 45px;
    max-width: 600px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 25px;
}

@media (max-width: 1200px) {
    .hero-grid { flex-direction: column-reverse; gap: 60px; }
    .hero-visual { width: 100%; max-width: 520px; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 44px; }
    .hero-actions { flex-direction: column; gap: 15px; }
    .hero-mansion-img { height: 350px; }
}

/* --- Stats Counter Section --- */
.stats-section {
    padding: 80px 0;
    position: relative;
    z-index: 5;
    background-color: #11224E; /* Deep midnight navy */
    overflow: hidden;
}

.stats-blueprint-grid {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: 
        linear-gradient(to right, rgba(200, 150, 55, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(200, 150, 55, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    opacity: 0.8;
}

.stats-bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(200, 150, 55, 0.08) 0%, rgba(17, 34, 78, 0) 70%);
    filter: blur(50px);
    z-index: 2;
    pointer-events: none;
}

.stats-section .container {
    position: relative;
    z-index: 3;
}

.stats-grid {
    display: flex;
    gap: 24px;
}

.stat-card {
    flex: 1;
    position: relative;
    padding: 0;
    overflow: hidden;
    background: 
        radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.25) 0%, transparent 60%),
        linear-gradient(to right, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(135deg, #c89637 0%, #e2c074 100%);
    background-size: 100% 100%, 20px 20px, 20px 20px, 100% 100%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    transition: var(--transition-premium);
    z-index: 1;
}

/* Luxury warm glow overlay on hover */
.stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.35) 0%, transparent 60%),
        linear-gradient(to right, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(135deg, #e2c074 0%, #ffebbc 100%);
    background-size: 100% 100%, 20px 20px, 20px 20px, 100% 100%;
    opacity: 0;
    transition: var(--transition-premium);
    z-index: 1;
}

/* Diagonal reflection sweep */
.stat-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 80px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transform: skewX(-20deg);
    transition: left 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
    pointer-events: none;
}

.stat-card-inner {
    padding: 45px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 3;
}

/* CAD Crosshairs */
.cad-crosshair {
    width: 10px;
    height: 10px;
    position: absolute;
    border: 1px solid rgba(17, 34, 78, 0.25);
    opacity: 0.45;
    transition: var(--transition-premium);
    z-index: 4;
}

.cad-crosshair.top-left {
    top: 8px;
    left: 8px;
    border-right: none;
    border-bottom: none;
}

.cad-crosshair.top-right {
    top: 8px;
    right: 8px;
    border-left: none;
    border-bottom: none;
}

.cad-crosshair.bottom-left {
    bottom: 8px;
    left: 8px;
    border-right: none;
    border-top: none;
}

.cad-crosshair.bottom-right {
    bottom: 8px;
    right: 8px;
    border-left: none;
    border-top: none;
}

/* Card Header */
.stat-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding: 0 5px;
}

.stat-index {
    font-family: 'Outfit', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: #11224E;
    letter-spacing: 1.5px;
    opacity: 0.8;
}

.stat-cad-coord {
    font-family: 'Outfit', sans-serif;
    font-size: 9px;
    color: #11224E;
    opacity: 0.6;
    letter-spacing: 0.5px;
}

/* Icon Box */
.stat-icon-box {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: rgba(17, 34, 78, 0.05);
    border: 1px solid rgba(17, 34, 78, 0.1);
    margin-bottom: 24px;
    color: #11224E;
    transition: var(--transition-premium);
    display: flex;
    justify-content: center;
    align-items: center;
}

.stat-icon {
    width: 32px;
    height: 32px;
    stroke-width: 1.5;
    transition: var(--transition-premium);
}

.stat-num {
    font-family: 'Outfit', sans-serif;
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #11224E;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(17, 34, 78, 0.03);
}

.stat-divider {
    height: 1px;
    width: 30px;
    background: rgba(17, 34, 78, 0.25);
    margin: 0 auto 15px;
    transition: var(--transition-premium);
}

.stat-label {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    color: #11224E;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 4px;
}

.stat-sub-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    color: rgba(17, 34, 78, 0.7);
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* Interactive Hover States */
.stat-card:hover {
    border-color: rgba(255, 255, 255, 0.45);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55), 0 0 30px rgba(200, 150, 55, 0.35);
    transform: translateY(-12px) scale(1.03);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover::after {
    left: 180%;
}

.stat-card:hover .cad-crosshair {
    opacity: 0.9;
    border-color: #11224E;
}

.stat-card:hover .cad-crosshair.top-left {
    top: 18px;
    left: 18px;
}

.stat-card:hover .cad-crosshair.top-right {
    top: 18px;
    right: 18px;
}

.stat-card:hover .cad-crosshair.bottom-left {
    bottom: 18px;
    left: 18px;
}

.stat-card:hover .cad-crosshair.bottom-right {
    bottom: 18px;
    right: 18px;
}

.stat-card:hover .stat-icon-box {
    background: rgba(17, 34, 78, 0.1);
    border-color: rgba(17, 34, 78, 0.2);
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.stat-card:hover .stat-divider {
    width: 70px;
    background-color: #11224E;
}

@media (max-width: 992px) {
    .stats-section { padding: 60px 0; }
    .stats-grid { flex-wrap: wrap; gap: 20px; }
    .stat-card { min-width: calc(50% - 10px); }
}

@media (max-width: 576px) {
    .stat-card { min-width: 100%; }
}

/* --- Founder Quote / Philosophy Section Redesign --- */
.philosophy-section {
    position: relative;
    overflow: hidden;
    background-color: var(--color-bg-deep);
    padding: 140px 0;
}

.philosophy-blueprint-grid {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: 
        linear-gradient(to right, rgba(200, 150, 55, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(200, 150, 55, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    opacity: 0.85;
}

.philosophy-bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    top: 30%;
    left: 20%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(200, 150, 55, 0.06) 0%, rgba(255, 255, 255, 0) 70%);
    filter: blur(80px);
    z-index: 2;
    pointer-events: none;
}

.philosophy-bg-glow-secondary {
    position: absolute;
    width: 500px;
    height: 500px;
    bottom: 10%;
    right: 15%;
    background: radial-gradient(circle, rgba(200, 150, 55, 0.04) 0%, rgba(255, 255, 255, 0) 70%);
    filter: blur(70px);
    z-index: 2;
    pointer-events: none;
}

/* CAD background accent lines */
.cad-bg-line {
    position: absolute;
    background-color: rgba(200, 150, 55, 0.1);
    z-index: 2;
    pointer-events: none;
}
.cad-bg-line.horizontal-1 {
    top: 15%;
    left: 0;
    width: 100%;
    height: 1px;
}
.cad-bg-line.horizontal-2 {
    bottom: 20%;
    left: 0;
    width: 100%;
    height: 1px;
}
.cad-bg-line.vertical-1 {
    left: 45%;
    top: 0;
    width: 1px;
    height: 100%;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 3;
}

.philosophy-visual {
    position: relative;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.portrait-offset-bg {
    position: absolute;
    width: 100%;
    max-width: 360px;
    height: 450px;
    background-color: transparent;
    border: 1px solid rgba(200, 150, 55, 0.35);
    border-radius: 4px;
    top: 25px;
    left: -20px;
    z-index: 1;
    transition: var(--transition-premium);
}

.portrait-frame {
    width: 100%;
    max-width: 360px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    padding: 12px;
    border-radius: 4px;
    box-shadow: var(--shadow-premium);
    position: relative;
    z-index: 2;
    transition: var(--transition-premium);
    overflow: hidden;
}

.portrait-cad-corner {
    position: absolute;
    width: 16px;
    height: 16px;
    border: 1px solid var(--color-accent);
    opacity: 0.45;
    z-index: 5;
    transition: var(--transition-premium);
    pointer-events: none;
}

.portrait-cad-corner.top-left { top: 12px; left: 12px; border-right: none; border-bottom: none; }
.portrait-cad-corner.top-right { top: 12px; right: 12px; border-left: none; border-bottom: none; }
.portrait-cad-corner.bottom-left { bottom: 12px; left: 12px; border-right: none; border-top: none; }
.portrait-cad-corner.bottom-right { bottom: 12px; right: 12px; border-left: none; border-top: none; }



.portrait-role-badge {
    position: absolute;
    bottom: 22px;
    right: 22px;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(200, 150, 55, 0.4);
    border-radius: 3px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: var(--transition-premium);
}

.badge-dot {
    width: 6px;
    height: 6px;
    background-color: var(--color-accent);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--color-accent);
}

.badge-role {
    font-family: 'Outfit', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
}

.founder-img-wrapper {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 2px;
    overflow: hidden;
    z-index: 2;
}

.founder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.founder-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.25) 0%, rgba(15, 23, 42, 0) 50%);
    pointer-events: none;
    z-index: 3;
}

/* Shimmer scan effect across the portrait */
.portrait-scanner {
    position: absolute;
    width: 100%;
    height: 10px;
    background: linear-gradient(to bottom, rgba(200, 150, 55, 0) 0%, rgba(200, 150, 55, 0.25) 50%, rgba(200, 150, 55, 0) 100%);
    top: -10px;
    left: 0;
    z-index: 4;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.philosophy-visual:hover .portrait-scanner {
    opacity: 1;
    animation: scanAnim 3s linear infinite;
}

@keyframes scanAnim {
    0% { top: -10px; }
    100% { top: 460px; }
}

/* Hover effects for visual */
.philosophy-visual:hover .portrait-frame {
    transform: translateY(-5px) rotateY(-3deg) rotateX(2deg);
    border-color: var(--color-accent);
    box-shadow: 0 45px 85px -15px rgba(15, 23, 42, 0.15);
}

.philosophy-visual:hover .founder-img {
    transform: scale(1.05);
}

.philosophy-visual:hover .portrait-offset-bg {
    transform: translateY(10px) translateX(-10px);
    border-color: var(--color-accent);
    box-shadow: var(--shadow-glow);
}

.philosophy-visual:hover .portrait-cad-corner.top-left { top: 6px; left: 6px; opacity: 1; }
.philosophy-visual:hover .portrait-cad-corner.top-right { top: 6px; right: 6px; opacity: 1; }
.philosophy-visual:hover .portrait-cad-corner.bottom-left { bottom: 6px; left: 6px; opacity: 1; }
.philosophy-visual:hover .portrait-cad-corner.bottom-right { bottom: 6px; right: 6px; opacity: 1; }



/* Right Column: Premium Glass Card Redesign */
.philosophy-content-wrapper {
    display: flex;
    flex-direction: column;
}

.philosophy-glass-card {
    background: rgba(253, 251, 246, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(200, 150, 55, 0.2);
    border-radius: 8px;
    padding: 50px;
    box-shadow: 0 35px 80px -20px rgba(200, 150, 55, 0.08);
    position: relative;
    transition: var(--transition-premium);
}

.philosophy-glass-card:hover {
    border-color: rgba(200, 150, 55, 0.45);
    box-shadow: 
        0 40px 90px -20px rgba(200, 150, 55, 0.15),
        0 0 50px rgba(200, 150, 55, 0.05);
    transform: translateY(-3px);
}

.philosophy-tagline-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.philosophy-tag-line {
    width: 45px;
    height: 1px;
    background: linear-gradient(to right, var(--color-accent), transparent);
    display: inline-block;
}

.philosophy-tagline-wrapper .philosophy-subtitle {
    margin-bottom: 0;
    padding-left: 0;
}

.philosophy-subtitle {
    color: var(--color-accent);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 6px;
}

.quote-wrapper {
    position: relative;
    margin-bottom: 40px;
}

.quote-icon-svg {
    position: absolute;
    top: -45px;
    left: -35px;
    pointer-events: none;
    transition: var(--transition-premium);
    z-index: 1;
    opacity: 0.06;
}

.philosophy-glass-card:hover .quote-icon-svg {
    transform: rotate(-10deg) scale(1.05);
    opacity: 0.09;
}

.philosophy-text {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 26px;
    font-style: italic;
    font-weight: 500;
    line-height: 1.7;
    color: var(--color-text-primary);
    position: relative;
    z-index: 2;
    letter-spacing: -0.1px;
    border: none;
    padding: 0;
    margin: 0;
}

.philosophy-dropcap {
    float: left;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 80px;
    font-weight: 600;
    line-height: 52px;
    padding-top: 6px;
    padding-right: 14px;
    padding-left: 3px;
    color: var(--color-accent);
    background: linear-gradient(135deg, var(--color-accent) 0%, #e2c074 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Beautiful word highlighting */
.text-highlight {
    position: relative;
    color: var(--color-text-primary);
    font-weight: 600;
    z-index: 1;
    transition: color 0.3s ease;
}

.text-highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 4px;
    background: rgba(200, 150, 55, 0.12);
    z-index: -1;
    transition: height 0.3s ease, background 0.3s ease;
}

.philosophy-glass-card:hover .text-highlight {
    color: #8c6a2b;
}

.philosophy-glass-card:hover .text-highlight::after {
    height: 8px;
    background: rgba(200, 150, 55, 0.22);
}

.card-divider {
    height: 1px;
    background: linear-gradient(to right, rgba(200, 150, 55, 0.2), rgba(200, 150, 55, 0.05));
    margin-bottom: 35px;
}

.philosophy-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.founder-meta-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.founder-stamp-icon {
    display: inline-flex;
    color: var(--color-accent);
    opacity: 0.8;
}

.founder-ver-tag {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-text-muted);
    letter-spacing: 1.5px;
}

.founder-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-text-primary);
    letter-spacing: -0.3px;
}

.founder-title {
    font-size: 11px;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-top: 3px;
}

.philosophy-signature-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
    position: relative;
}



.founder-signature-line {
    width: 140px;
    height: 1px;
    background: linear-gradient(to left, rgba(200, 150, 55, 0.4) 0%, rgba(200, 150, 55, 0) 100%);
    position: absolute;
    bottom: -2px;
    right: 0;
}

.founder-signature-svg {
    transition: var(--transition-premium);
    transform: rotate(-1deg);
    z-index: 2;
}

/* SVG Self-Drawing Signature Logic */
.founder-signature-svg path.signature-path-1 {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    transition: stroke-dashoffset 2s cubic-bezier(0.4, 0, 0.2, 1);
}

.founder-signature-svg path.signature-path-2 {
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    transition: stroke-dashoffset 1.5s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
}

/* Trigger animation when section gets .visible class from IntersectionObserver */
.philosophy-section.visible .founder-signature-svg path.signature-path-1,
.philosophy-content-wrapper.visible .founder-signature-svg path.signature-path-1,
.philosophy-glass-card.visible .founder-signature-svg path.signature-path-1 {
    stroke-dashoffset: 0;
}

.philosophy-section.visible .founder-signature-svg path.signature-path-2,
.philosophy-content-wrapper.visible .founder-signature-svg path.signature-path-2,
.philosophy-glass-card.visible .founder-signature-svg path.signature-path-2 {
    stroke-dashoffset: 0;
}

.philosophy-glass-card:hover .founder-signature-svg {
    transform: rotate(-3deg) scale(1.04);
    filter: drop-shadow(0 4px 12px rgba(200, 150, 55, 0.25));
}

@media (max-width: 1024px) {
    .philosophy-section {
        padding: 100px 0;
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    
    .philosophy-glass-card {
        padding: 40px;
    }
    
    .cad-bg-line.vertical-1 {
        display: none;
    }
    
    .quote-icon-svg {
        left: -15px;
        top: -35px;
    }
}

@media (max-width: 576px) {
    .philosophy-glass-card {
        padding: 30px 20px;
    }
    
    .philosophy-text {
        font-size: 20px;
    }
    
    .philosophy-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }
    
    .philosophy-signature-wrapper {
        align-items: flex-start;
        width: 100%;
    }
    
    .founder-signature-line {
        left: 0;
        right: auto;
        background: linear-gradient(to right, rgba(200, 150, 55, 0.4) 0%, rgba(200, 150, 55, 0) 100%);
    }
}


/* --- Services Grid Section --- */
.services-blueprint-grid {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: 
        linear-gradient(to right, rgba(200, 150, 55, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(200, 150, 55, 0.03) 1px, transparent 1px);
    background-size: 45px 45px;
    pointer-events: none;
}

.services-bg-glow {
    position: absolute;
    width: 700px;
    height: 700px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(200, 150, 55, 0.04) 0%, rgba(255, 255, 255, 0) 70%);
    filter: blur(80px);
    z-index: 2;
    pointer-events: none;
}

.services-grid {
    display: flex;
    align-items: stretch;
    gap: 28px;
    position: relative;
    z-index: 3;
}



.service-card {
    flex: 1;
    padding: 55px 40px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
    transition: var(--transition-premium);
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 10px 40px -10px rgba(15, 23, 42, 0.04),
                0 0 25px -5px rgba(200, 150, 55, 0.03);
}

.service-hover-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0;
    background-size: cover;
    background-position: center;
    transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    transform: scale(1.05);
}

.service-hover-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.82) 0%, rgba(7, 10, 19, 0.95) 100%);
    z-index: 2;
}

.service-card > *:not(.service-hover-bg) {
    position: relative;
    z-index: 3;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--color-accent);
    transition: var(--transition-premium);
    z-index: 4;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-accent);
    box-shadow: 0 30px 60px -15px rgba(200, 150, 55, 0.22),
                0 0 45px rgba(200, 150, 55, 0.08);
}

.service-card:hover::after {
    width: 100%;
}

.service-card:hover .service-hover-bg {
    opacity: 1;
    transform: scale(1);
}

.service-card:hover .service-card-title {
    color: #ffffff !important;
}

.service-card:hover .service-card-desc {
    color: rgba(255, 255, 255, 0.7) !important;
}

.service-card:hover .service-features li {
    color: rgba(255, 255, 255, 0.85) !important;
}

.service-card:hover .service-action-wrapper {
    color: var(--color-accent) !important;
}

.service-card:hover .service-features {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.service-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    font-size: 11px;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: 2px;
    font-family: 'Outfit', sans-serif;
    opacity: 0.65;
    transition: var(--transition-premium);
}

.service-card:hover .service-header {
    opacity: 1;
}

.service-icon-wrapper {
    position: relative;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 35px;
    color: var(--color-accent);
    transition: var(--transition-premium);
    background: rgba(200, 150, 55, 0.03);
    border-radius: 50%;
    border: 1px solid rgba(200, 150, 55, 0.15);
}

.service-icon-wrapper::before {
    content: '';
    position: absolute;
    inset: -4px;
    border: 1px dashed rgba(200, 150, 55, 0.35);
    border-radius: 50%;
    transition: var(--transition-premium);
}

.service-card:hover .service-icon-wrapper {
    background: var(--color-accent);
    color: #ffffff;
    border-color: var(--color-accent);
    box-shadow: 0 10px 25px rgba(200, 150, 55, 0.3);
}

.service-card:hover .service-icon-wrapper::before {
    transform: rotate(90deg);
    border-color: var(--color-accent);
    inset: -6px;
}

.service-card:hover .cad-crosshair {
    opacity: 1;
    border-color: var(--color-accent);
}

.service-card:hover .cad-crosshair.top-left {
    top: 16px;
    left: 16px;
}

.service-card:hover .cad-crosshair.top-right {
    top: 16px;
    right: 16px;
}

.service-card:hover .cad-crosshair.bottom-left {
    bottom: 16px;
    left: 16px;
}

.service-card:hover .cad-crosshair.bottom-right {
    bottom: 16px;
    right: 16px;
}

.service-icon {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-text-primary);
    margin-bottom: 15px;
    transition: var(--transition-fast);
}

.service-card:hover .service-card-title {
    color: var(--color-accent);
}

.service-card-desc {
    color: var(--color-text-muted);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    border-top: 1px solid rgba(200, 150, 55, 0.1);
    padding-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--color-text-primary);
    font-weight: 500;
}

.bullet-icon {
    width: 18px;
    height: 18px;
    color: var(--color-accent);
    flex-shrink: 0;
}

.service-action-wrapper {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-text-primary);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    transition: var(--transition-fast);
}

.service-action-arrow {
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.arrow-icon {
    width: 16px;
    height: 16px;
}

.service-card:hover .service-action-wrapper {
    color: var(--color-accent);
}

.service-card:hover .service-action-arrow {
    transform: translateX(6px);
}

@media (max-width: 992px) {
    .services-grid { flex-direction: column; }
}

/* --- Portfolio Showcase (Swiper Slider Redesign) --- */
.portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 25px;
}

.portfolio-title-group {
    max-width: 700px;
}

.portfolio-controls-group {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 5px;
}

.portfolio-counter {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.portfolio-counter .current-slide {
    color: var(--color-text-primary);
    font-size: 18px;
    font-weight: 700;
}

.portfolio-counter .counter-separator {
    color: rgba(200, 150, 55, 0.4);
}

.portfolio-counter .total-slides {
    color: var(--color-text-muted);
}

.portfolio-nav-buttons {
    display: flex;
    gap: 12px;
}

.portfolio-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    color: var(--color-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-premium);
}

.portfolio-nav-btn:hover {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(200, 150, 55, 0.25);
    transform: translateY(-2px);
}

.portfolio-progress-bar-wrapper {
    width: 100%;
    height: 2px;
    background: rgba(200, 150, 55, 0.1);
    margin-bottom: 45px;
    position: relative;
    border-radius: 1px;
    overflow: hidden;
}

.portfolio-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--color-accent);
    width: 33.333%;
    transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 1px;
}

.portfolio-slider-wrapper {
    position: relative;
    padding: 40px 0;
}

.swiper-container {
    width: 100%;
    overflow: visible; /* Allows visible slides to overflow beautifully */
    position: relative;
}

.portfolio-slider-wrapper .swiper-slide {
    height: auto;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0.45;
    transform: scale(0.92);
    filter: blur(2px) grayscale(20%);
}

.portfolio-slider-wrapper .swiper-slide-active {
    opacity: 1;
    transform: scale(1);
    filter: none;
}

/* --- Viennese Masterpieces Portfolio Showcase --- */
.project-sheet {
    background: rgba(253, 251, 246, 0.75);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(200, 150, 55, 0.28);
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    padding: 55px;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-premium);
}

.project-sheet .cad-crosshair {
    position: absolute;
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    color: var(--color-accent);
    opacity: 0.35;
    transition: var(--transition-premium);
    pointer-events: none;
    z-index: 5;
}

.project-sheet .cad-crosshair.top-left { top: 18px; left: 18px; }
.project-sheet .cad-crosshair.top-right { top: 18px; right: 18px; }
.project-sheet .cad-crosshair.bottom-left { bottom: 18px; left: 18px; }
.project-sheet .cad-crosshair.bottom-right { bottom: 18px; right: 18px; }

.sheet-grid {
    display: grid;
    grid-template-columns: 1.15fr auto 1.1fr;
    gap: 0;
    align-items: stretch;
}

.sheet-info-pane {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-right: 50px;
}

.sheet-category {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: 2px;
    margin-bottom: 14px;
    display: block;
    text-transform: uppercase;
}

.sheet-project-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 46px;
    font-style: italic;
    font-weight: 500;
    color: var(--color-text-primary);
    margin-bottom: 8px;
    line-height: 1.2;
}

.sheet-coords {
    font-family: 'Outfit', sans-serif;
    font-size: 11.5px;
    color: var(--color-text-muted);
    opacity: 0.8;
    letter-spacing: 0.5px;
    margin-bottom: 28px;
}

.sheet-desc {
    color: var(--color-text-muted);
    font-size: 16.5px;
    line-height: 1.8;
    margin-bottom: 35px;
}

.sheet-specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px dashed rgba(200, 150, 55, 0.15);
    border-bottom: 1px dashed rgba(200, 150, 55, 0.15);
    padding: 22px 0;
    margin-bottom: 35px;
    gap: 15px;
}

.sheet-spec-col {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sheet-spec-label {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    color: var(--color-accent);
    font-weight: 700;
    letter-spacing: 2px;
}

.sheet-spec-val {
    font-family: 'Outfit', sans-serif;
    font-size: 16.5px;
    color: var(--color-text-primary);
    font-weight: 600;
}

.sheet-cta-btn {
    align-self: flex-start;
}

/* Vertical Guide Divider */
.sheet-vertical-divider {
    position: relative;
    width: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: stretch;
}

.sheet-vertical-divider .divider-line {
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, rgba(200, 150, 55, 0.18) 0%, rgba(200, 150, 55, 0.04) 100%);
    transition: var(--transition-premium);
}

.sheet-vertical-divider .divider-node {
    position: absolute;
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    color: var(--color-accent);
    opacity: 0.35;
    transition: var(--transition-premium);
}

.sheet-vertical-divider .divider-node.top {
    top: -5px;
}

.sheet-vertical-divider .divider-node.bottom {
    bottom: -5px;
}

/* Right Image Pane */
.sheet-image-pane {
    position: relative;
    overflow: hidden;
}

.sheet-image-wrapper {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
    border-radius: 2px;
}

.sheet-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.sheet-image-pane .project-cad-grid {
    position: absolute;
    inset: 0;
    z-index: 2;
    background-image: 
        linear-gradient(to right, rgba(200, 150, 55, 0.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(200, 150, 55, 0.04) 1px, transparent 1px);
    background-size: 25px 25px;
    pointer-events: none;
    opacity: 0.45;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.sheet-coordinate-tag {
    position: absolute;
    bottom: 15px;
    right: 15px;
    font-family: 'Outfit', sans-serif;
    font-size: 9px;
    color: #ffffff;
    background-color: rgba(17, 34, 78, 0.75);
    padding: 4px 8px;
    border-radius: 2px;
    letter-spacing: 1px;
    z-index: 3;
    font-weight: 500;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Hover Reveals */
.project-sheet:hover {
    border-color: rgba(200, 150, 55, 0.65);
    box-shadow: 0 40px 80px rgba(15, 23, 42, 0.12), 0 0 45px rgba(200, 150, 55, 0.18);
    transform: translateY(-8px);
}

.project-sheet:hover .sheet-image {
    transform: scale(1.05);
}

.project-sheet:hover .divider-line {
    background: linear-gradient(to bottom, rgba(200, 150, 55, 0.35) 0%, rgba(200, 150, 55, 0.08) 100%);
}

.project-sheet:hover .divider-node {
    opacity: 0.8;
    transform: scale(1.1);
}

.project-sheet:hover .cad-crosshair {
    opacity: 0.85;
    color: var(--color-accent);
}

/* Hide default swiper elements we no longer use */
.portfolio-slider-wrapper .swiper-pagination {
    display: none;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .portfolio-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .portfolio-controls-group {
        width: 100%;
        justify-content: space-between;
    }
    
    .portfolio-progress-bar-wrapper {
        margin-bottom: 15px;
    }
    
    .portfolio-slider-wrapper {
        padding: 10px 0 0 0;
    }
    
    #portfolio {
        padding-bottom: 10px !important;
    }
    
    .project-sheet {
        padding: 35px 30px;
    }
    
    .sheet-grid {
        grid-template-columns: 1fr;
    }
    
    .sheet-info-pane {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .sheet-vertical-divider {
        display: none;
    }
    
    .sheet-image-wrapper {
        height: 450px;
    }
    
    .sheet-project-title {
        font-size: 36px;
    }
}

@media (max-width: 576px) {
    .sheet-image-wrapper {
        height: 400px;
    }
    
    .sheet-specs-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 10px 0;
    }
    
    .sheet-spec-col {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px dashed rgba(200, 150, 55, 0.1);
        padding-bottom: 6px;
    }
    
    .sheet-spec-col:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}

/* --- Bespoke Features Section --- */
.features-section {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.features-blueprint-grid {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: 
        linear-gradient(to right, rgba(200, 150, 55, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(200, 150, 55, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    opacity: 0.8;
}

.features-bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(200, 150, 55, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
    pointer-events: none;
}
.features-split-grid {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.features-left-col {
    flex: 1;
    position: sticky;
    top: 140px;
}

.features-right-col {
    flex: 1.2;
}

.features-intro-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--color-text-primary);
    margin-bottom: 24px;
    line-height: 1.2;
    font-family: 'Outfit', sans-serif;
}

.features-intro-title span {
    background: linear-gradient(135deg, var(--color-text-primary) 30%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.features-intro-desc {
    color: var(--color-text-muted);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}



/* Accordion Layout */
.accordion-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-item {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition-premium);
    box-shadow: var(--shadow-premium);
    position: relative;
}

.accordion-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2.5px;
    background-color: var(--color-accent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.accordion-item.active::before {
    opacity: 1;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 30px;
    cursor: pointer;
    user-select: none;
    transition: var(--transition-fast);
}

.accordion-title-block {
    display: flex;
    align-items: center;
    gap: 20px;
}

.accordion-num {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-accent);
}

.accordion-title {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text-primary);
    transition: var(--transition-fast);
}

.accordion-icon-box {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(200, 150, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    transition: var(--transition-premium);
}

.accordion-icon-box svg {
    width: 12px;
    height: 12px;
    transition: transform 0.4s ease;
}

/* Accordion Content */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    padding: 0 30px;
}

.accordion-content-inner {
    padding-bottom: 24px;
    border-top: 1px dashed rgba(200, 150, 55, 0.15);
    padding-top: 18px;
}

.accordion-desc {
    color: var(--color-text-muted);
    font-size: 14.5px;
    line-height: 1.7;
}

/* Hover and Active states */
.accordion-item:hover {
    border-color: rgba(200, 150, 55, 0.4);
    box-shadow: 0 10px 25px rgba(200, 150, 55, 0.05);
}

.accordion-header:hover .accordion-title {
    color: var(--color-accent);
    transform: translateX(4px);
}

.accordion-item.active {
    border-color: var(--color-accent);
    background: #ffffff;
    box-shadow: 
        0 15px 35px rgba(200, 150, 55, 0.08),
        0 0 30px rgba(200, 150, 55, 0.03);
}

.accordion-item.active .accordion-title {
    color: var(--color-accent);
}

.accordion-item.active .accordion-icon-box {
    background-color: var(--color-accent);
    color: #ffffff;
    border-color: var(--color-accent);
}

.accordion-item.active .accordion-icon-box svg {
    transform: rotate(45deg);
}

@media (max-width: 992px) {
    .features-split-grid {
        flex-direction: column;
        gap: 40px;
    }
    .features-left-col {
        position: relative;
        top: 0;
        width: 100%;
    }
}

/* --- Interactive Split Blueprint Process Hub --- */
.process-section {
    position: relative;
    overflow: hidden;
}

.process-hub {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 50px;
    margin-top: 50px;
    align-items: stretch;
}

/* Left Panel: Dynamic Blueprint Visualizer */
.process-visual-panel {
    position: relative;
    background: transparent;
    border: none;
    border-radius: 12px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: none;
    min-height: 560px;
}

.process-visual-panel::before {
    display: none;
}

.blueprint-canvas-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Realistic Process Backdrops */
.process-image-backdrops {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    border-radius: 12px;
}

.process-img-item {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.process-img-item.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.process-img-overlay {
    display: none;
}

.blueprint-ring {
    position: absolute;
    border: 1px solid rgba(200, 150, 55, 0.12);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.5s ease;
    pointer-events: none;
    z-index: 4;
}

.blueprint-ring.ring-1 { width: 300px; height: 300px; border-style: dashed; }
.blueprint-ring.ring-2 { width: 220px; height: 220px; }
.blueprint-ring.ring-3 { width: 140px; height: 140px; border-style: dotted; }

.blueprint-svg-drawing {
    position: absolute;
    width: 320px;
    height: 320px;
    top: 50%;
    left: 50%;
    margin-top: -160px;
    margin-left: -160px;
    pointer-events: none;
    transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0.55;
    z-index: 4;
}

.blueprint-rotating-dial {
    position: absolute;
    width: 320px;
    height: 320px;
    top: 50%;
    left: 50%;
    margin-top: -160px;
    margin-left: -160px;
    pointer-events: none;
    transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0.55;
    z-index: 4;
}

/* Dynamic pulsing radar node */
.blueprint-active-radar {
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: var(--color-accent);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 15px var(--color-accent);
    z-index: 5;
    pointer-events: none;
}

.blueprint-active-radar::before {
    content: '';
    position: absolute;
    inset: -10px;
    border: 1px solid var(--color-accent);
    border-radius: 50%;
    animation: radar-pulse 2.2s infinite linear;
}

@keyframes radar-pulse {
    0% { transform: scale(0.6); opacity: 0.9; }
    100% { transform: scale(2.2); opacity: 0; }
}

/* Large Roman Numeral Watermark */
.blueprint-watermark-num {
    position: absolute;
    top: 15px;
    left: 20px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 140px;
    font-style: italic;
    font-weight: 500;
    line-height: 1;
    color: rgba(200, 150, 55, 0.05);
    user-select: none;
    pointer-events: none;
    transition: opacity 0.5s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 4;
}

/* Shifting metrics overlays */
.blueprint-data-overlay {
    position: absolute;
    bottom: 25px;
    left: 25px;
    right: 25px;
    display: none;
    justify-content: space-between;
    z-index: 5;
}

.blueprint-data-left, .blueprint-data-right {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.blueprint-data-right {
    align-items: flex-end;
}

.blueprint-data-label {
    font-family: 'Outfit', sans-serif;
    font-size: 9px;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.blueprint-data-val {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: var(--color-text-primary);
    letter-spacing: 0.5px;
}

.blueprint-scale-tag {
    position: absolute;
    top: 25px;
    right: 25px;
    display: none;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    z-index: 5;
}

.blueprint-step-tag {
    position: absolute;
    top: 25px;
    left: 25px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 11px;
    color: var(--color-accent);
    border: 1px solid rgba(200, 150, 55, 0.3);
    z-index: 5;
    padding: 3px 8px;
    border-radius: 2px;
    letter-spacing: 1px;
    z-index: 2;
}

/* Right Panel: Interactive Vertical Accordion */
.process-content-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.process-steps-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.process-accordion-item {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition-premium);
}

.accordion-header {
    padding: 24px 30px;
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    position: relative;
    z-index: 2;
}

.accordion-number {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--color-accent);
    margin-right: 25px;
    letter-spacing: 1px;
}

.accordion-title {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0;
    transition: var(--transition-fast);
}

.accordion-toggle-icon {
    margin-left: auto;
    width: 14px;
    height: 14px;
    position: relative;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-toggle-icon::before,
.accordion-toggle-icon::after {
    content: '';
    position: absolute;
    background-color: var(--color-accent);
    transition: var(--transition-fast);
}

.accordion-toggle-icon::before {
    top: 6px;
    left: 0;
    width: 14px;
    height: 2px;
}

.accordion-toggle-icon::after {
    top: 0;
    left: 6px;
    width: 2px;
    height: 14px;
}

/* Active accordion states */
.process-accordion-item.active {
    border-color: var(--color-accent);
    background: #ffffff;
    box-shadow: var(--shadow-premium), var(--shadow-glow);
}

.process-accordion-item.active .accordion-title {
    color: var(--color-accent);
}

.process-accordion-item.active .accordion-toggle-icon {
    transform: rotate(135deg);
}

/* Body styles */
.accordion-body {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0 30px;
    transition: max-height 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, padding 0.6s ease;
    position: relative;
    z-index: 1;
}

.process-accordion-item.active .accordion-body {
    max-height: 320px;
    opacity: 1;
    padding: 0 30px 25px 68px; /* lines up perfectly with title text */
}

.process-accordion-item .process-step-desc {
    color: var(--color-text-muted);
    font-size: 14.5px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.process-accordion-item .process-deliverables {
    border-top: 1px dashed rgba(200, 150, 55, 0.15);
    padding-top: 20px;
}

.process-accordion-item .process-deliverables-title {
    font-family: 'Outfit', sans-serif;
    font-size: 11.5px;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}

.process-accordion-item .process-deliverables-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.process-accordion-item .process-deliverables-list li {
    font-size: 14.5px;
    color: var(--color-text-muted);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
}

.process-accordion-item .process-deliverables-list li::before {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    background-color: var(--color-accent);
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org/2000/svg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272.5%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M4%204v10h15M15%2010l4%204-4%204%27%2F%3E%3C%2Fsvg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org/2000/svg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272.5%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M4%204v10h15M15%2010l4%204-4%204%27%2F%3E%3C%2Fsvg%3E");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
}

@media (max-width: 992px) {
    .process-hub {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .process-visual-panel {
        min-height: 420px;
        padding: 30px;
    }
}

/* --- Scroll Entrance Animations --- */
.fade-in-up {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Premium Footer --- */
.site-footer {
    background-color: #11224E;
    padding: 40px 0 30px;
    border-top: 1px solid var(--color-accent);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--color-accent);
    opacity: 0.3;
}

.footer-blueprint-grid {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: 
        linear-gradient(to right, rgba(200, 150, 55, 0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(200, 150, 55, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    opacity: 0.8;
}

.footer-bg-glow {
    position: absolute;
    width: 700px;
    height: 700px;
    top: 50%;
    left: 40%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(200, 150, 55, 0.04) 0%, rgba(255, 255, 255, 0) 70%);
    filter: blur(60px);
    z-index: 2;
    pointer-events: none;
}

.site-footer .container {
    position: relative;
    z-index: 3;
}

/* Footer Top Brand Header */
.footer-top-brand {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-brand-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.footer-logo-img {
    height: 140px;
    width: auto;
    display: block;
    object-fit: contain;
}

@media screen and (max-width: 768px) {
    .footer-logo-img {
        height: 100px;
    }
}

.footer-column-logo {
    margin-bottom: 25px;
}

.footer-col-logo-img {
    height: 64px;
    width: auto;
    display: block;
    object-fit: contain;
}


.footer-brand-tagline {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.footer-brand-coords {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    color: var(--color-text-muted);
    letter-spacing: 1px;
}

.footer-brand-divider {
    position: relative;
    margin-bottom: 60px;
}

.footer-brand-divider .divider-line-horizontal {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, rgba(200, 150, 55, 0.25) 0%, rgba(200, 150, 55, 0.05) 50%, rgba(200, 150, 55, 0.25) 100%);
}

.footer-brand-divider .cad-intersection {
    position: absolute;
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    color: var(--color-accent);
    opacity: 0.6;
    top: -6px;
}

.footer-brand-divider .cad-intersection.left {
    left: 0;
}

.footer-brand-divider .cad-intersection.right {
    right: 0;
}

/* Frameless Grid Columns */
.footer-grid-container {
    display: grid;
    grid-template-columns: 1.1fr auto 1fr auto 0.9fr;
    gap: 0;
    align-items: stretch;
    margin-bottom: 30px;
}

.footer-column {
    position: relative;
}

.footer-column.brand-col {
    padding: 10px 50px 10px 0;
}

.footer-column.contact-col {
    padding: 10px 50px;
}

.footer-column.nav-col {
    padding: 10px 0 10px 50px;
}

/* Vertical Guide dividers */
.footer-column-divider {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: stretch;
    width: 40px;
}

.divider-line-vertical {
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, rgba(200, 150, 55, 0.15) 0%, rgba(200, 150, 55, 0.03) 100%);
    transition: var(--transition-premium);
}

.footer-column-divider .cad-node {
    position: absolute;
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    color: var(--color-accent);
    opacity: 0.3;
    transition: var(--transition-premium);
}

.footer-column-divider .cad-node.top {
    top: -5px;
}

.footer-column-divider .cad-node.bottom {
    bottom: -5px;
}

/* Interactive transitions for grid dividers */
.footer-grid-container:hover .divider-line-vertical {
    background: linear-gradient(to bottom, rgba(200, 150, 55, 0.3) 0%, rgba(200, 150, 55, 0.06) 100%);
}

.footer-grid-container:hover .cad-node {
    opacity: 0.7;
    transform: scale(1.1);
}

/* Titles and content styling */
.footer-col-title {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 1px;
    background-color: var(--color-accent);
    opacity: 0.5;
}

.brand-desc {
    color: #94a3b8;
    margin-bottom: 35px;
    font-size: 14px;
    line-height: 1.7;
}

.footer-social-wrapper {
    border-top: 1px dashed rgba(200, 150, 55, 0.1);
    padding-top: 25px;
}

.social-title {
    font-family: 'Outfit', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.footer-social-links {
    display: flex;
    gap: 15px;
}

.footer-social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(200, 150, 55, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    transition: var(--transition-premium);
}

.footer-social-links a:hover {
    background-color: var(--color-accent);
    color: #11224E;
    border-color: var(--color-accent);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 5px 15px rgba(200, 150, 55, 0.3);
}

.social-icon {
    width: 18px;
    height: 18px;
}

/* Contact Items */
.footer-contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.contact-icon-wrapper {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(200, 150, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    flex-shrink: 0;
    margin-top: 2px;
    transition: var(--transition-fast);
}

.footer-contact-item:hover .contact-icon-wrapper {
    background-color: rgba(200, 150, 55, 0.08);
    border-color: var(--color-accent);
    color: #ffffff;
}

.footer-contact-icon {
    width: 16px;
    height: 16px;
}

.contact-text {
    flex: 1;
}

.contact-label-tag {
    font-family: 'Outfit', sans-serif;
    font-size: 9px;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: 1.5px;
    margin-bottom: 3px;
}

.contact-detail-text {
    font-size: 13.5px;
    color: #94a3b8;
    line-height: 1.6;
}

.contact-detail-text a {
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition-fast);
    position: relative;
    display: inline-block;
}

.contact-detail-text a::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--color-accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.contact-detail-text a:hover {
    color: #ffffff;
}

.contact-detail-text a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Strategic Links List */
.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links-list a {
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition-premium);
    font-size: 14px;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    position: relative;
}

.footer-links-list a::before {
    content: '→';
    font-family: 'Cormorant Garamond', serif;
    color: var(--color-accent);
    opacity: 0;
    margin-right: -12px;
    transition: var(--transition-premium);
    display: inline-block;
    transform: translateX(-8px);
    font-weight: 700;
}

.footer-links-list a:hover {
    color: #ffffff;
    padding-left: 10px;
}

.footer-links-list a:hover::before {
    opacity: 1;
    margin-right: 8px;
    transform: translateX(0);
}

/* --- Executive Advisory Panel --- */
.advisory-grid {
    display: flex;
    gap: 35px;
    margin-top: 50px;
    position: relative;
    z-index: 3;
    padding-bottom: 30px;
}

.advisory-card {
    flex: 1;
    padding: 65px 45px 55px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 500px;
    position: relative;
    overflow: hidden;
    background: var(--color-bg-card);
    backdrop-filter: blur(25px);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    transition: var(--transition-premium);
}

/* Collapsing dashed drawing border */
.advisory-card::before {
    content: '';
    position: absolute;
    inset: 15px;
    border: 1px dashed rgba(200, 150, 55, 0.08);
    pointer-events: none;
    border-radius: 2px;
    transition: var(--transition-premium);
    z-index: 1;
}

.advisory-card:hover::before {
    border-color: rgba(200, 150, 55, 0.25);
    inset: 18px;
}

.advisory-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--color-accent);
    transition: var(--transition-premium);
    z-index: 4;
}

.advisory-card:hover::after {
    width: 100%;
}

.advisory-card > *:not(.advisory-card-watermark) {
    position: relative;
    z-index: 3;
}

.advisory-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
    position: relative;
    z-index: 2;
}

.advisory-label {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    color: var(--color-accent);
    font-weight: 700;
    letter-spacing: 2.5px;
    display: inline-block;
}

.advisory-coord {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    color: var(--color-accent);
    font-weight: 600;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

/* Elegant Roman Numeral Watermark */
.advisory-card-watermark {
    position: absolute;
    bottom: -20px;
    right: 25px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-size: 160px;
    font-weight: 500;
    line-height: 1;
    pointer-events: none;
    user-select: none;
    z-index: 1;
    background: linear-gradient(135deg, rgba(200, 150, 55, 0.03) 0%, rgba(200, 150, 55, 0) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: var(--transition-premium);
}

.advisory-card:hover .advisory-card-watermark {
    background: linear-gradient(135deg, rgba(200, 150, 55, 0.08) 0%, rgba(226, 192, 116, 0.02) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: translateY(-8px) scale(1.08);
}

.advisory-body {
    display: flex;
    flex-direction: column;
}

.advisory-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--color-text-primary);
}

.advisory-card:hover .advisory-card-title {
    color: var(--color-accent);
}

.advisory-desc {
    color: #475569;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 35px;
}

/* Dual Column Contact Info Grid */
.advisory-contact-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
    border-top: 1px solid rgba(200, 150, 55, 0.15);
    padding-top: 25px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
}

/* Left vertical border for the second contact column */
.advisory-contact-details .contact-item:last-child {
    padding-left: 30px;
}
.advisory-contact-details .contact-item:last-child::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background-color: rgba(200, 150, 55, 0.2);
}

.contact-label {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: 1.5px;
}

.contact-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text-primary);
    text-decoration: none;
    transition: var(--transition-fast);
    line-height: 1.4;
}

a.contact-value:hover {
    color: var(--color-accent);
}

.advisory-btn {
    width: 100%;
    margin-top: auto;
}

/* CAD Crosshairs animation on hover */
.advisory-card .cad-crosshair {
    opacity: 0;
    transition: var(--transition-premium);
}

.advisory-card:hover .cad-crosshair {
    opacity: 0.8;
    border-color: var(--color-accent);
}

.advisory-card:hover .cad-crosshair.top-left { top: 18px; left: 18px; }
.advisory-card:hover .cad-crosshair.top-right { top: 18px; right: 18px; }
.advisory-card:hover .cad-crosshair.bottom-left { bottom: 18px; left: 18px; }
.advisory-card:hover .cad-crosshair.bottom-right { bottom: 18px; right: 18px; }

.advisory-card:hover {
    border-color: var(--color-border-hover);
    box-shadow: 0 45px 85px -15px rgba(15, 23, 42, 0.12), var(--shadow-glow);
    background: #ffffff;
    transform: translateY(-10px);
}

@media (max-width: 992px) {
    .advisory-grid {
        flex-direction: column;
        gap: 25px;
        padding-bottom: 0;
    }
    .advisory-card {
        min-height: auto;
        padding: 50px 35px 40px;
    }
    .advisory-card-title {
        font-size: 24px;
    }
    .advisory-desc {
        font-size: 15px;
        margin-bottom: 25px;
    }
    .advisory-contact-details {
        grid-template-columns: 1fr;
        gap: 20px;
        padding-top: 20px;
        margin-bottom: 30px;
    }
    .advisory-contact-details .contact-item:last-child {
        padding-left: 0;
    }
    .advisory-contact-details .contact-item:last-child::before {
        display: none;
    }
}

.footer-bottom-border {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 20px;
    margin-bottom: 25px;
}

.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
}

.copyright-text {
    color: #64748b;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-designer-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.footer-designer-link:hover {
    transform: translateY(-2px);
    opacity: 0.95;
}

.footer-designer-logo {
    height: 40px;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
}

.footer-designer-text {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    color: var(--color-accent);
    letter-spacing: 2px;
    font-weight: 600;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.footer-designer-link:hover .footer-designer-text {
    color: #ffffff;
}

.footer-legal-links {
    display: flex;
    gap: 25px;
}

.footer-legal-links a {
    color: #64748b;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: var(--transition-premium);
}

.footer-legal-links a:hover {
    color: var(--color-accent);
}

/* --- Responsiveness Media Queries --- */
@media (max-width: 1024px) {
    .footer-grid-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .footer-column-divider {
        display: none;
    }
    .footer-column.brand-col, 
    .footer-column.contact-col, 
    .footer-column.nav-col {
        padding: 0;
    }
}

@media (max-width: 768px) {
    /* Flatten and blend header when mobile menu is open */
    .mobile-menu-open .site-header {
        top: 0 !important;
        left: 0 !important;
        transform: none !important;
        width: 100% !important;
        max-width: 100% !important;
        border-radius: 0 !important;
        border: none !important;
        background-color: transparent !important;
        box-shadow: none !important;
    }
    
    .mobile-menu-open .nav-container {
        height: 80px !important;
        padding-left: 24px !important;
        padding-right: 24px !important;
    }
    
    .mobile-menu-open .site-logo {
        opacity: 0 !important;
        pointer-events: none !important;
    }

    .mobile-menu-toggle {
        display: flex;
    }
    .desktop-menu-wrapper, .header-cta-wrapper {
        display: none;
    }
    /* Disable scroll animations on mobile for 100% visibility & performance */
    .fade-in-up {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .footer-top-brand {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    .footer-grid-container {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-column-divider {
        display: none;
    }
    
    .footer-column.brand-col, 
    .footer-column.contact-col, 
    .footer-column.nav-col {
        padding: 0;
    }
    
    /* Enlarge footer typography on mobile devices for better legibility */
    .footer-col-title {
        font-size: 18px !important;
        margin-bottom: 20px !important;
    }
    
    .brand-desc {
        font-size: 16px !important;
        line-height: 1.75 !important;
    }
    
    .contact-label-tag {
        font-size: 11px !important;
        letter-spacing: 2px !important;
    }
    
    .contact-detail-text, 
    .contact-detail-text a {
        font-size: 15.5px !important;
        line-height: 1.65 !important;
    }
    
    .footer-links-list a {
        font-size: 16px !important;
    }
    .footer-bottom-row {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .copyright-text {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
        padding-bottom: 20px !important;
        width: 100% !important;
        max-width: 250px !important; /* Elegant white separator line */
        margin: 0 auto !important;
    }
    .footer-legal-links {
        justify-content: center;
    }
    
    /* Mobile Drawer Redesign */
    .mobile-nav-drawer {
        display: flex;
        justify-content: flex-end; /* Align the menu sidebar to the right */
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(17, 34, 78, 0.45); /* Elegant navy overlay */
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        z-index: 990; /* underneath header */
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.5s ease;
    }
    
    .mobile-menu-open .mobile-nav-drawer {
        opacity: 1;
        pointer-events: auto;
    }
    
    .mobile-menu-container {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 0 28px 45px 28px; /* Balanced side padding to shift logo left */
        width: 100vw;
        max-width: 100%;
        height: 100%;
        background: rgba(253, 251, 246, 0.98); /* Elegant champagne glass cream */
        position: relative;
        z-index: 2;
        transform: translateX(100%); /* Slide from the right */
        transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }
    
    @media (min-width: 576px) {
        .mobile-menu-container {
            width: 85vw;
            max-width: 380px;
            border-left: 1px solid rgba(200, 150, 55, 0.3);
            box-shadow: -15px 0 45px rgba(17, 34, 78, 0.08);
        }
    }

    /* Background luxury grid for mobile menu sidebar */
    .mobile-menu-container::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image:
            linear-gradient(rgba(200, 150, 55, 0.04) 1px, transparent 1px),
            linear-gradient(90deg, rgba(200, 150, 55, 0.04) 1px, transparent 1px);
        background-size: 45px 45px;
        background-position: center;
        pointer-events: none;
        z-index: 1;
    }

    .mobile-menu-open .mobile-menu-container {
        transform: translateX(0);
    }

    .mobile-menu-brand-header {
        position: relative;
        z-index: 2;
        height: 80px; /* Match open header height to align logo with close button */
        display: flex;
        align-items: center;
        margin-left: -12px; /* Shift logo left */
        margin-bottom: 20px;
    }

    .mobile-menu-logo {
        height: 72px; /* Increased height for mobile drawer logo */
        width: auto;
        display: block;
        object-fit: contain;
    }
    
    .mobile-menu-list {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px; /* Tight, elegant button gap */
        list-style: none;
        width: 100%;
        position: relative;
        z-index: 2;
        padding-left: 0;
    }
    
    .mobile-nav-link-custom {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 290px; /* Increased luxury pill button width */
        max-width: 100%;
        padding: 15px 24px; /* Increased vertical padding to make menu buttons larger */
        background-color: transparent;
        border: 1.5px solid rgba(200, 150, 55, 0.35); /* Slightly thicker border for premium feel */
        border-radius: 100px; /* Pill shape */
        text-decoration: none;
        transition: all 0.3s ease;
        opacity: 0;
        transform: translateX(30px); /* Slide left on enter */
    }
    
    .mobile-menu-open .mobile-nav-link-custom {
        opacity: 1;
        transform: translateX(0);
        transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                    background-color 0.3s ease,
                    border-color 0.3s ease;
    }
    
    .mobile-menu-open .mobile-menu-list li:nth-child(1) .mobile-nav-link-custom { transition-delay: 0.1s; }
    .mobile-menu-open .mobile-menu-list li:nth-child(2) .mobile-nav-link-custom { transition-delay: 0.16s; }
    .mobile-menu-open .mobile-menu-list li:nth-child(3) .mobile-nav-link-custom { transition-delay: 0.22s; }
    .mobile-menu-open .mobile-menu-list li:nth-child(4) .mobile-nav-link-custom { transition-delay: 0.28s; }

    .mobile-nav-link-custom:hover,
    .mobile-nav-link-custom.active {
        background-color: #11224E; /* Dark navy fill on active/hover */
        border-color: #11224E;
    }

    .mobile-nav-text {
        font-family: 'Outfit', sans-serif;
        font-size: 15px; /* Enlarged geometric text size */
        font-weight: 700;
        color: var(--color-accent); /* Golden text */
        text-transform: uppercase;
        letter-spacing: 2px;
        transition: color 0.3s ease;
    }
    
    .mobile-nav-link-custom:hover .mobile-nav-text,
    .mobile-nav-link-custom.active .mobile-nav-text {
        color: #ffffff; /* Golden text turns white when filled */
    }

    .mobile-menu-footer-block {
        display: flex;
        flex-direction: column;
        gap: 24px; /* Reduced gap */
        width: 100%;
        position: relative;
        z-index: 2;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.5s ease 0.35s, transform 0.5s ease 0.35s;
    }

    .mobile-menu-open .mobile-menu-footer-block {
        opacity: 1;
        transform: translateY(0);
    }

    .mobile-menu-contact-info {
        display: flex;
        flex-direction: column;
        gap: 12px; /* Reduced gap */
        border-top: 1px solid rgba(200, 150, 55, 0.2);
        padding-top: 20px; /* Reduced padding */
        margin-top: -65px; /* Pull it further upwards as requested */
    }

    .menu-info-item {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .menu-info-label {
        font-family: 'Outfit', sans-serif;
        font-size: 10px;
        font-weight: 700;
        color: var(--color-accent);
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    .menu-info-val {
        font-size: 15px;
        color: #11224E; /* Deep navy text */
        text-decoration: none;
        font-weight: 600;
        transition: color 0.3s ease;
    }

    .menu-info-val:hover {
        color: var(--color-accent);
    }
    
    .mobile-cta {
        border-radius: 100px;
        width: 100%;
        text-align: center;
        background-color: transparent !important; /* Transparent background */
        color: #11224E !important; /* Navy text */
        border: 1.5px solid #11224E !important; /* Navy outline border */
        font-weight: 700;
        letter-spacing: 2px;
        box-shadow: none !important;
        padding: 13px 20px !important;
        font-size: 13px !important;
        transition: all 0.3s ease !important;
    }
    
    .mobile-cta::before {
        background-color: var(--color-accent) !important;
    }
    
    .mobile-cta:hover {
        background-color: var(--color-accent) !important;
        border-color: var(--color-accent) !important;
        color: #11224E !important;
        box-shadow: 0 10px 25px rgba(200, 150, 55, 0.25) !important;
    }
    
    /* Hamburger Transform */
    .mobile-menu-open .mobile-menu-toggle .bar {
        background-color: #11224E; /* Dark close icon lines on light background */
    }
    .mobile-menu-open .mobile-menu-toggle {
        background: rgba(17, 34, 78, 0.05);
        border-color: rgba(17, 34, 78, 0.15);
    }
    .mobile-menu-open .mobile-menu-toggle:hover {
        background: rgba(17, 34, 78, 0.1);
        border-color: rgba(17, 34, 78, 0.3);
    }
    .mobile-menu-open .bar-1 {
        transform: translateY(6px) rotate(45deg);
    }
    .mobile-menu-open .bar-2 {
        opacity: 0;
        transform: scaleX(0);
    }
    .mobile-menu-open .bar-3 {
        transform: translateY(-6px) rotate(-45deg);
    }
}

/* --- Luxury GSAP Sticky Pinning Section --- */
.luxury-sticky-section {
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: #faf7f2;
    z-index: 10;
    border-top: 1px solid rgba(17, 34, 78, 0.05);
}

.luxury-sticky-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
    padding-top: 100px; /* Push the section content down below the sticky header */
}

.sticky-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px; /* Reduced from 30px to prevent card bottom overflow */
    width: 100%;
    max-width: 1200px;
    padding: 10px 40px;
}

.scroll-header {
    margin-bottom: 0;
    text-align: center;
}

.scroll-header .section-subtitle {
    margin-bottom: 8px; /* Reduced from 20px to save vertical space */
}

.scroll-header .section-title {
    font-size: 38px; /* Slightly reduced on desktop to ensure full card visibility */
}

.luxury-card-frame {
    position: relative;
    width: 100%;
    max-width: 1200px; /* Restores large card visual impact on wider monitors */
    max-height: calc(100vh - 240px); /* Dynamically scales to ensure the card fits 100% on the screen */
    aspect-ratio: 16 / 11;
    border-radius: 12px;
    border: 1px solid rgba(200, 150, 55, 0.2);
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(17, 34, 78, 0.08);
    background: #11224E;
}

.luxury-card-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    opacity: 0;
    will-change: opacity, transform;
}

.luxury-card-slide.slide-1 {
    opacity: 1;
}

.card-slide-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.card-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(17, 34, 78, 0.85) 0%, rgba(17, 34, 78, 0.45) 50%, rgba(17, 34, 78, 0.15) 100%);
    z-index: 2;
}

.card-slide-content {
    position: relative;
    z-index: 3;
    padding: 0 80px;
    max-width: 580px;
    color: #ffffff;
}

.card-num-label {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.card-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 40px;
    font-style: italic;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 20px;
}

.card-description {
    font-size: 15.5px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.card-indicators {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 5;
}

.indicator-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.35);
    transition: all 0.3s ease;
}

.indicator-dot.active {
    background-color: var(--color-accent);
    transform: scale(1.3);
}

/* Responsiveness */
@media (max-width: 992px) {
    .luxury-sticky-section {
        height: auto !important; /* disable sticky scroll height on mobile */
        padding: 40px 0 10px 0;
        margin-top: 0;
    }
    
    .luxury-sticky-container {
        position: relative !important;
        top: 0 !important;
        height: auto !important;
        overflow: visible;
        padding-top: 0 !important;
    }
    
    .sticky-content-wrapper {
        padding: 20px 0; /* Remove left/right padding on mobile to make cards wider */
    }
    
    .luxury-card-frame {
        aspect-ratio: auto;
        height: auto;
        max-height: none !important;
        overflow: visible;
        border: none;
        background: transparent;
        box-shadow: none;
    }
    
    .luxury-card-slide {
        position: relative;
        opacity: 1 !important;
        transform: none !important;
        height: auto;
        flex-direction: column;
        align-items: stretch;
        margin-bottom: 90px;
        border: 1px solid rgba(200, 150, 55, 0.2);
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 15px 40px rgba(17, 34, 78, 0.05);
        background: #11224E;
    }
    
    .luxury-card-slide:last-child {
        margin-bottom: 0;
    }
    
    .card-slide-img {
        position: relative;
        height: 300px;
        aspect-ratio: 16 / 9;
    }
    
    .card-slide-overlay {
        background: linear-gradient(180deg, rgba(17, 34, 78, 0) 0%, rgba(17, 34, 78, 0.85) 100%);
        height: 300px;
        top: 0;
    }
    
    .card-slide-content {
        padding: 35px 25px; /* Slightly increased padding inside the card */
        max-width: 100%;
    }
    
    .card-num-label {
        font-size: 13px; /* Larger label on mobile */
        letter-spacing: 2px;
        margin-bottom: 12px;
    }
    
    .card-title {
        font-size: 32px; /* Larger title on mobile */
        margin-bottom: 16px;
    }
    
    .card-description {
        font-size: 17px; /* Larger description on mobile */
        line-height: 1.75;
    }
    
    .card-indicators {
        display: none;
    }
}

/* =============================================================
 * FLOATING CONTACT ACTION BUTTONS
 * ============================================================= */
.floating-action-btn {
    position: fixed;
    bottom: 30px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(17, 34, 78, 0.15), 0 0 15px rgba(200, 150, 55, 0.15);
    z-index: 999;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(200, 150, 55, 0.3);
}

.floating-action-btn.phone-btn {
    left: 30px;
    background-color: #11224E;
}

.floating-action-btn.whatsapp-btn {
    right: 30px;
    background-color: #25D366;
    border-color: rgba(37, 211, 102, 0.2);
}

.floating-action-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(17, 34, 78, 0.25), 0 0 20px rgba(200, 150, 55, 0.25);
}

.floating-action-btn.phone-btn:hover {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
}

.floating-action-btn.whatsapp-btn:hover {
    background-color: #11224E;
    border-color: var(--color-accent);
}

@media screen and (max-width: 768px) {
    .floating-action-btn {
        width: 56px;
        height: 56px;
        bottom: 20px;
    }
    .floating-action-btn.phone-btn {
        left: 20px;
    }
    .floating-action-btn.whatsapp-btn {
        right: 20px;
    }
}

/* ==========================================================================
   SERVICES SHOWCASE PAGE STYLES (PREMIUM ADVISORY & REAL ESTATE DETAILED LAYOUT)
   ========================================================================== */

.services-page-wrapper {
    position: relative;
    padding-top: 100px;
    background-color: var(--color-bg-deep);
    overflow: hidden;
}

/* Hero Section */
.services-hero {
    position: relative;
    padding: 100px 0 60px 0;
    z-index: 10;
}

.services-main-title {
    font-family: 'Outfit', sans-serif;
    font-size: 56px;
    font-weight: 800;
    color: var(--color-text-primary);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 25px;
    line-height: 1.1;
}

.services-main-title span {
    color: var(--color-accent);
}

.services-subtitle {
    max-width: 720px;
    margin: 0 auto;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 17px;
    line-height: 1.8;
    color: var(--color-text-muted);
}

/* Showcase Section & Pillars List */
.services-showcase-section {
    position: relative;
    padding: 60px 0 100px 0;
    z-index: 10;
}

.services-pillars-list {
    display: flex;
    flex-direction: column;
    gap: 120px;
}

/* Single Pillar Item */
.services-pillar-item {
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
}

.services-pillar-item.reverse-layout {
    flex-direction: row-reverse;
}

/* Visual Column */
.services-pillar-visual {
    flex: 1.1;
    position: relative;
}

/* Image Frame */
.services-image-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 1.4;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-premium);
    transition: var(--transition-premium);
}

.services-image-frame:hover {
    transform: scale(1.02);
    border-color: var(--color-accent);
    box-shadow: 0 30px 60px -15px rgba(200, 150, 55, 0.18);
}

/* CAD Crosshairs */
.cad-crosshair {
    position: absolute;
    width: 12px;
    height: 12px;
    z-index: 12;
    pointer-events: none;
}
.cad-crosshair::before,
.cad-crosshair::after {
    content: '';
    position: absolute;
    background-color: var(--color-accent);
    opacity: 0.6;
}
.cad-crosshair::before {
    width: 100%;
    height: 1px;
    top: 50%;
    left: 0;
}
.cad-crosshair::after {
    height: 100%;
    width: 1px;
    left: 50%;
    top: 0;
}
.cad-crosshair.top-left { top: 12px; left: 12px; }
.cad-crosshair.top-right { top: 12px; right: 12px; }
.cad-crosshair.bottom-left { bottom: 12px; left: 12px; }
.cad-crosshair.bottom-right { bottom: 12px; right: 12px; }

/* Image Wrapper */
.services-img-wrapper {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: var(--transition-premium);
}

.services-image-frame:hover .services-img-wrapper {
    transform: scale(1.06);
}

.services-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 34, 78, 0) 40%, rgba(17, 34, 78, 0.25) 100%);
    pointer-events: none;
    z-index: 5;
}

/* Info Column */
.services-pillar-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.services-number {
    font-size: 80px;
    line-height: 1;
    font-weight: 800;
    color: rgba(200, 150, 55, 0.12);
    font-family: 'Outfit', sans-serif;
    margin-bottom: -15px;
    letter-spacing: -2px;
}

.services-pillar-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.services-pillar-title {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--color-text-primary);
    line-height: 1.25;
    margin-bottom: 20px;
}

.services-pillar-desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: 30px;
}

/* Deliverables Box */
.services-deliverables-box {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 24px 28px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.services-deliv-title {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-text-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    border-bottom: 1px dashed rgba(200, 150, 55, 0.2);
    padding-bottom: 8px;
}

.services-deliv-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0;
}

.services-deliv-list li {
    font-size: 14px;
    color: var(--color-text-muted);
    position: relative;
    padding-left: 18px;
}

.services-deliv-list li::before {
    content: '▪';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-accent);
    font-size: 12px;
}

/* Actions */
.services-pillar-action {
    display: flex;
}

/* CTA Banner */
.services-cta-banner {
    position: relative;
    padding: 80px 0 120px 0;
    z-index: 10;
}

.services-cta-card {
    position: relative;
    padding: 80px 40px;
    border-radius: 16px;
    background: radial-gradient(circle at top right, rgba(200, 150, 55, 0.08) 0%, rgba(253, 251, 246, 0.75) 100%);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-premium);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.services-cta-title {
    font-family: 'Outfit', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: var(--color-text-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 15px 0 25px 0;
}

.services-cta-title span {
    color: var(--color-accent);
}

.services-cta-desc {
    max-width: 680px;
    margin: 0 auto 35px auto;
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text-muted);
}

/* Responsive */
@media screen and (max-width: 1024px) {
    .services-pillar-item {
        gap: 40px;
    }
    .services-pillar-title {
        font-size: 28px;
    }
}

@media screen and (max-width: 768px) {
    .services-main-title {
        font-size: 40px;
    }
    .services-pillar-item,
    .services-pillar-item.reverse-layout {
        flex-direction: column;
        gap: 30px;
    }
    .services-pillar-visual,
    .services-pillar-info {
        width: 100%;
    }
    .services-pillars-list {
        gap: 80px;
    }
    .services-deliv-list {
        grid-template-columns: 1fr;
    }
    .services-cta-card {
        padding: 50px 20px;
    }
    .services-cta-title {
        font-size: 28px;
    }
}

/* ==========================================================================
   PORTFOLIO SHOWCASE PAGE STYLES (PREMIUM ARCHITECTURAL REAL ESTATE GRID)
   ========================================================================== */

.portfolio-page-wrapper {
    position: relative;
    padding-top: 100px;
    background-color: var(--color-bg-deep);
    overflow-x: hidden;
}

/* Hero Section */
.portfolio-hero {
    position: relative;
    padding: 100px 0 60px 0;
    z-index: 10;
}

.portfolio-main-title {
    font-family: 'Outfit', sans-serif;
    font-size: 56px;
    font-weight: 800;
    color: var(--color-text-primary);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 25px;
    line-height: 1.1;
}

.serif-italic-gold {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 500;
    color: var(--color-accent);
    text-transform: none;
    letter-spacing: 0;
}

.portfolio-subtitle {
    max-width: 720px;
    margin: 0 auto;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 17px;
    line-height: 1.8;
    color: var(--color-text-muted);
}

/* Filter Controls */
.portfolio-filter-section {
    position: relative;
    padding: 20px 0 40px 0;
    z-index: 15;
}

.portfolio-filter-bar {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.portfolio-filter-btn {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 30px;
    padding: 12px 28px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-primary);
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-fast);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.portfolio-filter-btn.active, 
.portfolio-filter-btn:hover {
    background: var(--color-text-primary);
    color: #ffffff;
    border-color: var(--color-text-primary);
    box-shadow: var(--shadow-premium);
}

/* Showcase Grid Section */
.portfolio-showcase-section {
    position: relative;
    padding: 40px 0 100px 0;
    z-index: 10;
}

.portfolio-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.portfolio-card-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
}

.portfolio-project-card {
    position: relative;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-premium);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.portfolio-project-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-accent);
    box-shadow: 0 30px 60px -15px rgba(200, 150, 55, 0.22);
}

/* Image Frame */
.portfolio-card-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1.5;
    overflow: hidden;
    border-bottom: 1px solid var(--color-border);
}

.portfolio-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-premium);
}

.portfolio-project-card:hover .portfolio-card-img {
    transform: scale(1.06);
}

/* Card Info */
.portfolio-card-info {
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.portfolio-card-category {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.portfolio-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 8px;
    line-height: 1.3;
}

.portfolio-card-coords {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    color: var(--color-text-muted);
    margin-bottom: 20px;
    opacity: 0.85;
}

.portfolio-card-desc {
    font-size: 14px;
    line-height: 1.65;
    color: var(--color-text-muted);
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Specifications Grid */
.portfolio-card-specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    border-top: 1px dashed rgba(200, 150, 55, 0.2);
    border-bottom: 1px dashed rgba(200, 150, 55, 0.2);
    padding: 20px 0;
    margin-bottom: 25px;
}

.portfolio-card-spec-col {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.portfolio-card-spec-label {
    font-family: 'Outfit', sans-serif;
    font-size: 10px;
    font-weight: 600;
    color: var(--color-text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.portfolio-card-spec-val {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text-primary);
}

/* Actions */
.portfolio-card-action {
    display: flex;
}

.portfolio-card-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-text-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition-fast);
}

.portfolio-card-link:hover {
    color: var(--color-accent);
}

.portfolio-card-link:hover .link-arrow-icon {
    transform: translateX(5px);
}

.link-arrow-icon {
    transition: transform 0.3s ease;
}

/* CTA Banner */
.portfolio-cta-banner {
    position: relative;
    padding: 60px 0 120px 0;
    z-index: 10;
}

.portfolio-cta-card {
    position: relative;
    padding: 80px 40px;
    border-radius: 16px;
    background: radial-gradient(circle at top right, rgba(200, 150, 55, 0.08) 0%, rgba(253, 251, 246, 0.75) 100%);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-premium);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.portfolio-cta-title {
    font-family: 'Outfit', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: var(--color-text-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 15px 0 25px 0;
}

.portfolio-cta-desc {
    max-width: 680px;
    margin: 0 auto 35px auto;
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text-muted);
}

/* Responsive */
@media screen and (max-width: 1024px) {
    .portfolio-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media screen and (max-width: 768px) {
    .portfolio-main-title {
        font-size: 40px;
    }
    .portfolio-showcase-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .portfolio-cta-card {
        padding: 50px 20px;
    }
    .portfolio-cta-title {
        font-size: 28px;
    }
}

/* ==========================================================================
   CONTACT PAGE STYLES (LUXURY EXECUTIVE INQUIRY & ADVISORY CHANNELS)
   ========================================================================== */

.page-contact-main {
    position: relative;
    padding-top: 100px;
    background-color: var(--color-bg-deep);
    overflow: hidden;
}

/* Hero Section */
.contact-hero-section {
    position: relative;
    padding: 120px 0 70px 0;
    z-index: 10;
}

.contact-bg-glow {
    position: absolute;
    width: 800px;
    height: 800px;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(200, 150, 55, 0.06) 0%, rgba(255, 255, 255, 0) 70%);
    filter: blur(100px);
    pointer-events: none;
    z-index: 1;
}

.contact-hero-container {
    position: relative;
    z-index: 5;
}

.contact-hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 56px;
    font-weight: 800;
    color: var(--color-text-primary);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 25px;
    line-height: 1.1;
}

.contact-hero-desc {
    max-width: 720px;
    margin: 0 auto;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 17px;
    line-height: 1.8;
    color: var(--color-text-muted);
}

/* Grid Layout */
.contact-grid-section {
    position: relative;
    padding: 40px 0 80px 0;
    z-index: 10;
}

.contact-info-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.contact-info-card {
    position: relative;
    padding: 50px 30px 45px 30px;
    border-radius: 16px;
    background: linear-gradient(185deg, rgba(254, 252, 248, 0.85) 0%, rgba(249, 245, 235, 0.98) 100%);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-premium);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition-premium);
}

.contact-info-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-5px);
    box-shadow: 0 30px 60px -15px rgba(200, 150, 55, 0.18);
}

.card-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: rgba(200, 150, 55, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    margin-bottom: 25px;
    border: 1px solid rgba(200, 150, 55, 0.15);
    transition: var(--transition-fast);
}

.contact-info-card:hover .card-icon-wrapper {
    background-color: var(--color-accent);
    color: #ffffff;
    border-color: var(--color-accent);
    box-shadow: 0 0 20px rgba(200, 150, 55, 0.35);
}

.info-card-svg-icon {
    width: 26px;
    height: 26px;
}

.info-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-text-primary);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.info-card-desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.55;
    margin-bottom: 25px;
    max-width: 260px;
    opacity: 0.9;
}

.info-card-values {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
    width: 100%;
}

.info-card-link {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text-primary);
    transition: var(--transition-fast);
    word-break: break-all;
}

.info-card-link:hover {
    color: var(--color-accent);
}

.info-card-text {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text-primary);
    line-height: 1.45;
}

.contact-form-container {
    max-width: 900px;
    margin: 0 auto;
}

@media screen and (max-width: 992px) {
    .contact-info-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        margin-bottom: 50px;
    }
}

@media screen and (max-width: 768px) {
    .contact-info-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    .info-card-title {
        font-size: 18px;
    }
    .info-card-desc {
        font-size: 14px;
        max-width: 280px;
    }
    .info-card-link,
    .info-card-text {
        font-size: 17px;
    }
}

/* Form Wrapper */
.contact-form-wrapper {
    position: relative;
    padding: 60px 50px;
    border-radius: 20px;
    background: linear-gradient(185deg, rgba(254, 252, 248, 0.8) 0%, rgba(249, 245, 235, 0.95) 100%);
    border: 1px solid var(--color-border);
    box-shadow: 0 40px 90px -20px rgba(17, 34, 78, 0.06), 
                0 0 40px -10px rgba(200, 150, 55, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: var(--transition-premium);
}

.contact-form-wrapper:hover {
    border-color: var(--color-accent);
    box-shadow: 0 40px 90px -20px rgba(200, 150, 55, 0.12);
}

.form-header {
    text-align: center;
    margin-bottom: 45px;
}

.form-tag {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.form-title {
    font-family: 'Outfit', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--color-text-primary);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 8px;
}

/* Inputs & Form Groups */
.luxury-contact-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-row {
    display: flex;
    gap: 30px;
}

.col-6-form {
    flex: 1;
}

.form-group {
    position: relative;
}

.luxury-contact-form .input-wrapper {
    position: relative;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(200, 150, 55, 0.18);
    border-radius: 8px;
    transition: var(--transition-fast);
}

.luxury-contact-form .input-wrapper input,
.luxury-contact-form .input-wrapper textarea,
.luxury-contact-form .input-wrapper select {
    width: 100%;
    padding: 24px 20px 8px 20px;
    border: none;
    background: transparent;
    outline: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text-primary);
    transition: var(--transition-fast);
}

.luxury-contact-form .input-wrapper label {
    position: absolute;
    left: 20px;
    top: 18px;
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-text-muted);
    transition: var(--transition-fast);
    pointer-events: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Label Animations */
.luxury-contact-form .input-wrapper input:focus ~ label,
.luxury-contact-form .input-wrapper input:not(:placeholder-shown) ~ label,
.luxury-contact-form .input-wrapper textarea:focus ~ label,
.luxury-contact-form .input-wrapper textarea:not(:placeholder-shown) ~ label,
.luxury-contact-form .input-wrapper select:focus ~ label,
.luxury-contact-form .input-wrapper select:valid ~ label {
    top: 6px;
    font-size: 9px;
    color: var(--color-accent);
    font-weight: 700;
}

.luxury-contact-form .input-wrapper:focus-within {
    border-color: var(--color-accent);
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(200, 150, 55, 0.08);
}

/* Custom Select dropdown */
.luxury-contact-form .select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.luxury-contact-form .select-wrapper::after {
    content: '▼';
    font-size: 9px;
    color: var(--color-accent);
    position: absolute;
    right: 20px;
    top: 24px;
    pointer-events: none;
}

.luxury-contact-form .textarea-wrapper textarea {
    resize: none;
}

/* Submit Button */
.luxury-contact-form .submit-btn {
    width: 100%;
    padding: 20px 35px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 8px;
    background: var(--color-text-primary);
    color: #ffffff;
    border: 1px solid var(--color-text-primary);
    box-shadow: 0 15px 30px rgba(17, 34, 78, 0.15);
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
}

.luxury-contact-form .submit-btn:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    box-shadow: 0 15px 30px rgba(200, 150, 55, 0.25);
    transform: translateY(-2px);
}

/* Map Section */
.contact-map-section {
    position: relative;
    padding: 40px 0 120px 0;
    z-index: 10;
}

.map-blueprint-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    padding: 18px;
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-premium);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: var(--transition-premium);
}

.map-blueprint-wrapper:hover {
    border-color: var(--color-accent);
    box-shadow: 0 30px 65px -15px rgba(200, 150, 55, 0.12);
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
}


@media screen and (max-width: 768px) {
    .contact-hero-title {
        font-size: 40px;
    }
    .form-row {
        flex-direction: column;
        gap: 30px;
    }
    .contact-form-wrapper {
        padding: 40px 24px;
    }
}

/* Hide all coordinate-style texts */
.advisory-coord,
.step-active-coord {
    display: none !important;
}
