@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;700;800&family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=Great+Vibes&family=Syncopate:wght@400;700&display=swap');

/* Variables */
:root {
    --bg-color: #0d0f12; 
    --bg-gradient: linear-gradient(135deg, #15171c 0%, #08090b 100%);
    --text-color: #e6e4df; 
    --text-muted: #8a8d93; 
    --accent-color: #8A9BA8; 
    --accent-hover: #90A4AE;
    --glass-bg: rgba(25, 27, 33, 0.45);
    --glass-border: rgba(138, 155, 168, 0.15); 
    
    --font-sans: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --font-script: 'Great Vibes', cursive;
    --font-eurostile: 'Eurostile Extended', 'Syncopate', sans-serif;
}

/* Reset & Basics */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
    font-family: var(--font-sans);
    background: var(--bg-gradient);
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: clip; /* clip instead of hidden allows position: sticky to work */
}

/* ===========================
   NAVBAR
   =========================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
    transition: background 0.4s ease, backdrop-filter 0.4s ease;
}

.main-header.scrolled {
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
}

.main-header.scrolled-blur {
    background: rgba(13, 15, 18, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: none;
}

.main-header.header-dark {
    background: linear-gradient(to bottom, rgba(13, 15, 18, 0.9) 0%, rgba(13, 15, 18, 0.0) 100%);
}

.navbar {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0;
}

.nav-container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 20px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

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

/* --- Image Logo --- */
.navbar-brand {
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.brand-logo {
    max-height: 90px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.brand-text-modul {
    font-family: var(--font-eurostile);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #ffffff;
    margin-left: 12px;
    text-transform: uppercase;
}

/* --- Lüks Emlak text-based brand lockup (header) --- */
.brand-mono {
    display: flex;
    flex-direction: column;
    line-height: 0.85;
    font-family: var(--font-eurostile);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    color: #fff;
    opacity: 0.8;
}

.brand-divider-line {
    width: 1px;
    height: 34px;
    background: rgba(255,255,255,0.25);
    margin: 0 14px;
}

.brand-word {
    font-family: var(--font-eurostile);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #fff;
    text-transform: uppercase;
}

.brand-word span { color: var(--accent-color); }

/* --- Lüks Emlak text-based brand lockup (footer, larger scale) --- */
.footer-brand-lockup {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
    opacity: 0.95;
}

.footer-brand-lockup .brand-mono { font-size: 1.05rem; }
.footer-brand-lockup .brand-divider-line { height: 46px; margin: 0 18px; }
.footer-brand-lockup .brand-word { font-size: 2.1rem; }

@media (max-width: 640px) {
    .brand-word { font-size: 1.25rem; }
    .brand-mono { font-size: 0.7rem; }
    .brand-divider-line { margin: 0 10px; }
}

/* --- Nav Links --- */
.nav-links {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    display: block;
    padding: 8px 0;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--accent-color);
    transition: width 0.3s ease, left 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
    left: 0;
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
}

/* --- CTA Button --- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.4s ease;
    backdrop-filter: blur(4px);
}

.btn-primary:hover {
    background: #ffffff;
    color: #0d0f12;
    border-color: #ffffff;
}

/* ===========================
   HERO SECTION
   =========================== */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100dvh; /* accounts for mobile browser address bar */
    overflow: hidden;
}

.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    z-index: 0;
}

#hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 42%;
    filter: brightness(0.65) contrast(1.1); /* Moody and premium */
}

@media (max-width: 640px) {
    /* Landscape 4K footage crops hard on narrow phone screens;
       cap the hero height so the video isn't zoomed into a thin vertical sliver */
    .hero-section,
    .video-container {
        height: 78vh;
        height: 78dvh;
    }
}

/* ===========================
   SCROLL SPACER
   =========================== */
.scroll-spacer {
    height: 350vh; /* Plenty of room to scrub */
}

/* ===========================
   HERO SCROLL INDICATOR
   =========================== */
.scroll-indicator {
    position: fixed;
    bottom: 40px;
    left: 0;
    right: 0;
    width: fit-content;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    z-index: 20;
    pointer-events: none;
    opacity: 1; 
    transition: opacity 0.4s ease;
}

.scroll-text {
    font-size: 0.7rem;
    color: #fff;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-weight: 400;
    opacity: 0.6;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
}

.scroll-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--accent-color);
    animation: scroll-drop 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}

@keyframes scroll-drop {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(200%); }
}

/* ===========================
   HERO OVERLAY
   =========================== */
.hero-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    z-index: 15;
    pointer-events: none;
    visibility: hidden;
    overflow: hidden;
    padding: 100px 48px;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.8) 100%);
    opacity: 0;
    transition: opacity 1.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: -2;
}

.hero-overlay.visible {
    visibility: visible;
    pointer-events: auto;
}

.hero-overlay.visible::before {
    opacity: 1;
}

/* --- Background Text --- */
.hero-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    font-size: 18vw;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    z-index: -1;
    letter-spacing: 0.05em;
    pointer-events: none;
    opacity: 0;
    transition: all 2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-overlay.visible .hero-bg-text {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* --- Grid Crosshairs --- */
.grid-cross {
    position: absolute;
    width: 20px;
    height: 20px;
    opacity: 0;
    transition: opacity 1.5s ease 0.5s;
}

.grid-cross::before, .grid-cross::after {
    content: '';
    position: absolute;
    background: var(--accent-color);
    opacity: 0.5;
}
.grid-cross::before { width: 100%; height: 1px; top: 50%; left: 0; transform: translateY(-50%); }
.grid-cross::after { height: 100%; width: 1px; left: 50%; top: 0; transform: translateX(-50%); }

.tl { top: 80px; left: 80px; }
.tr { top: 80px; right: 80px; }
.bl { bottom: 80px; left: 80px; }
.br { bottom: 80px; right: 80px; }

.hero-overlay.visible .grid-cross { opacity: 1; }

/* --- Content Wrapper --- */
.hero-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    max-width: 1600px;
    margin: 0 auto;
}

/* ================================
   LEFT: Typography
   ================================ */
.overlay-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 500px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s ease 0.2s, transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) 0.2s;
}

.hero-overlay.visible .overlay-left {
    opacity: 1;
    transform: translateY(0);
}

.overlay-center {
    max-width: 900px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s ease 0.2s, transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) 0.2s;
}

.hero-overlay.visible .overlay-center {
    opacity: 1;
    transform: translateY(0);
}

.tech-specs {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.7rem;
    color: var(--accent-color);
    letter-spacing: 0.2em;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0.8;
}

.tech-specs .sep {
    color: rgba(255,255,255,0.2);
}

.hero-display {
    margin: 0;
    font-size: clamp(3rem, 4.5vw, 5.5rem);
    font-weight: 300;
    line-height: 1.1;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.outline-text {
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.8);
    color: transparent;
    font-family: var(--font-sans);
    font-style: normal;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-subtext {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.6;
    max-width: 450px;
    margin: 10px 0 0 0;
    font-weight: 300;
    letter-spacing: 0.02em;
}

/* ================================
   RIGHT: Options (Mobilya / İç Mimarlık)
   ================================ */
.options-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 1.2s ease 0.4s, transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) 0.4s;
    width: 100%;
    max-width: 400px;
}

.hero-overlay.visible .options-container {
    opacity: 1;
    transform: translateX(0);
}

.option-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
    background: rgba(25, 27, 33, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    text-decoration: none;
    color: #fff;
    backdrop-filter: blur(8px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.option-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-color);
    transform: scaleY(0);
    transition: transform 0.4s ease;
    transform-origin: bottom;
}

.option-card:hover {
    background: rgba(25, 27, 33, 0.6);
    border-color: rgba(184, 155, 114, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.option-card:hover::before {
    transform: scaleY(1);
}

.option-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.option-icon {
    color: var(--accent-color);
    margin-bottom: 5px;
    transition: transform 0.3s ease;
}

.option-card:hover .option-icon {
    transform: scale(1.1);
}

.option-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    font-family: var(--font-serif);
}

.option-desc {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    font-weight: 300;
}

.option-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.option-card:hover .option-arrow {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #0d0f12;
    transform: translateX(5px);
}

/* ===========================
   MOBILE MENU
   =========================== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 12, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

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

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.mobile-menu-overlay.active .mobile-nav-links {
    transform: translateY(0);
}

.mobile-nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.mobile-nav-links a.active {
    color: var(--accent-color);
}

.mobile-nav-links .mobile-nav-contact {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 32px;
    border: 1px solid var(--accent-color);
    border-radius: 4px;
    color: var(--accent-color);
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 1024px) {
    /* Show mobile menu toggle, hide desktop links */
    .mobile-menu-toggle { display: flex; }
    .nav-links { display: none; }
    .nav-right { display: none; }
    .btn-primary { display: none; }
    
    .hero-overlay {
        padding: 80px 24px;
    }
    
    .hero-content-wrapper {
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 40px;
    }
    
    .options-container {
        max-width: 100%;
    }
    
    .tl, .tr, .bl, .br { display: none; }
    .hero-bg-text { display: none; }
}

/* ===========================
   ABOUT PAGE STYLES
   =========================== */
.about-page {
    width: 100%;
    background-color: var(--bg-color);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='150' height='150' viewBox='0 0 100 100'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='0.5' opacity='0.03'%3E%3Cpath d='M10 50 A40 40 0 0 1 90 50 Z' /%3E%3Cline x1='10' y1='50' x2='10' y2='45'/%3E%3Cline x1='20' y1='50' x2='20' y2='47'/%3E%3Cline x1='30' y1='50' x2='30' y2='45'/%3E%3Cline x1='40' y1='50' x2='40' y2='47'/%3E%3Cline x1='50' y1='50' x2='50' y2='45'/%3E%3Cline x1='50' y1='10' x2='25' y2='80'/%3E%3Cline x1='50' y1='10' x2='75' y2='80'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 200px 200px;
    background-attachment: fixed;
}

/* About Hero */
.about-hero {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 0 5%;
    overflow: hidden;
}

.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.about-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) grayscale(0.2);
}

.hero-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(13, 15, 18, 1) 0%, rgba(13, 15, 18, 0.4) 50%, rgba(13, 15, 18, 0.1) 100%);
}

.about-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding-top: 100px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
}

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

.hero-label {
    font-size: 0.85rem;
    color: var(--accent-color);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-label::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--accent-color);
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 30px;
}

.hero-title .outline-text {
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
    color: transparent;
    font-family: var(--font-sans);
    font-weight: 300;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 600px;
}

/* Philosophy Section */
.philosophy-section {
    padding: 120px 5%;
    background: var(--bg-color);
}

.container-fluid {
    max-width: 1400px;
    margin: 0 auto;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 20px;
}

.title-separator {
    width: 60px;
    height: 2px;
    background: var(--accent-color);
    margin-bottom: 40px;
}

.center-sep {
    margin: 0 auto 50px auto;
}

/* Editorial Philosophy Styles */
.philosophy-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 40px;
}

.editorial-label {
    font-size: 0.8rem;
    color: var(--accent-color);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.editorial-label::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--accent-color);
}

.editorial-quote {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 400;
    font-style: normal;
    line-height: 1.1;
    color: #f0eee9;
    margin: 0 0 40px 0;
    position: relative;
    letter-spacing: -0.02em;
}

.editorial-quote::before {
    content: '\201C';
    position: absolute;
    top: -40px;
    left: -50px;
    font-size: 8rem;
    color: rgba(184, 155, 114, 0.15);
    font-family: var(--font-serif);
    line-height: 1;
    pointer-events: none;
}

.editorial-quote em {
    font-style: italic;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
}

.editorial-quote .text-accent {
    font-family: var(--font-script);
    color: var(--accent-color);
    font-size: 1.4em;
    font-weight: 400;
    font-style: normal;
    padding: 0 5px;
    letter-spacing: 0.02em;
    position: relative;
    display: inline-block;
}

.editorial-quote .text-accent::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--accent-color);
    opacity: 0.5;
}

.editorial-body {
    border-left: 1px solid rgba(184, 155, 114, 0.3);
    padding-left: 30px;
    margin-bottom: 40px;
}

.editorial-body p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    font-weight: 300;
    margin: 0 0 20px 0;
}
.editorial-body p:last-child {
    margin-bottom: 0;
}

.editorial-signature img {
    max-width: 120px;
    opacity: 0.6;
    filter: brightness(1.5) sepia(1) hue-rotate(340deg) saturate(0.5); /* Subtle bronze tint to white logo */
}

.philosophy-image {
    position: relative;
    padding-right: 40px;
    padding-bottom: 40px;
}

.reveal-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    z-index: 2;
    position: relative;
    border-radius: 2px;
    filter: brightness(0.8);
    transition: filter 0.5s ease;
}

.reveal-image:hover {
    filter: brightness(1);
}

.image-accent-box {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80%;
    height: 80%;
    border: 1px solid var(--accent-color);
    z-index: 1;
    opacity: 0.5;
}

/* Stats Section - Editorial */
.stats-section {
    padding: 100px 5%;
    margin: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(184, 155, 114, 0.03) 50%, transparent 100%);
    border: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.stat-item {
    padding: 30px 20px;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, 0.05);
}

.stat-number {
    font-family: var(--font-sans);
    font-size: 6rem;
    font-weight: 800;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.2);
    margin-bottom: -15px; /* Overlap effect */
    position: relative;
    z-index: 0;
    transition: all 0.5s ease;
}

.stat-item:hover .stat-number {
    -webkit-text-stroke: 2px var(--accent-color);
    color: rgba(184, 155, 114, 0.05);
}

.stat-suffix {
    font-size: 3rem;
    vertical-align: top;
    -webkit-text-stroke: 1px var(--accent-color);
}

.stat-label {
    font-family: var(--font-sans);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.4);
    position: relative;
    z-index: 1;
    display: inline-block;
    transition: all 0.5s ease;
    margin-top: 10px;
}

.stat-item:hover .stat-label {
    -webkit-text-stroke: 1px var(--accent-color);
    color: rgba(184, 155, 114, 0.05);
}

/* ===========================
   MODERN DARK FOOTER
   =========================== */
.modern-dark-footer {
    background: #0d0f12;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-family: var(--font-sans);
}

.footer-cta-card {
    padding: 60px 5%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: url('~/images/About/wood_kitchen_living_1784199857806.png') center/cover no-repeat;
    position: relative;
}

.footer-cta-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(13, 15, 18, 0.85); /* Dark overlay */
    backdrop-filter: blur(5px);
}

.cta-card-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(25, 27, 33, 0.6);
    border: 1px solid rgba(184, 155, 114, 0.2);
    padding: 40px 60px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}

.cta-card-text {
    max-width: 600px;
}

.cta-card-text h2 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 12px;
    font-family: var(--font-serif);
    color: #fff;
}

.cta-card-text p {
    font-size: 1rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

.btn-solid-gold {
    display: inline-block;
    padding: 16px 40px;
    background: var(--accent-color);
    color: #000;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 4px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-solid-gold:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(184, 155, 114, 0.2);
}

@media (max-width: 992px) {
    .cta-card-inner {
        flex-direction: column;
        text-align: center;
        gap: 32px;
        padding: 40px 30px;
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding: 80px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-brand .footer-logo-sleek {
    max-width: 200px;
    margin-bottom: 24px;
}

.footer-brand .brand-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 320px;
    margin-bottom: 32px;
}

.footer-social-sleek {
    display: flex;
    gap: 16px;
}

.footer-social-sleek a {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.footer-social-sleek a svg {
    width: 20px;
    height: 20px;
}

.footer-social-sleek a:hover {
    color: var(--accent-color);
}

.footer-nav h4, .footer-contact h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #fff;
    margin-bottom: 24px;
}

.footer-nav a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--accent-color);
}

.footer-contact p, .footer-contact a {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0 0 12px 0;
    text-decoration: none;
}

.footer-contact .phones {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
}

.footer-contact .phones a:hover {
    color: var(--accent-color);
}

.footer-bottom-sleek {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 5%;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.digital-partner a {
    color: var(--accent-color);
    text-decoration: none;
}
.partner-link:hover {
    color: #ffffff;
}

/* Architectural Contact Page */
.contact-arch-page {
    position: relative;
    padding-top: 150px;
    padding-bottom: 120px;
    font-family: var(--font-sans);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: radial-gradient(circle at 50% 10%, rgba(184, 155, 114, 0.08) 0%, transparent 60%);
}

.arch-bg-grid {
    display: none;
}

.contact-hero-arch {
    position: relative;
    padding: 0 5%;
    margin-bottom: 100px;
}

.huge-watermark {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    font-family: var(--font-sans);
    font-size: 15vw;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.03);
    pointer-events: none;
    z-index: 0;
    letter-spacing: -0.02em;
}

.arch-title-sharp {
    font-family: var(--font-serif);
    font-size: clamp(4rem, 8vw, 6rem);
    font-weight: 300;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
    margin: 0 0 10px 0;
    position: relative;
    z-index: 1;
    transition: all 0.5s ease;
}
.contact-hero-arch:hover .arch-title-sharp {
    -webkit-text-stroke: 1px #ffffff;
    color: rgba(255, 255, 255, 0.05);
}

.arch-subtitle-sharp {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 1;
    font-weight: 400;
    margin-top: 20px;
}

.contact-arch-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-arch-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.arch-info-block {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}
.arch-info-block:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(184, 155, 114, 0.3);
    transform: translateY(-5px);
}

.arch-icon {
    color: var(--accent-color);
    margin-top: 5px;
    background: rgba(184, 155, 114, 0.1);
    padding: 15px;
    border-radius: 50%;
}
.arch-icon svg {
    width: 28px;
    height: 28px;
}

.arch-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.arch-label {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.4);
    margin-bottom: 5px;
}

.arch-text a, .arch-text p {
    font-size: 1.2rem;
    color: #ffffff;
    text-decoration: none;
    line-height: 1.5;
    margin: 0;
    font-weight: 300;
    transition: color 0.3s ease;
}

.arch-text a:hover {
    color: var(--accent-color);
}

.contact-arch-map {
    position: relative;
    min-height: 500px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-arch-map iframe {
    filter: grayscale(100%) invert(90%) contrast(85%);
    opacity: 0.8;
    transition: all 0.5s ease;
}

.contact-arch-map:hover iframe {
    filter: none;
    opacity: 1;
}

.map-overlay {
    display: none;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-arch-grid {
        grid-template-columns: 1fr;
    }
    .contact-arch-info {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
    
    .arch-bg-icon {
        width: 160px;
        height: 160px;
    }
    .arch-bg-icon.left-icon {
        left: -40px;
    }
    .arch-bg-icon.right-icon {
        right: -40px;
    }
}

@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .contact-hero-arch {
        margin-bottom: 60px;
    }
    .arch-info-block {
        padding: 30px 20px;
        flex-direction: column;
        gap: 15px;
    }
    .contact-arch-map {
        min-height: 350px;
    }
    .huge-watermark {
        font-size: 20vw;
    }
    .arch-bg-icon {
        display: none;
    }
    .copyright-bar {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        text-align: center;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .stats-section {
        padding: 40px 5%;
    }
    .stat-item:not(:last-child)::after {
        display: none;
    }
    .hero-title {
        font-size: 2.5rem;
    }
}

/* ===========================
   PORTFOLIO (PROJECTS) PAGE
   =========================== */
.projects-page-wrapper {
    background: var(--bg-color);
    min-height: 100vh;
    padding-top: 150px;
    padding-bottom: 100px;
}

.projects-hero {
    position: relative;
    padding: 0 5%;
    margin-bottom: 80px;
}

.portfolio-grid-container {
    padding: 0 5%;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(400px, 100%), 1fr));
    gap: 40px;
}

.project-card {
    text-decoration: none;
    display: block;
    position: relative;
    overflow: hidden;
}

.project-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 4px;
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.5s ease;
    filter: grayscale(80%) contrast(1.1) brightness(0.7);
}

.project-card:hover .project-image {
    transform: scale(1.05);
    filter: grayscale(0%) contrast(1) brightness(1);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,15,18,0.9) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
    opacity: 0.8;
    transition: opacity 0.5s ease;
}

.project-card:hover .project-overlay {
    opacity: 0.4;
}

.project-info {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 2;
    transform: translateY(0);
    opacity: 1;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@media (hover: hover) {
    .project-info {
        transform: translateY(20px);
        opacity: 0;
    }
    .project-card:hover .project-info {
        transform: translateY(0);
        opacity: 1;
    }
}

.project-category {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: var(--accent-color);
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.project-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: #fff;
    margin: 0;
    font-weight: 300;
}

/* ===========================
   PROJECT DETAIL PAGE
   =========================== */
.project-detail-page {
    background: var(--bg-color);
}

.project-hero-full {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: flex-end;
    padding: 80px 5%;
}

.project-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.project-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(13,15,18,0.2) 0%, rgba(13,15,18,0.95) 100%);
    z-index: 1;
}

.project-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-back-btn {
    position: absolute;
    bottom: 80px;
    right: 5%;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-back-btn:hover {
    color: #fff;
    transform: translateX(-5px);
}

.project-hero-category {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    letter-spacing: 0.3em;
    color: var(--accent-color);
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.project-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 6vw, 5.5rem);
    color: #fff;
    font-weight: 300;
    line-height: 1.1;
    margin: 0 0 10px 0;
}

.project-hero-location {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    font-weight: 300;
    margin: 0;
}

.project-specs-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 40px 5%;
    background: rgba(255,255,255,0.02);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
}

.spec-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.spec-label {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--text-muted);
}

.spec-value {
    font-family: var(--font-sans);
    font-size: 1.3rem;
    letter-spacing: 0.1em;
    color: #ffffff;
    font-weight: 300;
    text-transform: uppercase;
}

.project-description-section {
    padding: 100px 5%;
    display: flex;
    justify-content: center;
}

.project-desc-inner {
    max-width: 800px;
    text-align: center;
}

.desc-heading {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    letter-spacing: 0.4em;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 30px;
}

.desc-text {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    line-height: 1.6;
    color: #e6e4df;
    font-weight: 300;
}

/* --- Premium Horizontal Scroll on Vertical Page Scroll --- */
.project-gallery-scroll-container {
    position: relative;
    height: 250vh; /* Scroll speed controller */
    width: 100%;
}

.project-gallery-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #0d0f12;
}

.project-gallery-slider-horizontal {
    display: flex;
    gap: 40px;
    padding: 0 10%;
    will-change: transform;
    transition: transform 0.1s ease-out;
}

.slider-item-horizontal {
    flex: 0 0 70vw;
    height: 60vh;
    overflow: hidden;
    position: relative;
    border-radius: 2px;
    background: #14161a;
}

.slider-item-horizontal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.slider-item-horizontal:hover img {
    transform: scale(1.03);
}

.slider-progress-bar-horizontal {
    position: absolute;
    bottom: 8vh;
    left: 10%;
    width: 80%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.slider-progress-fill-horizontal {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: #ffffff;
    transition: width 0.1s ease-out;
}

@media (max-width: 768px) {
    .project-gallery-scroll-container {
        height: 200vh;
    }
    .slider-item-horizontal {
        flex: 0 0 85vw;
        height: 45vh;
    }
    .project-gallery-slider-horizontal {
        gap: 20px;
        padding: 0 7.5%;
    }
    .slider-progress-bar-horizontal {
        left: 7.5%;
        width: 85%;
        bottom: 12vh;
    }
}

/* ===========================
   MOBILE RESPONSIVENESS
   =========================== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease;
}

/* Hamburger animation */
.mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
}
.mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
}

@media (max-width: 1024px) {
    /* Navbar */
    .nav-container {
        padding: 15px 24px;
    }

    .brand-logo {
        max-height: 60px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100vw;
        height: 100vh;
        background: rgba(13, 15, 18, 0.95);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease-in-out;
        z-index: 1000;
        gap: 30px;
        flex: none;
    }

    .nav-menu-wrapper.mobile-active {
        right: 0;
    }

    .nav-menu-wrapper.mobile-active .nav-links {
        display: flex;
    }

    .nav-menu-wrapper.mobile-active .btn-primary {
        display: inline-flex;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .nav-link {
        font-size: 1.5rem;
    }

    /* Hero overlay on mobile */
    .hero-content-wrapper {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 30px;
        padding: 0;
    }

    .overlay-left {
        padding-right: 0;
    }

    .hero-display {
        font-size: clamp(2rem, 8vw, 3rem);
        text-align: left;
    }

    .hero-subtext {
        font-size: 0.95rem;
        max-width: 100%;
    }

    .options-container {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    .option-card {
        padding: 22px 20px;
    }

    .option-title {
        font-size: 1.2rem;
    }

    /* Footer */
    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-logo-small {
        max-width: 180px;
        margin: 0 auto 25px;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-links-block, .footer-contact-block {
        align-items: center;
    }

    .wa-footer-btn {
        align-self: center;
    }

    .contact-phones {
        align-items: center;
    }

    /* About Page */
    .about-hero {
        height: 60vh;
        min-height: 400px;
    }

    .philosophy-section {
        padding: 60px 5%;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .philosophy-text {
        padding-right: 0;
    }

    .philosophy-image {
        padding-right: 0;
        padding-bottom: 30px;
    }

    .image-accent-box {
        display: none;
    }

    .editorial-quote::before {
        left: -15px;
        top: -25px;
        font-size: 5rem;
    }

    .about-hero-content {
        max-width: 100%;
    }

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

    .hero-desc {
        font-size: 0.95rem;
    }

    .stats-section {
        padding: 60px 5%;
    }

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

    /* Contact Page */
    .contact-arch-page {
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .contact-arch-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 5%;
    }

    .contact-hero-arch {
        margin-bottom: 60px;
        padding: 0 5%;
    }

    .arch-title-sharp {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }

    .arch-info-block {
        padding: 24px 20px;
        gap: 15px;
    }

    .arch-text a, .arch-text p {
        font-size: 1rem;
    }

    .contact-arch-map {
        min-height: 300px;
    }

    .huge-watermark {
        font-size: 18vw;
    }

    /* Projects Page */
    .projects-page-wrapper {
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .portfolio-grid-container {
        padding: 0 5%;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .project-title {
        font-size: 1.8rem;
    }

    .project-hero-title {
        font-size: 2.2rem;
    }

    .project-specs-bar {
        flex-direction: column;
        gap: 20px;
        padding: 30px 5%;
    }

    .hero-back-btn {
        bottom: 20px;
        right: 20px;
        font-size: 0.75rem;
    }

    .project-hero-full {
        padding: 80px 5% 60px;
    }

    .project-description-section {
        padding: 60px 5%;
    }

    .desc-text {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .editorial-quote {
        font-size: 1.4rem;
        line-height: 1.3;
    }

    .editorial-quote::before {
        left: -8px;
        top: -20px;
        font-size: 3.5rem;
    }

    .hero-display {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

    .arch-title-sharp {
        font-size: clamp(2rem, 9vw, 3rem);
    }

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

    .copyright-bar {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        text-align: center;
    }

    .option-card {
        padding: 18px 16px;
    }

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

    .footer-cta-apple {
        padding: 60px 20px 40px;
    }

    .cta-apple-text h2 {
        font-size: 2rem;
    }

    .cta-apple-text p {
        font-size: 0.9rem;
    }

    .desc-text {
        font-size: 1rem;
    }

    .stat-number {
        font-size: 4rem;
    }

    .philosophy-section {
        padding: 40px 5%;
    }

    .arch-brand-sig {
        display: none;
    }
}

/* ===========================
   FURNITURE (MOBİLYALAR) PAGE
   =========================== */
.furniture-page-wrapper {
    width: 100%;
    background: #0d0f12;
    padding-top: 120px;
    padding-bottom: 80px;
    overflow-x: hidden;
}

.furniture-hero {
    position: relative;
    padding: 80px 0 60px 0;
    margin-bottom: 40px;
}

.furniture-grid-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 48px;
}

/* Category Grid Landing page */
.furniture-categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.category-card {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 48px;
    text-decoration: none;
    border-radius: 4px;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.category-card-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
}

.category-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.category-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 15, 18, 0.9) 0%, rgba(13, 15, 18, 0.3) 100%);
    transition: background 0.4s ease;
}

.category-card-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.category-card-tag {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    color: var(--accent-color);
    font-weight: 500;
}

.category-card-title {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 300;
    color: #ffffff;
    margin: 0;
}

.category-card-link {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    margin-top: 5px;
}

.category-card-link svg {
    transition: transform 0.3s ease;
}

/* Card Hover States */
.category-card:hover {
    transform: translateY(-5px);
}

.category-card:hover .category-card-bg img {
    transform: scale(1.04);
}

.category-card:hover .category-card-overlay {
    background: linear-gradient(to top, rgba(13, 15, 18, 0.95) 0%, rgba(13, 15, 18, 0.4) 100%);
}

.category-card:hover .category-card-link svg {
    transform: translateX(5px);
}

/* ===========================
   FURNITURE DETAIL PAGE
   =========================== */
/* ===========================
   FURNITURE DETAIL PAGE
   =========================== */
.furniture-detail-page {
    width: 100%;
    background: #0d0f12;
    min-height: 100vh;
    padding-top: 140px;
    padding-bottom: 80px;
    position: relative;
}

/* Background blueprint vibe overlay */
.architectural-grid-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 100px 100px;
    background-position: center top;
}

.furniture-detail-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 48px;
    position: relative;
    z-index: 2;
}

/* Navigation Header */
.detail-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 24px;
    margin-bottom: 60px;
}

.back-link-minimal {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    transition: color 0.3s ease;
}

.back-link-minimal:hover {
    color: #ffffff;
}

.brand-watermark-small {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 500;
}

/* Navigation Header */
.furniture-top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 24px;
    margin-bottom: 60px;
}

.btn-back-arch {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    transition: color 0.3s ease;
}

.btn-back-arch:hover {
    color: #ffffff;
}

.arch-brand-sig {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 500;
}

/* Premium Split Grid */
.furniture-premium-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 100px;
    align-items: flex-start;
    margin-bottom: 120px;
}

.furniture-grid-left {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.giant-bg-number {
    font-family: var(--font-serif);
    font-size: 5.5rem;
    line-height: 0.9;
    font-weight: 100;
    color: rgba(255, 255, 255, 0.015);
    position: absolute;
    top: -45px;
    left: -20px;
    pointer-events: none;
    white-space: nowrap;
    letter-spacing: -0.01em;
}

.furniture-title-wrapper {
    position: relative;
    z-index: 2;
}

.furniture-tag-line {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    color: var(--accent-color);
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.furniture-main-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    color: #ffffff;
    font-weight: 300;
    line-height: 1.1;
    margin: 0;
}

.furniture-desc-text {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Right Grid Area */
.furniture-grid-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    padding-left: 60px;
}

.arch-statement-box {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.statement-title {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    letter-spacing: 0.25em;
    color: #ffffff;
    font-weight: 600;
    margin: 0;
}

.statement-text {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    font-weight: 300;
}

.btn-catalog-premium-arch {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 32px;
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    align-self: flex-start;
}

.btn-catalog-premium-arch svg {
    transition: transform 0.3s ease;
}

.btn-catalog-premium-arch:hover {
    background: #ffffff;
    color: #0d0f12;
    border-color: #ffffff;
}

.btn-catalog-premium-arch:hover svg {
    transform: translateY(3px);
}

/* Gallery Header Inside Horizontal Sticky */
.gallery-section-title-wrapper {
    position: absolute;
    top: 6vh;
    left: 10%;
    z-index: 10;
}

.gallery-title-tag {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    color: var(--accent-color);
    display: block;
    margin-bottom: 10px;
}

.gallery-main-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 300;
    color: #ffffff;
    margin: 0;
}

/* Responsive updates */
@media (max-width: 1024px) {
    .furniture-premium-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .furniture-grid-right {
        border-left: none;
        padding-left: 0;
    }
    .furniture-categories-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .furniture-grid-container {
        padding: 0 24px;
    }
    .furniture-detail-container {
        padding: 0 24px;
    }
    .category-card {
        padding: 30px;
    }
    .category-card-title {
        font-size: 1.8rem;
    }
}

/* ==========================================
   MUTFAK MODÜL PLANNER KATALOĞU (DARK THEME)
   ========================================== */
.products-dark-page {
    background: radial-gradient(circle at 50% 20%, #171a24 0%, #08090c 100%) !important;
    color: #e6e4df;
    min-height: 100vh;
    position: relative;
    padding-bottom: 120px;
}

.planner-grid-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(184, 155, 114, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(184, 155, 114, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 1;
}

/* Two Column Split Workspace Layout */
.catalog-planner-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
    max-width: 1700px;
    margin: 0 auto;
    padding: 0 48px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.catalog-main-panel {
    flex-grow: 1;
}

/* Vertical Sticky Workbench Sidebar (Right) */
.workbench-sidebar {
    position: sticky;
    top: 110px;
    z-index: 100;
    max-height: calc(100vh - 140px);
}

.workbench-wrapper {
    background: rgba(13, 15, 20, 0.7);
    border: 1px solid rgba(184, 155, 114, 0.15);
    border-radius: 8px;
    padding: 24px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    display: flex;
    flex-direction: column;
}

.workbench-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 12px;
    margin-bottom: 16px;
}

.wb-header-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pulse-indicator {
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(184, 155, 114, 0.7);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(184, 155, 114, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(184, 155, 114, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(184, 155, 114, 0); }
}

.wb-tag {
    font-size: 0.75rem;
    color: var(--accent-color);
    letter-spacing: 0.25em;
    font-weight: 500;
}

.workbench-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.wb-total-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    font-weight: 500;
}

.wb-total-value {
    font-size: 1.25rem;
    color: #ffffff;
    font-weight: 300;
}

.wb-total-value strong {
    color: var(--accent-color);
    font-weight: 600;
}

.workbench-canvas.vertical {
    min-height: 280px;
    max-height: calc(100vh - 380px);
    background: rgba(8, 9, 12, 0.6);
    border: 1px dashed rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
    overflow-y: auto;
    position: relative;
}

/* Scrollbars */
.workbench-canvas.vertical::-webkit-scrollbar {
    width: 3px;
}
.workbench-canvas.vertical::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.01);
}
.workbench-canvas.vertical::-webkit-scrollbar-thumb {
    background: rgba(184, 155, 114, 0.2);
    border-radius: 3px;
}
.workbench-canvas.vertical::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

.canvas-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 300;
    line-height: 1.5;
}

.placeholder-icon {
    color: rgba(255,255,255,0.08);
}

/* Visual Node Card inside Vertical Sidebar (Horizontal Strip layout) */
.canvas-module-node {
    background: rgba(184, 155, 114, 0.02);
    border: 1px solid rgba(184, 155, 114, 0.15);
    border-radius: 4px;
    padding: 10px 14px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
    animation: nodeEnter 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.15) forwards;
}

@keyframes nodeEnter {
    from { opacity: 0; transform: translateY(10px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.canvas-module-node:hover {
    border-color: var(--accent-color);
    background: rgba(184, 155, 114, 0.05);
}

.remove-node-btn {
    position: absolute;
    top: 6px; right: 6px;
    width: 16px; height: 16px;
    background: rgba(231, 76, 60, 0.8);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 0.75rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease, background 0.2s;
}

.canvas-module-node:hover .remove-node-btn {
    opacity: 1;
}

.remove-node-btn:hover {
    background: #e74c3c;
}

.node-img-wrapper {
    height: 54px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.02);
    border-radius: 3px;
    flex-shrink: 0;
}

.node-img-wrapper img {
    max-height: 90%;
    max-width: 90%;
    object-fit: contain;
    filter: invert(1) brightness(1.25);
    mix-blend-mode: screen;
}

.node-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    flex-grow: 1;
    border-top: none;
    padding-top: 0;
}

.node-code {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.65rem;
    color: var(--accent-color);
    font-weight: 600;
}

.node-width {
    font-size: 0.75rem;
    color: #ffffff;
    font-weight: 500;
}

/* Actions in Sidebar */
.workbench-actions-vertical {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
}

.btn-clear-wb {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.5);
    padding: 10px;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-clear-wb:hover {
    border-color: #e74c3c;
    color: #e74c3c;
    background: rgba(231, 76, 60, 0.05);
}

.btn-whatsapp-plan {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(37, 211, 102, 0.4);
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s ease;
}

.btn-whatsapp-plan:hover {
    background: rgba(37, 211, 102, 0.15);
    border-color: #25d366;
}

.btn-whatsapp-plan.disabled {
    pointer-events: none;
    opacity: 0.3;
    border-color: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.3);
}

/* Catalog Styling */
.tab-controls {
    display: flex;
    justify-content: flex-start;
    gap: 12px;
}

.tab-btn {
    background: rgba(25, 27, 33, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    padding: 12px 24px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: all 0.4s ease;
    border-radius: 4px;
    backdrop-filter: blur(8px);
}

.tab-btn:hover {
    border-color: rgba(184, 155, 114, 0.3);
    color: #ffffff;
}

.tab-btn.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #0d0f12;
    font-weight: 600;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: tabFadeIn 0.4s ease forwards;
}

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

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.module-card {
    background: rgba(25, 27, 33, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.module-card:hover {
    transform: translateY(-4px);
    border-color: rgba(184, 155, 114, 0.2);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

.module-img-container {
    width: 100%;
    height: 200px;
    background: #000000;
    border-bottom: 1px solid rgba(255,255,255,0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.module-img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    filter: invert(1) brightness(1.2);
    mix-blend-mode: screen;
    transition: transform 0.5s ease;
}

.module-card:hover .module-img {
    transform: scale(1.04);
}

.module-details {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.module-code {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.65rem;
    color: var(--accent-color);
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 4px;
}

.module-name {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: #ffffff;
    margin: 0 0 12px 0;
    font-weight: 300;
    line-height: 1.35;
    min-height: 40px;
}

.module-specs {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex-grow: 1;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.04);
    padding-bottom: 4px;
}

.spec-label {
    color: var(--text-muted);
    font-weight: 300;
}

.spec-val {
    color: #ffffff;
    font-weight: 400;
}

.width-select {
    background: rgba(10, 11, 14, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    padding: 2px 6px;
    font-size: 0.75rem;
    border-radius: 3px;
    outline: none;
    cursor: pointer;
}

.width-select:hover {
    border-color: var(--accent-color);
}

.btn-add-to-canvas {
    display: block;
    width: 100%;
    text-align: center;
    padding: 10px;
    background: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 4px;
    cursor: pointer;
}

.btn-add-to-canvas:hover {
    background: var(--accent-color);
    color: #0d0f12;
}

/* Responsive showcase */
@media (max-width: 1100px) {
    .catalog-planner-layout {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 24px;
    }
    .workbench-sidebar {
        position: static;
        max-height: none;
    }
    .workbench-canvas.vertical {
        max-height: 280px;
    }
}

@media (max-width: 768px) {
    .tab-controls {
        flex-direction: column;
        gap: 8px;
    }
    .tab-btn {
        width: 100%;
    }
}
/* Footer Responsive */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .footer-brand {
        grid-column: 1 / -1;
    }
}
@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-bottom-sleek {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ===========================
   ABOUT PAGE REFRESH
   =========================== */
.features-section {
    padding: 100px 5%;
    background: var(--bg-color);
}
.features-header {
    margin-bottom: 60px;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}
.feature-card {
    background: rgba(25, 27, 33, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 32px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s ease;
}
.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(184, 155, 114, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px auto;
    background: rgba(184, 155, 114, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
}
.feature-icon svg {
    width: 32px;
    height: 32px;
}
.feature-card h3 {
    font-family: var(--font-sans);
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 16px;
    color: #fff;
}
.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}
.about-closing-section {
    padding: 120px 5%;
    background: radial-gradient(circle at center, rgba(184, 155, 114, 0.08) 0%, var(--bg-color) 70%);
}
.closing-content {
    max-width: 800px;
    margin: 0 auto;
}
.closing-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--accent-color);
    margin-bottom: 24px;
    font-weight: 400;
}
.closing-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 48px;
}
.closing-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.closing-brand .brand-name {
    font-family: var(--font-eurostile);
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.15em;
}
.closing-brand .brand-slogan {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    color: var(--accent-color);
    text-transform: uppercase;
}

/* ===========================
   HOME STATIC HERO & STATS
   =========================== */
.home-hero-static {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.home-hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0;
}
.home-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-overlay-dark {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(13, 15, 18, 0.95) 0%, rgba(13, 15, 18, 0.7) 100%);
}
.home-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 5%;
}
.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid rgba(184, 155, 114, 0.3);
    border-radius: 30px;
    color: var(--accent-color);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    margin-bottom: 30px;
    text-transform: uppercase;
}
.hero-display-title {
    font-family: var(--font-sans);
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1.1;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}
.hero-desc-large {
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.hero-btn {
    padding: 16px 48px;
    font-size: 1rem;
    border-radius: 50px;
}

/* Home Stats Bar */
.home-stats-bar {
    background: #08090b;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 5%;
}
.home-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.home-stat-box {
    padding: 20px;
}
.home-stat-box .stat-val {
    font-family: var(--font-sans);
    font-size: 3.5rem;
    font-weight: 300;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1;
}
.home-stat-box .stat-plus {
    color: var(--accent-color);
    font-weight: 500;
}
.home-stat-box .stat-name {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

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

/* ===========================
   ABOUT PAGE STYLES (MODERN REDESIGN)
   =========================== */
.about-page-modern {
    width: 100%;
    background-color: var(--bg-color);
    overflow: hidden;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUpAnim 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

@keyframes fadeInUpAnim {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Typography Shared */
.section-label {
    font-size: 0.8rem;
    color: var(--accent-color);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.section-label::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--accent-color);
}
.center-label {
    justify-content: center;
}
.center-label::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--accent-color);
    display: block;
}
.center-label::after {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--accent-color);
    margin-left: 12px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 30px;
}

.text-accent {
    color: var(--accent-color);
    font-style: italic;
}

/* About Hero Modern */
.about-hero-modern {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 450px;
    display: flex;
    align-items: center;
    padding-top: 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.about-hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0;
}
.about-hero-bg img {
    width: 100%; height: 100%; object-fit: cover;
}
.hero-overlay-dark {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(13,15,18,0.9) 0%, rgba(13,15,18,0.4) 50%, rgba(13,15,18,0.8) 100%);
}

.hero-content-modern {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero-label-modern {
    display: inline-block;
    font-size: 0.9rem;
    color: var(--accent-color);
    letter-spacing: 0.4em;
    text-transform: uppercase;
    margin-bottom: 30px;
    border: 1px solid rgba(184, 155, 114, 0.3);
    padding: 8px 20px;
    border-radius: 30px;
    backdrop-filter: blur(5px);
}

.hero-title-modern {
    font-family: var(--font-serif);
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 30px;
}

.text-accent-glow {
    color: #fff;
    text-shadow: 0 0 20px rgba(184, 155, 114, 0.5);
    font-style: italic;
}

.hero-desc-modern {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    line-height: 1.8;
    font-weight: 300;
}

/* Vision Section */
.vision-section {
    padding: 150px 0;
    position: relative;
}

.vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.vision-image-wrapper {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.vision-img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    filter: brightness(0.85);
    transition: filter 0.5s ease, transform 0.8s ease;
}

.vision-image-wrapper:hover .vision-img {
    filter: brightness(1);
    transform: scale(1.03);
}

.glass-card {
    background: rgba(25, 27, 33, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(184, 155, 114, 0.2);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.vision-float-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    z-index: 2;
    text-align: center;
}

.vision-float-card h3 {
    font-size: 3.5rem;
    color: var(--accent-color);
    margin: 0;
    font-family: var(--font-serif);
    line-height: 1;
}

.vision-float-card p {
    margin: 10px 0 0 0;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.vision-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-muted);
    font-weight: 300;
    margin-bottom: 20px;
}

/* Values Section */
.values-section {
    padding: 100px 0 150px;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.section-header {
    margin-bottom: 60px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.value-card {
    background: rgba(25, 27, 33, 0.4);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 50px 40px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: rgba(184, 155, 114, 0.3);
    background: rgba(25, 27, 33, 0.8);
}

.value-icon {
    color: var(--accent-color);
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
}

.value-card h3 {
    font-size: 1.5rem;
    font-family: var(--font-serif);
    margin: 0 0 15px 0;
}

.value-card p {
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
    font-weight: 300;
}

.card-glow {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at top right, rgba(184,155,114,0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}
.value-card:hover .card-glow { opacity: 1; }

/* Craftsmanship Section */
.craftsmanship-section {
    position: relative;
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}

.craftsmanship-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--bg-color) 0%, rgba(13,15,18,0.5) 50%, var(--bg-color) 100%);
    z-index: 1;
}

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

.mega-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 5vw, 5rem);
    color: #fff;
    margin: 0 0 20px 0;
    text-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

.mega-subtitle {
    font-size: 1.2rem;
    color: var(--accent-color);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

@media (max-width: 992px) {
    .vision-grid, .values-grid { grid-template-columns: 1fr; }
    .vision-float-card { bottom: 20px; right: 20px; }
}

.craft-gradient-bg {
    background: radial-gradient(ellipse at center, rgba(60, 40, 20, 0.8) 0%, rgba(13, 15, 18, 1) 70%),
                repeating-linear-gradient(
                    45deg,
                    rgba(184, 155, 114, 0.03) 0px,
                    rgba(184, 155, 114, 0.03) 1px,
                    transparent 1px,
                    transparent 40px
                );
    background-attachment: fixed;
}

/* --- V2 DESIGNS (About Redesign) --- */

.about-hero-v2 {
    padding: 120px 0 60px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-v2-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-v2-text { padding-right: 40px; }
.hero-v2-text h1 { margin: 20px 0; line-height: 1.1; }
.hero-v2-text p { font-size: 1.2rem; opacity: 0.8; margin-bottom: 30px; }

.badge-v2 {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid rgba(184, 155, 114, 0.4);
    border-radius: 30px;
    color: var(--accent-color);
    letter-spacing: 0.2em;
    font-size: 0.8rem;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.hero-v2-image-wrap { position: relative; }

.hero-v2-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 30px 0 30px 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

.hero-v2-accent-box {
    position: absolute;
    right: -30px;
    bottom: -30px;
    width: 80%;
    height: 80%;
    border: 2px solid var(--accent-color);
    border-radius: 30px 0 30px 0;
    z-index: 1;
    opacity: 0.5;
}

.vision-section-v2 {
    padding: 80px 0;
}

.vision-v2-wrapper {
    background: linear-gradient(145deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0) 100%);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 40px;
    display: flex;
    margin: 40px auto;
    max-width: 1400px;
    position: relative;
    padding: 60px;
    gap: 80px;
}

.vision-v2-image-side {
    flex: 1;
    position: relative;
    margin-top: -120px;
    margin-bottom: -40px;
}

.vision-v2-image-side img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.7);
}

.vision-v2-content-side {
    flex: 1;
    position: relative;
    padding-left: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vertical-text {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: left center;
    color: var(--accent-color);
    letter-spacing: 0.6em;
    font-size: 0.75rem;
    text-transform: uppercase;
    opacity: 0.6;
}

.vision-v2-stats {
    display: flex;
    gap: 60px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.stat-box h3 { color: var(--accent-color); font-size: 3rem; margin-bottom: 5px; font-weight: 300; line-height: 1; }
.stat-box span { font-size: 0.9rem; opacity: 0.6; letter-spacing: 0.05em; text-transform: uppercase; }

@media (max-width: 992px) {
    .hero-v2-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-v2-text { padding-right: 0; text-align: center; }
    .hero-v2-img { height: 400px; border-radius: 20px; }
    .hero-v2-accent-box { display: none; }
    
    .vision-v2-wrapper { flex-direction: column; padding: 40px 20px; gap: 40px; margin-top: 100px; }
    .vision-v2-image-side { margin-top: -80px; margin-bottom: 0; }
    .vision-v2-image-side img { min-height: 300px; }
    .vision-v2-content-side { padding-left: 0; }
    .vertical-text { display: none; }
    .vision-v2-stats { flex-direction: column; gap: 30px; text-align: center; }
}

/* --- V2 DESIGNS (Contact Redesign) --- */

.contact-v2-page {
    padding: 150px 0 100px 0;
    min-height: 100vh;
    background: radial-gradient(circle at 50% 0%, rgba(184, 155, 114, 0.05) 0%, rgba(13, 15, 18, 1) 50%);
}
.contact-v2-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}
.contact-v2-header {
    text-align: center;
    margin-bottom: 80px;
}
.contact-v2-header p {
    font-size: 1.2rem;
    opacity: 0.7;
    max-width: 600px;
    margin: 20px auto 0;
}
.contact-v2-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: stretch;
}
.contact-v2-form-wrapper {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 30px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.contact-v2-form-wrapper h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #fff;
    font-weight: 300;
}
.contact-v2-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.input-group input, .input-group textarea {
    width: 100%;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 16px 20px;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}
.input-group input:focus, .input-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(0,0,0,0.5);
    box-shadow: 0 0 0 4px rgba(184, 155, 114, 0.1);
}
.contact-v2-form .btn-solid-gold {
    align-self: flex-start;
    padding: 16px 40px;
    border-radius: 12px;
    font-size: 1.1rem;
    cursor: pointer;
    border: none;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    background: var(--accent-color);
    color: #fff;
    font-weight: 500;
    transition: all 0.3s ease;
}
.contact-v2-form .btn-solid-gold:hover {
    background: #d8b884;
    transform: translateY(-2px);
}

.contact-v2-info-map {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    min-height: 600px;
}
.v2-map-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.v2-map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(100%) invert(92%) contrast(83%);
}
.map-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(13, 15, 18, 0.95) 0%, rgba(13, 15, 18, 0.3) 100%);
    pointer-events: none;
}
.v2-floating-info-cards {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 50px;
    height: 100%;
    justify-content: center;
}
.v2-floating-info-cards .info-card {
    background: rgba(20, 22, 25, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 20px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    max-width: 420px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.v2-floating-info-cards .info-card:hover {
    transform: translateX(10px);
    border-color: rgba(184, 155, 114, 0.3);
}
.info-card .icon {
    width: 50px;
    height: 50px;
    background: rgba(184, 155, 114, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    flex-shrink: 0;
}
.info-card .icon svg { width: 24px; height: 24px; }
.info-card .details { display: flex; flex-direction: column; }
.info-card .details span { font-size: 0.8rem; letter-spacing: 0.1em; color: var(--accent-color); text-transform: uppercase; margin-bottom: 5px; font-weight: bold; }
.info-card .details p, .info-card .details a { color: #fff; font-size: 1rem; line-height: 1.5; text-decoration: none; transition: color 0.3s ease; margin: 0; }
.info-card .details a:hover { color: var(--accent-color); }
.info-card .details a + a { margin-top: 5px; } 

@media (max-width: 992px) {
    .contact-v2-grid { grid-template-columns: 1fr; }
    .contact-v2-info-map { min-height: 500px; }
    .input-row { grid-template-columns: 1fr; }
    .v2-floating-info-cards { padding: 30px; align-items: center; }
    .v2-floating-info-cards .info-card { max-width: 100%; width: 100%; }
    .map-overlay-dark { background: rgba(13, 15, 18, 0.8); }
}

/* --- V2 DESIGNS (Bento Values) --- */
.values-section-v2 {
    padding: 100px 0;
}
.values-section-v2 .section-header {
    text-align: left;
    margin-bottom: 60px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}
.bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}
.bento-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 30px;
    padding: 50px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.4s ease, background 0.4s ease;
}
.bento-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.04);
    border-color: rgba(184, 155, 114, 0.2);
}
.bento-large {
    grid-row: span 2;
    background: linear-gradient(135deg, rgba(20,22,25,0.9) 0%, rgba(13,15,18,1) 100%);
}
.bento-icon {
    width: 60px;
    height: 60px;
    border-radius: 20px;
    background: rgba(184, 155, 114, 0.1);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}
.bento-icon svg { width: 30px; height: 30px; }
.bento-content h3 { font-size: 2rem; margin-bottom: 15px; color: #fff; font-weight: 300; }
.bento-content p { font-size: 1.1rem; opacity: 0.7; line-height: 1.6; margin: 0; }
.bento-large .bento-content h3 { font-size: 3rem; }
.bento-large .bento-content p { font-size: 1.3rem; }

.bento-bg-glow {
    position: absolute;
    bottom: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(184, 155, 114, 0.15) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 0;
}
.bento-card * { position: relative; z-index: 1; }

@media (max-width: 992px) {
    .bento-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .bento-large { grid-row: auto; }
    .bento-card { padding: 40px; }
}

/* --- V3 DESIGNS (Contact Form-less Redesign) --- */

.contact-v3-page {
    padding-top: 150px;
    background: radial-gradient(circle at 50% 0%, rgba(184, 155, 114, 0.05) 0%, rgba(13, 15, 18, 1) 50%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.contact-v3-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    flex: 1;
}
.contact-v3-header {
    text-align: center;
    margin-bottom: 80px;
}
.contact-v3-header p {
    font-size: 1.2rem;
    opacity: 0.7;
    max-width: 600px;
    margin: 20px auto 0;
}
.contact-v3-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 80px;
}
.v3-info-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 30px;
    padding: 40px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.4s ease, background 0.4s ease;
}
.v3-info-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.04);
    border-color: rgba(184, 155, 114, 0.2);
}
.v3-info-card .icon {
    width: 80px;
    height: 80px;
    background: rgba(184, 155, 114, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    margin-bottom: 30px;
}
.v3-info-card .icon svg { width: 40px; height: 40px; }
.v3-info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 400;
    letter-spacing: 0.05em;
}
.v3-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.v3-links a, .v3-links p {
    color: #fff;
    font-size: 1.1rem;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease, color 0.3s ease;
    margin: 0;
    line-height: 1.5;
}
.v3-links a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.v3-full-map {
    position: relative;
    height: 600px;
    width: 100%;
    margin-top: auto;
}
.v3-full-map iframe {
    filter: grayscale(100%) invert(92%) contrast(83%);
}
.v3-full-map .map-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(13, 15, 18, 1) 0%, rgba(13, 15, 18, 0.2) 20%, transparent 50%);
    pointer-events: none;
}

@media (max-width: 992px) {
    .contact-v3-cards { grid-template-columns: 1fr; }
    .v3-full-map { height: 400px; }
}

/* --- V3 DESIGNS (Editorial Values) --- */
.values-section-v3 {
    padding: 100px 0;
}
.values-section-v3 .section-header {
    text-align: left;
    margin-bottom: 80px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}
.editorial-values-list {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}
.editorial-value-row {
    display: grid;
    grid-template-columns: 100px 1fr 1.5fr;
    gap: 40px;
    padding: 50px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    align-items: center;
    transition: all 0.4s ease;
}
.editorial-value-row:last-child {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.editorial-value-row:hover {
    padding-left: 20px;
    background: linear-gradient(90deg, rgba(184, 155, 114, 0.05) 0%, transparent 100%);
    border-top-color: rgba(184, 155, 114, 0.5);
}
.ed-num {
    font-size: 3rem;
    font-weight: 200;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.2);
    transition: all 0.4s ease;
}
.editorial-value-row:hover .ed-num {
    color: var(--accent-color);
    -webkit-text-stroke: 0;
}
.ed-title h3 {
    font-size: 2.5rem;
    font-weight: 300;
    margin: 0;
    color: #fff;
    transition: color 0.4s ease;
}
.ed-desc p {
    font-size: 1.1rem;
    opacity: 0.7;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .editorial-value-row {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 40px 0;
    }
    .ed-num { font-size: 2.5rem; }
    .ed-title h3 { font-size: 1.8rem; }
    .editorial-value-row:hover { padding-left: 0; }
}
