/*
Theme Name: Aria Verdi Theme
Author: IMPACT
Description: Custom Theme for Aria Verdi - "Joyful Luxury" Edition
Version: 2.0
*/

/* ==========================================================================
   1. VARIABLES & DESIGN TOKENS
   ========================================================================== */
:root {
    /* Palette - Joyful Luxury */
    --bg-limestone: #F9F7F2;
    --header-bg-rgb: 249, 247, 242;
    --primary-teal: #005E58;
    --accent-gold: #DCC39D;
    --text-dark: #1A1A1A;
    --text-body: #4A4A4A;
    --white: #ffffff;
    --glass-border: rgba(255, 255, 255, 0.4);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.05);

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    --font-logo: 'Cinzel', 'Playfair Display', serif;

    /* Spacing & Architecture */
    --header-height: 90px;
    --container-width: 1280px;
    --radius-soft: 12px;
    --tracking-wide: 0.05em;
    --apt-card-h: 430px;
    --apt-card-gap: 30px;

    /* Animation */
    --ease-joy: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-fluid: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   2. RESET & BASE
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 0;
    font-size: 16px;
    background-color: var(--bg-limestone);
    margin-top: 0 !important;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-limestone);
    color: var(--text-body);
    line-height: 1.7;
    letter-spacing: var(--tracking-wide);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

p {
    font-size: 1.25rem;
}

body.homepage-2 {
    margin-top: 0 !important;
}

body.homepage-2 #wpadminbar {
    display: none !important;
}

body.homepage-2:not(.single-apartamente)::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 50% 50%, rgba(1, 26, 24, 0.2), rgba(1, 26, 24, 0.72));
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 9998;
}

@media (prefers-reduced-motion: no-preference) {


    body.homepage-2:not(.single-apartamente).hp2-page-exit {
        transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1), transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), filter 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        opacity: 0;
        transform: translateY(-12px) scale(0.996);
        filter: blur(2px);
    }

    body.homepage-2:not(.single-apartamente).hp2-page-exit::after {
        opacity: 0.9;
    }
}

@keyframes hp2PageEnter {
    from {
        opacity: 0;
        transform: translateY(14px) scale(0.992);
        filter: blur(3px);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: 2rem; }

a { text-decoration: none; color: inherit; transition: opacity 0.3s ease; }
img { max-width: 100%; height: auto; display: block; border-radius: var(--radius-soft); }

/* ==========================================================================
   3. UTILITIES
   ========================================================================== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.container-max {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.text-teal { color: var(--primary-teal); }
.text-gold { color: var(--accent-gold); }

.script-font.text-teal {
    color: var(--primary-teal);
}
.bg-teal { background-color: var(--primary-teal); }
.bg-limestone { background-color: var(--bg-limestone); }
.text-white { color: var(--white); }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-30 { margin-top: 30px; }
.mt-50 { margin-top: 50px; }
.mt-80 { margin-top: 80px; }

/* Glassmorphism */
.glass-panel {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: var(--radius-soft);
}

/* Gold Accent Line */
.gold-line {
    width: 60px;
    height: 2px;
    background-color: var(--accent-gold);
    display: block;
    margin: 20px auto;
}

/* Emphasis Text - Gold */
strong.gold {
    color: var(--accent-gold);
    font-weight: 500;
}

/* ==========================================================================
   4. HEADER (Split Layout)
   ========================================================================== */
body.homepage-2 .site-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1100;
    background-color: rgba(var(--header-bg-rgb), 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(220, 195, 157, 0.15);
    transition: background-color 0.5s ease, border-color 0.5s ease;
}

@supports not ((position: sticky) or (position: -webkit-sticky)) {
    body.homepage-2 .site-header {
        position: fixed;
    }
}

body.homepage-2 .site-header.scrolled {
    background-color: rgba(var(--header-bg-rgb), 0.98);
    border-bottom-color: rgba(0, 94, 88, 0.1);
}

.header-container {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}

/* Logo - Center */
.logo {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 40px;
    order: 2;
    flex-shrink: 0;
}

.logo img {
    height: 55px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.logo a:hover img {
    transform: scale(1.03);
}

/* Navigation - Split */
.nav-left, .nav-right {
    display: flex;
    align-items: center;
    gap: clamp(12px, 1.8vw, 25px);
    white-space: nowrap;
    flex: 1; /* Equal wings center the logo */
}

.nav-left {
    justify-content: flex-end;
    order: 1;
}

.nav-right {
    justify-content: flex-start;
    order: 3;
}

/* Responsive constraints for smaller desktops */
@media (min-width: 992px) and (max-width: 1300px) {
    .nav-left, .nav-right {
        gap: 12px;
    }
    .nav-link {
        font-size: 0.8rem;
    }
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-dark);
    position: relative;
    padding: 5px 0;
}

/* Fluid Underline Animation - Gold */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background-color: var(--accent-gold);
    transition: width 0.4s var(--ease-fluid), left 0.4s var(--ease-fluid);
}

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

/* Mobile nav toggle */
.mobile-nav-toggle {
    display: none;
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-direction: column;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    z-index: 3;
}

.mobile-nav-toggle__line {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--primary-teal);
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-nav-toggle.is-open .mobile-nav-toggle__line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.mobile-nav-toggle.is-open .mobile-nav-toggle__line:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.is-open .mobile-nav-toggle__line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav-toggle:hover {
    transform: translateY(-50%) scale(1.04);
    border-color: rgba(0, 94, 88, 0.25);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(4, 25, 24, 0.28);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    z-index: 1200;
}

.mobile-menu__panel {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #f9f7f2 0%, #f3efe7 55%, #f9f7f2 100%);
    border-radius: 0;
    padding: 24px 22px 36px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transform: translateY(-12px);
    opacity: 0;
    transition: transform 0.4s var(--ease-fluid), opacity 0.4s var(--ease-fluid);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu.is-open .mobile-menu__panel {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu__header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 8px;
    width: 100%;
}

.mobile-menu__close {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.mobile-menu__close:hover {
    transform: scale(1.05);
    border-color: rgba(0, 94, 88, 0.25);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.mobile-menu__close-line {
    position: absolute;
    width: 16px;
    height: 2px;
    background: var(--primary-teal);
    border-radius: 999px;
}

.mobile-menu__close-line:first-child {
    transform: rotate(45deg);
}

.mobile-menu__close-line:last-child {
    transform: rotate(-45deg);
}

.mobile-menu__nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    margin-top: auto;
    margin-bottom: auto;
}


.mobile-whatsapp {
    display: none;
}

@media (max-width: 991px) {
    .mobile-whatsapp {
        position: absolute;
        left: 22px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 100;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 0;
        line-height: 0;
    }
}

/* WhatsApp button styling (Green circle icon, white symbol, black text) */
.header-whatsapp,
.mobile-whatsapp {
    color: #111;
}

.header-whatsapp a,
.mobile-whatsapp a,
.header-whatsapp button,
.mobile-whatsapp button {
    background: transparent !important;
    background-color: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    color: inherit !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    text-decoration: none !important;
    font-family: var(--font-body) !important;
    font-weight: 500 !important;
    letter-spacing: 0.05em !important;
    padding: 0 !important;
}

.header-whatsapp a:focus,
.header-whatsapp a:hover,
.mobile-whatsapp a:focus,
.mobile-whatsapp a:hover,
.header-whatsapp button:focus,
.header-whatsapp button:hover,
.mobile-whatsapp button:focus,
.mobile-whatsapp button:hover {
    background-color: transparent !important;
    color: inherit !important;
    text-decoration: none !important;
}

/* The Green Circle Icon */
.header-whatsapp a > *:first-child,
.mobile-whatsapp a > *:first-child,
.header-whatsapp .whatsapp-icon,
.mobile-whatsapp .whatsapp-icon,
.header-whatsapp i,
.mobile-whatsapp i {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 36px !important;
    height: 36px !important;
    background-color: #25D366 !important;
    border-radius: 47% !important;
    transition: transform 0.3s var(--ease-joy), background-color 0.3s ease !important;
    flex-shrink: 0 !important;
}

/* White Icon inside green circle */
.header-whatsapp svg,
.mobile-whatsapp svg,
.header-whatsapp span svg,
.mobile-whatsapp span svg,
.header-whatsapp .whatsapp-icon svg,
.mobile-whatsapp .whatsapp-icon svg {
    color: #ffffff !important;
    fill: #ffffff !important;
    width: 18px !important;
    height: 18px !important;
    margin: 0 !important;
    display: block !important;
}

.header-whatsapp a:hover > *:first-child,
.mobile-whatsapp a:hover > *:first-child {
    transform: scale(1.1);
    background-color: #21bd5b !important;
}

.mobile-whatsapp svg,
.mobile-whatsapp i,
.mobile-whatsapp img {
    width: 20px;
    height: 20px;
    font-size: 20px;
    line-height: 1;
}

.mobile-menu__link {
    position: relative;
    padding: 6px 0;
    border-radius: 0;
    background: transparent;
    border: none;
    font-family: var(--font-heading);
    font-size: clamp(1rem, 4.2vw, 1.6rem);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-dark);
    transition: transform 0.3s ease, color 0.3s ease;
}

.mobile-menu__link:hover {
    transform: translateY(-1px);
}

.mobile-menu__link::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -8px;
    width: 0;
    height: 2px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    opacity: 0;
    transition: width 0.3s ease, opacity 0.3s ease;
}

.mobile-menu__link.is-active {
    color: var(--primary-teal);
}

.mobile-menu__link.is-active::after,
.mobile-menu__link:hover::after {
    width: 120px;
    opacity: 1;
}

body.mobile-menu-open {
    overflow: hidden;
}

/* ==========================================================================
   PREMIUM AUDIO BUTTON - "Ascultă natura"
   ========================================================================== */
.nature-audio-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: transparent;
    border: 1px solid rgba(220, 195, 157, 0.4);
    border-radius: 100px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--primary-teal);
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.08em;
    transition: all 0.4s var(--ease-fluid);
    position: relative;
    overflow: hidden;
}

.nature-audio-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 94, 88, 0.05), rgba(220, 195, 157, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.nature-audio-btn:hover::before {
    opacity: 1;
}

.nature-audio-btn:hover {
    border-color: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(220, 195, 157, 0.2);
}

.nature-btn-icon {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-teal);
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.nature-audio-btn:hover .nature-btn-icon {
    background: var(--accent-gold);
    transform: scale(1.1);
}

.nature-btn-icon .icon-play {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.nature-btn-icon .icon-pause {
    position: absolute;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* When playing */
.nature-audio-btn.is-playing .nature-btn-icon .icon-play {
    opacity: 0;
    transform: scale(0.8);
}

.nature-audio-btn.is-playing .nature-btn-icon .icon-pause {
    opacity: 1;
    transform: scale(1);
}

.nature-btn-text {
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   NATURE WAVEFORM - Subtle, Organic, Below Header
   ========================================================================== */
.nature-waveform {
    position: absolute;
    bottom: -25px;
    left: 0;
    right: 0;
    height: 30px;
    overflow: visible;
    pointer-events: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 1.2s ease, transform 1s ease;
}

.site-header.audio-playing .nature-waveform {
    opacity: 1;
    transform: translateY(0);
}

.waveform-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.waveform-svg {
    width: 100%;
    height: 100%;
}

.wave-path {
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.site-header.audio-playing .wave-path {
    opacity: 0.25;
}

.wave-1 {
    stroke: var(--primary-teal);
    animation: birdFlight1 4s ease-in-out infinite;
}

.wave-2 {
    stroke: var(--accent-gold);
    animation: birdFlight2 4.5s ease-in-out infinite;
    animation-delay: 0.8s;
}

.helix-dots circle {
    fill: var(--accent-gold);
    opacity: 0;
    transition: opacity 1.5s ease;
}

.site-header.audio-playing .helix-dots circle {
    opacity: 0.15;
    animation: gentlePulse 3s ease-in-out infinite;
}

.site-header.audio-playing .helix-dots circle:nth-child(odd) {
    animation-delay: 0.5s;
}

.site-header.audio-playing .helix-dots circle:nth-child(3n) {
    animation-delay: 1s;
}

/* Gentle bird-like flight animations */
@keyframes birdFlight1 {
    0%, 100% {
        d: path("M0,15 Q30,12 60,15 T120,14 T180,16 T240,14 T300,15 T360,13 T420,16 T480,14 T540,15 T600,13 T660,16 T720,14 T780,15 T840,13 T900,16 T960,14 T1020,15 T1080,13 T1140,16 T1200,15");
    }
    25% {
        d: path("M0,15 Q30,14 60,15 T120,16 T180,13 T240,16 T300,14 T360,15 T420,13 T480,16 T540,14 T600,15 T660,13 T720,16 T780,14 T840,15 T900,13 T960,16 T1020,14 T1080,15 T1140,13 T1200,15");
    }
    50% {
        d: path("M0,15 Q30,16 60,15 T120,13 T180,15 T240,13 T300,16 T360,15 T420,14 T480,15 T540,16 T600,14 T660,15 T720,13 T780,16 T840,14 T900,15 T960,13 T1020,16 T1080,14 T1140,15 T1200,15");
    }
    75% {
        d: path("M0,15 Q30,13 60,15 T120,15 T180,14 T240,15 T300,13 T360,16 T420,15 T480,13 T540,15 T600,16 T660,14 T720,15 T780,13 T840,16 T900,14 T960,15 T1020,13 T1080,16 T1140,14 T1200,15");
    }
}

@keyframes birdFlight2 {
    0%, 100% {
        d: path("M0,15 Q30,18 60,15 T120,16 T180,14 T240,16 T300,15 T360,17 T420,14 T480,16 T540,15 T600,17 T660,14 T720,16 T780,15 T840,17 T900,14 T960,16 T1020,15 T1080,17 T1140,14 T1200,15");
    }
    25% {
        d: path("M0,15 Q30,16 60,15 T120,14 T180,17 T240,14 T300,16 T360,15 T420,17 T480,14 T540,16 T600,15 T660,17 T720,14 T780,16 T840,15 T900,17 T960,14 T1020,16 T1080,15 T1140,17 T1200,15");
    }
    50% {
        d: path("M0,15 Q30,14 60,15 T120,17 T180,15 T240,17 T300,14 T360,15 T420,16 T480,15 T540,14 T600,16 T660,15 T720,17 T780,14 T840,16 T900,15 T960,17 T1020,14 T1080,16 T1140,15 T1200,15");
    }
    75% {
        d: path("M0,15 Q30,17 60,15 T120,15 T180,16 T240,15 T300,17 T360,14 T420,15 T480,17 T540,15 T600,14 T660,16 T720,15 T780,17 T840,14 T900,16 T960,15 T1020,17 T1080,14 T1140,16 T1200,15");
    }
}

@keyframes gentlePulse {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.25; }
}


/* ==========================================================================
   5. SECTIONS & LAYOUT
   ========================================================================== */
main {
    padding-top: 0;
}

.section-padding {
    padding: 100px 0;
}

section[id] {
    scroll-margin-top: 0;
}

#despre {
    position: relative;
    isolation: isolate;
    background-color: rgba(var(--header-bg-rgb), 0.95);
}

#despre::before,
#despre::after {
    display: none;
}

#despre > .container {
    position: relative;
    z-index: 1;
}

#locatie {
    background-color: #ffffff;
}

/* Hero Section - Premium Motto */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

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

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(249, 247, 242, 0.95) 0%,
        rgba(249, 247, 242, 0.82) 40%,
        rgba(249, 247, 242, 0.68) 80%
    );
}

.hero-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 160px;
    background: linear-gradient(
        180deg,
        rgba(249, 247, 242, 0) 0%,
        rgba(249, 247, 242, 0.55) 70%,
        rgba(249, 247, 242, 0.8) 100%
    );
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 120px 20px 80px;
    max-width: 1000px;
}

.hero-content::before {
    content: '';
    position: absolute;
    inset: -160px -200px;
    background: radial-gradient(
        ellipse at center,
        rgba(249, 247, 242, 0.95) 0%,
        rgba(249, 247, 242, 0.78) 50%,
        rgba(249, 247, 242, 0) 82%
    );
    filter: blur(8px);
    border-radius: 50%;
    opacity: 0.45;
    z-index: -1;
}

/* Hero Motto Typography */
.hero-motto {
    margin-bottom: 50px;
}

.hero-logo {
    display: flex;
    justify-content: center;
    margin: 0 0 18px;
}

.hero-logo img {
    width: min(60%, 960px);
    height: auto;
    display: block;
}

.hero-intro {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--text-body);
    margin-bottom: 20px;
    letter-spacing: 0.08em;
}

.intro-company {
    font-weight: 600;
    color: var(--primary-teal);
    font-size: 1.8rem;
}

.intro-action {
    font-weight: 300;
    font-style: italic;
    margin-left: 5px;
}

.hero-title {
    font-family: var(--font-logo);
    font-size: clamp(3.5rem, 10vw, 7rem);
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1;
    margin-bottom: 0;
    color: #b58c5f;
    background-image: linear-gradient(100deg, #b58c5f 0%, #d7c19c 45%, #b58c5f 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.25));
}

.title-aria {
    display: inline-block;
}

.title-verdi {
    display: inline-block;
    color: inherit;
}

.hero-content > h1 {
    font-family: var(--font-logo);
    color: #b58c5f;
    background-image: linear-gradient(100deg, #b58c5f 0%, #d7c19c 45%, #b58c5f 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.25));
}

.hero-divider {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    margin: 35px auto;
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.6;
    max-width: 650px;
    margin: 0 auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}

.hero-tagline em {
    font-style: italic;
    color: var(--primary-teal);
    font-weight: 500;
}

.mobile-break {
    display: none;
}

/* Hero Actions */
.hero-actions {
    margin-top: 40px;
    margin-bottom: 50px;
}

/* Hero Address */
.hero-address {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-body);
    opacity: 0.8;
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    border: 1px solid rgba(220, 195, 157, 0.2);
}

.address-icon {
    color: var(--accent-gold);
    display: flex;
    align-items: center;
}

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

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

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* Responsive Hero */
@media (max-width: 991px) {
    .hero-content {
        padding: 100px 20px 60px;
    }
    
    .hero-intro {
        font-size: 1rem;
    }
    
    .mobile-break {
        display: inline;
    }
}

@media (max-width: 600px) {
    .hero-content {
        padding: 80px 15px 50px;
    }
    
    .hero-intro {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .intro-company {
        display: block;
        margin-bottom: 5px;
    }
    
    .intro-action {
        margin-left: 0;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-divider {
        width: 60px;
        margin: 25px auto;
    }
    
    .hero-tagline {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .hero-address {
        font-size: 0.8rem;
        padding: 10px 18px;
    }
    
    .scroll-indicator {
        bottom: 25px;
    }
    
    .scroll-line {
        height: 40px;
    }
    
    .nature-experience {
        bottom: 80px;
        right: 20px;
        padding: 15px 20px;
    }
    
    .nature-hint {
        display: none;
    }
}

@media (max-width: 600px) {
    .lifestyle-visual {
        height: clamp(280px, 56.25vw, 520px);
    }

    .lifestyle-hero-content {
        padding: 0 12px;
    }

    .features-section {
        padding: 40px 0 70px;
    }
}

@media (max-width: 768px) {
    .map-container {
        width: 100vw;
        max-width: 100vw;
        left: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
        border-radius: 0;
        padding: 0;
    }

    .map-container img {
        border-radius: 0;
    }
}

/* ==========================================================================
   PREMIUM NATURE AUDIO EXPERIENCE
   ========================================================================== */
.nature-experience {
    position: fixed;
    bottom: 100px;
    right: 40px;
    z-index: 100;
    padding: 18px 28px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(220, 195, 157, 0.3);
    border-radius: 60px;
    box-shadow: 0 15px 50px rgba(0, 94, 88, 0.1), 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s var(--ease-fluid);
    cursor: pointer;
}

.nature-experience:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 60px rgba(0, 94, 88, 0.15), 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-gold);
}

.nature-experience.is-playing {
    border-color: var(--primary-teal);
    background: rgba(0, 94, 88, 0.05);
}

.nature-experience-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Play Button */
.nature-play-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--accent-gold);
    background: linear-gradient(135deg, var(--primary-teal) 0%, #003D39 100%);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.nature-play-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 5px 20px rgba(0, 94, 88, 0.3);
}

.nature-play-btn .play-icon {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.nature-play-btn .sound-waves {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    height: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* When playing */
.nature-experience.is-playing .nature-play-btn .play-icon {
    opacity: 0;
    transform: scale(0.8);
}

.nature-experience.is-playing .nature-play-btn .sound-waves {
    opacity: 1;
}

/* Sound Wave Animation */
.sound-waves .wave {
    width: 3px;
    height: 8px;
    background: var(--white);
    border-radius: 3px;
    animation: waveAnimation 1s ease-in-out infinite;
}

.sound-waves .wave:nth-child(1) { animation-delay: 0s; height: 12px; }
.sound-waves .wave:nth-child(2) { animation-delay: 0.1s; height: 18px; }
.sound-waves .wave:nth-child(3) { animation-delay: 0.2s; height: 24px; }
.sound-waves .wave:nth-child(4) { animation-delay: 0.1s; height: 18px; }
.sound-waves .wave:nth-child(5) { animation-delay: 0s; height: 12px; }

@keyframes waveAnimation {
    0%, 100% { transform: scaleY(0.5); opacity: 0.7; }
    50% { transform: scaleY(1); opacity: 1; }
}

/* Text */
.nature-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.nature-label {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    letter-spacing: 0.02em;
}

.nature-hint {
    font-size: 0.75rem;
    color: var(--text-body);
    opacity: 0.8;
    font-style: italic;
}

/* Progress Bar */
.nature-progress {
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 2px;
    background: rgba(220, 195, 157, 0.3);
    border-radius: 2px;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nature-experience.is-playing .nature-progress {
    opacity: 1;
}

.nature-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent-gold), var(--primary-teal));
    border-radius: 2px;
    transition: width 0.1s linear;
}

/* Responsive */
@media (max-width: 991px) {
    .nature-experience {
        bottom: 80px;
        right: 25px;
        padding: 14px 22px;
    }
    
    .nature-play-btn {
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 600px) {
    .nature-experience {
        bottom: 70px;
        right: 15px;
        left: 15px;
        border-radius: 20px;
        padding: 12px 18px;
    }
    
    .nature-experience-content {
        gap: 12px;
    }
    
    .nature-play-btn {
        width: 40px;
        height: 40px;
    }
    
    .nature-label {
        font-size: 0.9rem;
    }
    
    .nature-hint {
        font-size: 0.7rem;
    }
}




/* Grid System */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.despre-grid {
    align-items: stretch;
}

.despre-grid .image-wrapper {
    height: 100%;
}

.despre-grid .image-wrapper img {
    height: 100%;
    object-fit: cover;
}

@media (max-width: 900px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ==========================================================================
   6. COMPONENTS
   ========================================================================== */

/* Buttons */
.btn-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    border-radius: 100px;
    background-color: var(--primary-teal);
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--accent-gold);
}

.btn-pill:hover {
    transform: scale(1.05);
    background-color: var(--text-dark);
    box-shadow: 0 5px 15px rgba(220, 195, 157, 0.25);
}

/* Force hero CTA styling (avoid theme overrides) */
.homepage-2 .hero-actions .btn-pill {
    background-color: var(--primary-teal) !important;
    color: var(--white) !important;
    border-color: var(--accent-gold) !important;
}

.homepage-2 .hero-actions .btn-pill:hover {
    background-color: #0b4f49 !important;
    color: var(--white) !important;
}

/* Feature Cards */
.feature-card {
    padding: 40px;
    text-align: center;
    transition: transform 0.4s var(--ease-fluid), background-color 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid transparent;
    border-radius: var(--radius-soft);
}

.feature-card:hover {
    background: var(--white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border-color: rgba(220, 195, 157, 0.2);
    transform: translateY(-8px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: inline-block;
    color: var(--accent-gold);
}

/* Tabs */
.tab-nav {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.8);
    padding: 6px;
    border-radius: 100px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.tab-btn {
    padding: 12px 28px;
    border-radius: 100px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.tab-btn.active {
    background-color: var(--primary-teal);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 94, 88, 0.2);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

/* Contact Form Placeholder */
.wp-cf7-placeholder {
    border: 1px dashed var(--accent-gold);
    background: rgba(220, 195, 157, 0.1);
    padding: 40px;
    border-radius: var(--radius-soft);
    color: var(--text-dark);
}

/* Contact Form */
.contact-form-card {
    position: relative;
    padding: 24px 28px;
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(249, 247, 242, 0.9));
    border: 1px solid rgba(220, 195, 157, 0.4);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    width: 100%;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    inset: -20%;
    background:
        radial-gradient(circle at 18% 10%, rgba(220, 195, 157, 0.35), transparent 55%),
        radial-gradient(circle at 85% 0%, rgba(0, 94, 88, 0.2), transparent 45%);
    opacity: 0.7;
    pointer-events: none;
}

.contact-form-card::after {
    content: '';
    position: absolute;
    right: -60px;
    top: -70px;
    width: 170px;
    height: 170px;
    background: radial-gradient(circle, rgba(220, 195, 157, 0.35), rgba(220, 195, 157, 0));
    pointer-events: none;
}

.form-status {
    position: relative;
    z-index: 2;
    padding: 10px 14px;
    border-radius: 12px;
    margin-bottom: 12px;
    font-size: 0.88rem;
    line-height: 1.4;
    border: 1px solid transparent;
}

.form-status--success {
    background: rgba(0, 94, 88, 0.12);
    color: var(--primary-teal);
    border-color: rgba(0, 94, 88, 0.35);
}

.form-status--error {
    background: rgba(163, 51, 51, 0.12);
    color: #a33;
    border-color: rgba(163, 51, 51, 0.35);
}

.form-status--loading {
    background: rgba(0, 94, 88, 0.08);
    color: var(--primary-teal);
    border-color: rgba(0, 94, 88, 0.25);
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
}

.form-status-spinner,
.form-submit-spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(0, 94, 88, 0.3);
    border-top-color: var(--primary-teal);
    border-radius: 50%;
    animation: hp2-spin 0.7s linear infinite;
}

.form-submit-spinner {
    width: 16px;
    height: 16px;
    border-color: rgba(255, 255, 255, 0.4);
    border-top-color: #fff;
}

.form-submit.is-loading {
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

@keyframes hp2-spin {
    to { transform: rotate(360deg); }
}

.contact-form-header {
    position: relative;
    z-index: 1;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
    align-self: stretch;
}

.contact-form-layout {
    display: grid;
    grid-template-columns: minmax(200px, 0.85fr) minmax(320px, 1.2fr);
    grid-template-areas:
        "intro top"
        "message message"
        "bottom bottom";
    gap: 18px 24px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.contact-form-header {
    grid-area: intro;
}

.contact-form-top {
    grid-area: top;
}

.contact-form-message {
    grid-area: message;
}

.contact-form-bottom {
    grid-area: bottom;
}

.contact-form-bottom {
    margin-top: 4px;
    display: grid;
    gap: 12px;
}

.contact-kicker {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--primary-teal);
    margin-bottom: 8px;
}

.contact-form-header h3 {
    font-size: clamp(1.5rem, 2.2vw, 2.1rem);
    line-height: 1.15;
    margin-bottom: 8px;
}

.contact-form-header p {
    color: var(--text-body);
    font-size: 0.92rem;
    margin-bottom: 12px;
    max-width: 92%;
}

.contact-header-info {
    margin-top: 18px;
    padding-top: 0;
    border-top: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 20px;
    border-left: 2px solid rgba(0, 94, 88, 0.18);
    padding-left: 16px;
}

.contact-info-item {
    font-size: 0.82rem;
    color: var(--text-body, #4a4a4a);
    line-height: 1.5;
    padding: 6px 0;
    border-radius: 0;
    background: none;
    border: none;
    border-bottom: 1px solid rgba(0, 94, 88, 0.06);
    text-transform: none;
    letter-spacing: normal;
    font-weight: 400;
    display: block;
    transition: color 0.3s ease;
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-info-item strong {
    color: var(--primary-teal);
    font-weight: 600;
    margin-right: 4px;
    font-size: 0.78rem;
    letter-spacing: 0.02em;
}

.contact-info-item a {
    color: var(--primary-teal);
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 94, 88, 0.2);
    transition: border-color 0.3s ease, color 0.3s ease;
}

.contact-info-item a:hover {
    border-color: var(--primary-teal);
}

.contact-info-item.sales-office {
    font-size: 0.78rem;
    color: rgba(0, 0, 0, 0.5);
    line-height: 1.45;
}

.contact-address {
    margin-top: 18px;
    padding: 14px 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.contact-address-link {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.85);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}

.contact-address-link:hover {
    border-color: rgba(0, 94, 88, 0.45);
    box-shadow: 0 0 0 4px rgba(0, 94, 88, 0.08);
    transform: translateY(-2px);
}

.address-cta {
    font-size: 0.75rem;
    color: var(--primary-teal);
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.address-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(26, 26, 26, 0.55);
    margin-bottom: 6px;
}

.address-value {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-dark);
}


.contact-form {
    position: relative;
    z-index: 1;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 16px;
}

.form-field {
    position: relative;
}

.form-field-wide {
    grid-column: span 2;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.85);
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}

.form-field input,
.form-field select {
    min-height: 44px;
}

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

.contact-form-message .form-field textarea {
    min-height: 120px;
    padding-top: 40px;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: transparent;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: rgba(0, 94, 88, 0.6);
    box-shadow: 0 0 0 4px rgba(0, 94, 88, 0.12);
    transform: translateY(-2px);
}

.form-field label {
    position: absolute;
    left: 14px;
    top: 50%;
    padding: 0 4px;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(26, 26, 26, 0.6);
    background: transparent;
    border-radius: 999px;
    transform: translateY(-50%);
    pointer-events: none;
    transition: color 0.35s ease, top 0.35s ease, transform 0.35s ease, background-color 0.35s ease, box-shadow 0.35s ease;
}

.contact-form-message .form-field label {
    top: 12px;
    transform: none;
}

.form-field input:focus + label,
.form-field input:not(:placeholder-shown) + label,
.form-field textarea:focus + label,
.form-field textarea:not(:placeholder-shown) + label,
.form-field select:focus + label,
.form-field select:valid + label {
    top: -12px;
    left: 14px;
    transform: translateY(0);
    background: var(--bg-limestone);
    color: var(--primary-teal);
    letter-spacing: 0.12em;
    box-shadow: 0 0 0 6px var(--bg-limestone);
}

.form-field select {
    appearance: none;
    background-image: none;
    padding-right: 52px;
}

.form-field-select::after {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    width: 9px;
    height: 9px;
    border-right: 2px solid rgba(26, 26, 26, 0.6);
    border-bottom: 2px solid rgba(26, 26, 26, 0.6);
    transform: translateY(-50%) rotate(45deg);
    pointer-events: none;
}

.form-choice-group {
    margin-top: 24px;
}

.choice-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(26, 26, 26, 0.6);
    margin-bottom: 12px;
}

.choice-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.choice-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.choice-pill input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.choice-pill span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.16);
    color: var(--text-dark);
    font-size: 0.85rem;
    background: rgba(255, 255, 255, 0.75);
    transition: all 0.25s ease;
}

.choice-pill input:checked + span {
    background: var(--primary-teal);
    color: var(--white);
    border-color: var(--primary-teal);
    box-shadow: 0 10px 20px rgba(0, 94, 88, 0.2);
}

.newsletter-panel {
    margin-top: 16px;
    position: relative;
}

.newsletter-toggle-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.newsletter-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(0, 94, 88, 0.2);
    background: rgba(0, 94, 88, 0.08);
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-ui {
    position: relative;
    width: 44px;
    height: 26px;
    border-radius: 999px;
    background: rgba(26, 26, 26, 0.2);
    transition: background 0.3s ease;
}

.toggle-ui::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.newsletter-toggle-input:checked + .newsletter-toggle {
    background: rgba(0, 94, 88, 0.15);
    border-color: rgba(0, 94, 88, 0.45);
    box-shadow: 0 18px 30px rgba(0, 94, 88, 0.15);
}

.newsletter-toggle-input:checked + .newsletter-toggle .toggle-ui {
    background: var(--primary-teal);
}

.newsletter-toggle-input:checked + .newsletter-toggle .toggle-ui::after {
    transform: translateX(18px);
}

.newsletter-copy {
    display: block;
    font-size: 0.85rem;
    color: var(--text-dark);
}

.newsletter-note {
    display: block;
    font-size: 0.72rem;
    color: rgba(26, 26, 26, 0.6);
    margin-top: 4px;
}

.newsletter-fields {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-8px);
    transition: all 0.3s ease;
}

.newsletter-toggle-input:checked ~ .newsletter-fields {
    max-height: 220px;
    opacity: 1;
    transform: translateY(0);
    margin-top: 16px;
}

.newsletter-hint {
    font-size: 0.75rem;
    color: rgba(26, 26, 26, 0.6);
    margin-top: 8px;
}

.form-consents {
    margin-top: 14px;
    display: grid;
    gap: 8px;
}

.consent-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.76rem;
    color: rgba(26, 26, 26, 0.7);
}

.consent-item input {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    accent-color: var(--primary-teal);
    flex-shrink: 0;
}

.consent-item a {
    color: var(--primary-teal);
    text-decoration: underline;
}

.consent-item a {
    color: var(--primary-teal);
    text-decoration: underline;
}

.consent-item input {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 1px solid rgba(26, 26, 26, 0.25);
    border-radius: 6px;
    background: var(--white);
    margin-top: 2px;
    display: inline-grid;
    place-items: center;
    transition: all 0.2s ease;
}

.consent-item input::after {
    content: '';
    width: 10px;
    height: 6px;
    border-left: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(-45deg) scale(0);
    transition: transform 0.2s ease;
}

.consent-item input:checked {
    background: var(--primary-teal);
    border-color: var(--primary-teal);
    box-shadow: 0 0 0 3px rgba(0, 94, 88, 0.18);
}

.consent-item input:checked::after {
    transform: rotate(-45deg) scale(1);
}

.form-submit {
    margin-top: 16px;
    width: 100%;
    border: none;
    padding: 12px 20px;
    border-radius: 999px;
    background: linear-gradient(120deg, var(--primary-teal), #0f746c);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(0, 94, 88, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(0, 94, 88, 0.2);
}

.form-disclaimer {
    margin-top: 8px;
    font-size: 0.68rem;
    color: rgba(26, 26, 26, 0.55);
    text-align: center;
}

@media (max-width: 900px) {
    .contact-form-card {
        padding: 20px 22px;
    }

    .contact-form-layout {
        grid-template-columns: 1fr;
        grid-template-areas:
            "intro"
            "top"
            "message"
            "bottom";
        gap: 16px;
    }

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

    .form-field-wide {
        grid-column: span 1;
    }

    .contact-form-header p {
        max-width: 100%;
    }

    .contact-form-header {
        height: auto;
    }

}

/* Contact Layout Override */
.contact-grid {
    grid-template-columns: 1fr;
}

/* ==========================================================================
   7. ANIMATIONS
   ========================================================================== */
.reveal-item {
    opacity: 0;
    transform: scale(0.97) translateY(25px);
    transition: opacity 0.8s ease, transform 0.8s var(--ease-fluid);
}

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

/* Magnetic Button Base */
.magnetic-btn {
    transition: transform 0.2s var(--ease-fluid);
}

/* ==========================================================================
   8. RESPONSIVE
   ========================================================================== */
@media (max-width: 991px) {
    .nav-left, .nav-right {
        display: none; /* Simplified - mobile menu would replace this */
    }

    .logo {
        position: static;
        transform: none;
    }

    .header-container {
        justify-content: center;
    }

    .mobile-nav-toggle {
        display: inline-flex;
    }

    .container {
        padding: 0 20px;
    }

    .section-padding {
        padding: 60px 0;
    }

    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
}

@media (max-width: 900px) {
    .lifestyle-visual {
        height: clamp(320px, 56.25vw, 720px);
    }

    .lifestyle-section {
        padding: 40px 0 25px;
    }
}

/* ==========================================================================
   9. FOOTER
   ========================================================================== */
.site-footer {
    --footer-accent: #b58c5f;
    --footer-accent-strong: #9c7247;
    --footer-glow: rgba(181, 140, 95, 0.35);
    padding: clamp(50px, 6vw, 90px) 0 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    background: var(--bg-limestone);
    color: var(--footer-accent);
    position: relative;
    overflow: hidden;
    text-align: left;
}


.footer-grid {
    display: grid;
    grid-template-columns: minmax(220px, 1.35fr) repeat(3, minmax(160px, 1fr)) minmax(220px, 1.15fr);
    gap: clamp(24px, 4vw, 64px);
    align-items: start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    text-align: center;
}

.footer-logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
}

.footer-logo {
    width: clamp(120px, 16vw, 170px);
    height: auto;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.06));
}

.footer-brand-name {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 2.2vw, 2rem);
    letter-spacing: 0.08em;
    color: var(--footer-accent-strong);
}

.footer-tagline {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    opacity: 0.7;
    margin-top: 2px;
}

.footer-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--footer-accent-strong);
    margin-bottom: 18px;
    font-weight: 600;
}

.footer-list {
    list-style: none;
    display: grid;
    gap: 10px;
}

.footer-list-plain li {
    font-size: 0.92rem;
    line-height: 1.6;
}

.footer-label {
    font-weight: 600;
}

.footer-text {
    opacity: 0.82;
}

.footer-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    z-index: 0;
    color: var(--footer-accent);
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    padding: 2px 0;
    transition: color 0.4s var(--ease-fluid), transform 0.4s var(--ease-joy),
        text-shadow 0.4s var(--ease-fluid);
}

.footer-link::before {
    content: "";
    position: absolute;
    left: -10px;
    right: -14px;
    top: 50%;
    transform: translateY(-50%);
    height: 30px;
    border-radius: 999px;
    background: radial-gradient(120% 120% at 50% 50%, rgba(220, 195, 157, 0.22), rgba(220, 195, 157, 0.08) 45%, transparent 72%);
    opacity: 0;
    filter: blur(4px);
    transition: opacity 0.45s var(--ease-fluid);
    z-index: -1;
}

.footer-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--footer-accent), transparent);
    transform: scaleX(0.1);
    transform-origin: left;
    opacity: 0;
    transition: transform 0.4s var(--ease-fluid), opacity 0.4s var(--ease-fluid);
}

.footer-link:hover,
.footer-link:focus-visible {
    color: var(--footer-accent-strong);
    transform: translateX(4px);
    text-shadow: 0 6px 16px var(--footer-glow);
}

.footer-link:hover::before,
.footer-link:focus-visible::before {
    opacity: 1;
}

.footer-link:hover::after,
.footer-link:focus-visible::after {
    transform: scaleX(1);
    opacity: 1;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 18px;
    justify-content: center;
    width: 100%;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(181, 140, 95, 0.35);
    background: rgba(255, 255, 255, 0.7);
    color: var(--footer-accent-strong);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    transition: transform 0.4s var(--ease-joy), box-shadow 0.4s var(--ease-fluid),
        border-color 0.4s var(--ease-fluid);
}

.footer-social-link svg {
    display: block;
}

.footer-social-link.is-facebook svg {
    transform: translateX(1px);
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(181, 140, 95, 0.25);
    border-color: var(--footer-accent);
}

.footer-contact {
    gap: 12px;
}

.footer-contact li {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 12px;
    align-items: start;
}

.footer-contact-icon {
    width: 18px;
    height: 18px;
    color: var(--footer-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.footer-legal {
    margin-top: 42px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    font-size: 0.75rem;
    color: rgba(156, 114, 71, 0.7);
}

.footer-legal p {
    margin: 0;
}

.footer-link:focus-visible,
.footer-social-link:focus-visible {
    outline: 2px solid rgba(181, 140, 95, 0.4);
    outline-offset: 4px;
}

@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: repeat(3, minmax(200px, 1fr));
    }
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
    }

    .footer-legal {
        text-align: left;
    }
}

@media (max-width: 640px) {
    .site-footer {
        padding: 30px 0 20px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
    }

    .footer-brand,
    .footer-grid > .footer-column:nth-child(2),
    .footer-grid > .footer-column:nth-child(3) {
        grid-column: span 2;
    }

    .footer-list {
        gap: 0;
    }

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

    .footer-legal {
        margin-top: 24px;
        padding-top: 16px;
        text-align: center;
        font-size: 0.65rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .footer-link,
    .footer-link::before,
    .footer-link::after,
    .footer-social-link {
        transition: none;
    }

    .footer-link:hover,
    .footer-link:focus-visible,
    .footer-social-link:hover,
    .footer-social-link:focus-visible {
        transform: none;
    }
}

/* ==========================================================================
   10. DESIGN SECTION (With Dark Overlay)
   ========================================================================== */
.design-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.design-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 94, 88, 0.85) 0%,
        rgba(26, 26, 26, 0.9) 100%
    );
    z-index: 2;
}

.design-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 80px 20px;
    max-width: 800px;
}

.design-label {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.3rem;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.design-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--white);
    margin-bottom: 30px;
    font-weight: 400;
}

.design-divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    margin: 30px auto;
}

.design-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    max-width: 650px;
    margin: 0 auto;
}

/* ==========================================================================
   11. LIFESTYLE VISUAL + SECTION
   ========================================================================== */
.lifestyle-visual {
    position: relative;
    height: clamp(360px, 56.25vw, 1100px);
    overflow: hidden;
    background: var(--bg-limestone);
}

.lifestyle-visual .lifestyle-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-attachment: fixed;
    filter: saturate(1.05);
    transform: scale(1.02);
    z-index: 0;
}

.lifestyle-visual .lifestyle-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: none;
    z-index: 0;
}

.lifestyle-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: none;
    z-index: 1;
}

.lifestyle-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(249, 247, 242, 0) 72%, rgba(249, 247, 242, 0.7) 90%, #F9F7F2 100%);
    z-index: 2;
}

.lifestyle-section {
    position: relative;
    padding: 50px 0 30px;
    background: var(--bg-limestone);
}

/* Content */
.lifestyle-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 20px;
    max-width: 800px;
}

.lifestyle-label {
    display: inline-block;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary-teal);
    margin-bottom: 15px;
    font-weight: 600;
}

.lifestyle-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--text-dark);
    margin: 0 0 20px 0;
}

.lifestyle-divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    margin: 0 auto 24px;
}

.lifestyle-lead {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.lifestyle-body {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-body);
    margin: 0;
}

/* Features Section - Below Lifestyle */
.features-section {
    background: var(--bg-limestone);
    padding: 50px 0 20px;
}



/* Premium Feature Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

@media (max-width: 991px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-item {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-soft);
    text-align: center;
    border: 1px solid rgba(220, 195, 157, 0.2);
    /* Ultra-slow premium transitions - same timing on hover in/out */
    transition: 
        transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
        box-shadow 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
        border-color 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 94, 88, 0.08);
    border-color: var(--accent-gold);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: rgba(0, 94, 88, 0.04);
    border-radius: 50%;
    color: var(--primary-teal);
    /* Ultra-slow premium transitions - same timing on hover in/out */
    transition: 
        transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        color 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature-icon-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--accent-gold) 100%);
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 0;
}

.feature-icon-wrapper svg,
.feature-icon-wrapper span,
.feature-icon-wrapper img {
    position: relative;
    z-index: 1;
}

.feature-icon-wrapper img {
    width: 60%;
    height: 60%;
    object-fit: contain;
    display: block;
}

.feature-item:hover .feature-icon-wrapper {
    color: var(--white);
    transform: scale(1.05);
}

.feature-item:hover .feature-icon-wrapper::before {
    opacity: 1;
}


.feature-item h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

/* Wellness Gallery - Galerie imersivă (wellness center) */
.wellness-gallery-section {
    padding: 80px 0;
    background: var(--bg-limestone);
}

.wellness-gallery-stage {
    position: relative;
    margin-top: 0;
}

.wellness-gallery-sticky {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.wellness-gallery-frame {
    position: relative;
    width: min(1280px, 94vw);
    height: min(82vh, 760px);
    border-radius: 28px;
    overflow: hidden;
    /* Joyful shadow */
    box-shadow: 0 22px 44px rgba(49, 66, 60, 0.14);
    background: #ece2d2;
    touch-action: pan-y;
}

.wellness-gallery-layer {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 0.6s ease, transform 0.8s ease;
    margin: 0;
}

.wellness-gallery-layer.is-active {
    opacity: 1;
}

.wellness-gallery-layer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.wellness-gallery-overlay {
    position: absolute;
    inset: 0;
    padding: 24px;
    z-index: 3;
    pointer-events: none;
}

.wellness-gallery-counter {
    position: absolute;
    right: 24px;
    bottom: 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    border-radius: 40px;
    color: var(--primary-teal);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.wellness-gallery-stage.is-static .wellness-gallery-frame {
    height: auto;
    aspect-ratio: 16 / 9;
}

/* Park Gallery - Galerie imersivă (parcul interior) */
.park-gallery-section {
    padding: 0 0 80px;
    background: var(--bg-limestone);
}

.park-gallery-stage {
    position: relative;
    margin-top: 0;
}

.park-gallery-sticky {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.park-gallery-frame {
    position: relative;
    width: min(1280px, 94vw);
    height: min(82vh, 760px);
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(0, 94, 88, 0.12);
    box-shadow: 0 22px 44px rgba(49, 66, 60, 0.14);
    background: #ece2d2;
    touch-action: pan-y;
}

.park-gallery-layer {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 0.6s ease, transform 0.8s ease;
    margin: 0;
}

.park-gallery-layer.is-active {
    opacity: 1;
}

.park-gallery-layer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.park-gallery-overlay {
    position: absolute;
    inset: 0;
    padding: 24px;
    z-index: 3;
    pointer-events: none;
}

.park-gallery-counter {
    position: absolute;
    right: 24px;
    bottom: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(250, 244, 234, 0.85);
    border: 1px solid rgba(41, 68, 63, 0.24);
    color: var(--text-dark);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.park-gallery-stage.is-static .park-gallery-frame {
    height: auto;
    aspect-ratio: 16 / 9;
}

.feature-item p {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.6;
    margin: 0;
}

/* Gold Emphasis Text */
strong.gold {
    color: var(--accent-gold);
    font-weight: 600;
}

/* Shadow utility */
.shadow-lg {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* ==========================================================================
   12. NATURE SECTION (Respect pentru Natură)
   ========================================================================== */
.nature-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0;
}

.nature-audio-player {
    width: 100%;
}

/* Parallax Dark Leaves Background */
.nature-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}

/* Subtle Dark Overlay */
.nature-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* Content Container */
.nature-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
}

/* Title */
.nature-header {
    margin-bottom: 60px;
}

.nature-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    color: var(--white);
    line-height: 1.2;
    margin: 0;
}

/* Text Content */
.nature-text {
    margin-bottom: 60px;
}

.nature-text p {
    font-size: 1rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
}

.nature-text p:last-child {
    margin-bottom: 0;
}

.nature-text strong {
    color: var(--white);
    font-weight: 600;
}

/* Audio Hint Button */
.nature-audio-hint {
    margin-top: 40px;
}

.audio-hint-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(220, 195, 157, 0.45);
    border-radius: 999px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        border-color 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}

/* Override to avoid theme color conflicts + smoother hover */
.hp2-audio-btn {
    background: rgba(0, 0, 0, 0.22) !important;
    color: var(--white) !important;
    border-color: rgba(220, 195, 157, 0.45) !important;
    transition: transform 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        border-color 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hp2-audio-btn::before {
    background: linear-gradient(135deg, rgba(0, 94, 88, 0.6), rgba(220, 195, 157, 0.25)) !important;
    transition: opacity 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hp2-audio-btn:hover {
    border-color: rgba(220, 195, 157, 0.7) !important;
}

.hp2-audio-btn .audio-hint-icon {
    transition: background 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        border-color 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.audio-hint-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 94, 88, 0.6), rgba(220, 195, 157, 0.25));
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 0;
}

.audio-hint-btn > * {
    position: relative;
    z-index: 1;
}

.audio-hint-btn:hover {
    border-color: rgba(220, 195, 157, 0.7);
    transform: translateY(-3px);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.4);
}

.audio-hint-btn:hover::before {
    opacity: 1;
}
.audio-hint-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: background 0.95s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        border-color 0.95s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.95s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.audio-hint-icon svg {
    stroke: var(--accent-gold);
}

.audio-hint-text {
    font-weight: 600;
}

/* Animated Pulse Ring */
.audio-hint-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(220, 195, 157, 0.4);
    border-radius: 50px;
    animation: audioPulse 2.5s ease-out infinite;
    pointer-events: none;
}

@keyframes audioPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0;
    }
}

/* Nature Audio Player Container */
.nature-audio-player {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    margin-top: 40px;
}

/* Play/Pause Icon Toggle */
.audio-hint-icon .icon-play,
.audio-hint-icon .icon-pause {
    fill: var(--accent-gold);
}

.audio-hint-btn.is-playing .icon-play {
    display: none !important;
}

.audio-hint-btn.is-playing .icon-pause {
    display: block !important;
}

.audio-hint-btn:not(.is-playing) .icon-pause {
    display: none !important;
}

/* Stop pulse when playing */
.audio-hint-btn.is-playing .audio-hint-pulse {
    animation: none;
    opacity: 0;
}

/* Waveform Container - Full Viewport Width */
.nature-waveform-container {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: 0;
    margin-right: 0;
    transform: translateX(-50%) translateY(12px);
    height: 44px;
    opacity: 0;
    transition: opacity 1.5s ease, transform 1.5s ease;
    pointer-events: none;
    margin-top: 12px;
    z-index: 12;
    overflow: hidden;
}

.audio-hint-btn.is-playing ~ .nature-waveform-container {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.nature-waveform-svg {
    width: 100%;
    height: 100%;
}

/* ==========================================================================
   13. STANDARDE SECTION (Locuire la standarde fără egal)
   ========================================================================== */
/* ==========================================================================
   13. STANDARDE SECTION (Locuire la standarde fără egal) - PREMIUM REDESIGN
   ========================================================================== */
.standarde-section {
    background: linear-gradient(135deg, var(--primary-teal) 0%, #00382e 100%);
    padding: 140px 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Subtle background texture overlay for richness */
.standarde-section::before {
    content: '';
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}

.standarde-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 160px;
    background: linear-gradient(
        180deg,
        rgba(0, 94, 88, 0) 0%,
        rgba(0, 94, 88, 0.45) 55%,
        #005E58 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* Golden Glow Glow Element */
.standarde-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(220, 195, 157, 0.15) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    pointer-events: none;
}

.standarde-title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    color: var(--white);
    margin-bottom: 40px;
    font-weight: 400;
    letter-spacing: -0.01em;
    background: linear-gradient(to right, #ffffff 0%, #e0e0e0 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.standarde-subtitle {
    margin: -22px auto 24px;
    font-size: 1.15rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(220, 195, 157, 0.9);
    font-weight: 600;
}

.standarde-lead {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
    letter-spacing: 0.01em;
}

.standarde-grid {
    margin-top: 80px;
    display: flex;
    flex-wrap: nowrap; /* FORCE SINGLE ROW */
    gap: 30px;
    justify-content: center;
}

/* Force items to equal width and fit 3 in a row */
.standarde-grid > div {
    flex: 1;
    width: 33.333%;
    max-width: 33.333%;
}

/* Responsive fallback */
@media (max-width: 992px) {
    .standarde-grid {
        flex-wrap: wrap;
    }
    .standarde-grid > div {
        width: 48%; /* 2 per row */
        max-width: 48%;
        flex: 0 0 48%;
    }
}

@media (max-width: 576px) {
    .standarde-grid > div {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }
}

/* Premium Glass Card - Compact & Cute */
.standard-card {
    background: rgba(255, 255, 255, 0.05); /* Slightly more visible dark glass */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 30px 20px; /* Reduced padding */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px; /* Smoother radius */
    text-align: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.standard-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Hover Effects */
.standard-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(220, 195, 157, 0.5); /* Gold border */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

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

.standard-icon {
    width: 50px; /* Smaller icon container */
    height: 50px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    opacity: 0.9;
    transition: all 0.4s ease;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.standard-icon img {
    width: 60%;
    height: 60%;
    object-fit: contain;
    display: block;
}

/* Individual Glow Colors on Hover */
.standard-card:hover .icon-glow-1 { background: rgba(220, 195, 157, 0.15); color: #DCC39D; border-color: #DCC39D; }
.standard-card:hover .icon-glow-2 { background: rgba(100, 255, 218, 0.1); color: #64ffda; border-color: #64ffda; }
.standard-card:hover .icon-glow-3 { background: rgba(255, 200, 221, 0.15); color: #ffc8dd; border-color: #ffc8dd; }
.standard-card:hover .icon-glow-4 { background: rgba(200, 230, 255, 0.15); color: #a2d2ff; border-color: #a2d2ff; }

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

.standard-card h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.5;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
    max-width: 90%;
}

.standard-card .standard-desc {
    margin: 10px 0 0;
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.78);
    max-width: 90%;
}

.standard-card:hover h3 {
    color: var(--white);
}

/* Specific Utilities for this section */
.mb-60 { margin-bottom: 60px; }
.mb-40 { margin-bottom: 40px; }
.relative { position: relative; }
.z-10 { z-index: 10; }


/* Wave Path Animations */
.nature-wave {
    fill: none;
    stroke-width: 1.2;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0;
    transition: opacity 1.5s ease;
    filter: blur(0.2px);
}
/* ==========================================================================
   14. UNIFIED APARTAMENTE & FINISAJE SECTION
   ========================================================================== */

/* Typography */
.script-font {
    font-family: var(--font-heading);
    color: var(--accent-gold);
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin-bottom: 20px;
}

.opacity-80 { opacity: 0.8; }
.pt-100 { padding-top: 100px; }
.pb-100 { padding-bottom: 100px; }
.mb-100 { margin-bottom: 100px; }
.mb-60 { margin-bottom: 60px; }
.mb-40 { margin-bottom: 40px; }
.mb-20 { margin-bottom: 20px; }
.mt-20 { margin-top: 20px; }

/* Locatie section: no bottom padding so map bleeds to edge */
#locatie {
    padding-bottom: 0 !important;
}

/* Map */
.map-container {
    width: 100vw;
    max-width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 0;
    overflow: hidden;
    line-height: 0;
}

.map-container img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 0 !important;
}

body.map-zoom-open {
    overflow: hidden;
}

.map-container.is-zoomed {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 24px;
    border-radius: 0;
    background: rgba(8, 15, 15, 0.86);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.map-container.is-zoomed img {
    width: auto;
    max-width: 94vw;
    max-height: 90vh;
    border-radius: 16px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

/* Room Selector */
.room-selector-container {
    margin-top: 12px;
}

.apartamente-tour-grid {
    margin: 32px auto 48px;
}

.apartamente-tour-grid .tour-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 26px;
}

.apt-tour-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 18px 36px rgba(5, 35, 33, 0.35);
    min-height: 360px;
    padding: 24px;
    display: flex;
    align-items: flex-end;
}

.apt-tour-media {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.apt-tour-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
    transition: transform 0.5s ease;
}

.apt-tour-card:hover .apt-tour-media img {
    transform: scale(1.06);
}

.apt-tour-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 40, 38, 0.2) 0%, rgba(6, 40, 38, 0.55) 100%);
}

.apt-tour-play {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: var(--bg-limestone);
    border: 1px solid rgba(220, 195, 157, 0.55);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(5, 25, 24, 0.3);
    transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
    z-index: 2;
}

.apt-tour-play__icon {
    display: block;
    width: 0;
    height: 0;
    margin-left: 2px;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 12px solid var(--primary-teal);
}

.apt-tour-play:hover {
    transform: translateY(-2px);
    background: #f5f1e6;
    box-shadow: 0 14px 28px rgba(5, 25, 24, 0.35);
}

.apt-tour-info {
    position: relative;
    margin: 0;
    padding: 22px 24px;
    background: rgba(249, 247, 242, 0.96);
    border-radius: 20px;
    box-shadow: 0 14px 26px rgba(5, 28, 27, 0.28);
    z-index: 2;
    width: 100%;
}

.apt-tour-info h3 {
    margin: 0 0 8px;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--primary-teal);
    letter-spacing: 0.01em;
}

.apt-tour-info p {
    margin: 0;
    color: #4b4842;
    font-size: 0.95rem;
    line-height: 1.55;
}

@media (max-width: 980px) {
    .apartamente-tour-grid .tour-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .apartamente-tour-grid {
        margin: 24px auto 36px;
    }

    .apt-tour-play {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        top: 14px;
        right: 14px;
    }

    .apt-tour-info {
        margin: 0;
        padding: 18px 20px;
    }

    .apt-tour-card {
        min-height: 320px;
        padding: 18px;
    }
}

/* ==========================================================================
   Tour Virtual - Premium Fullscreen Modal
   ========================================================================== */
.tour-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--ease-fluid), visibility 0.4s var(--ease-fluid);
}

.tour-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.tour-modal[hidden] {
    display: none !important;
}

.tour-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 35, 33, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.tour-modal__container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.tour-modal__close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: rgba(249, 247, 242, 0.95);
    color: var(--primary-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(5, 35, 33, 0.25);
    transition: transform 0.25s var(--ease-joy), background 0.25s ease, box-shadow 0.25s ease;
}

.tour-modal__close:hover {
    transform: scale(1.08);
    background: #fff;
    box-shadow: 0 6px 24px rgba(5, 35, 33, 0.35);
}

.tour-modal__close:focus-visible {
    outline: 2px solid var(--accent-gold);
    outline-offset: 3px;
}

.tour-modal__frame-wrap {
    position: absolute;
    inset: 0;
    padding: 56px 24px 24px;
}

.tour-modal__iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
    background: #0a0a0a;
}

@media (max-width: 720px) {
    .tour-modal__close {
        top: 12px;
        right: 12px;
        width: 44px;
        height: 44px;
    }

    .tour-modal__frame-wrap {
        padding: 64px 12px 12px;
    }

    .tour-modal__iframe {
        border-radius: 8px;
    }
}

body.tour-modal-open {
    overflow: hidden;
    overscroll-behavior: none;
}

.room-numbers {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 18px auto 0;
    padding: 10px;
    max-width: min(100%, 980px);
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(7, 43, 41, 0.42);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    flex-wrap: wrap;
}

.room-num {
    appearance: none;
    border: 1px solid transparent;
    background: transparent;
    font-family: var(--font-body);
    font-size: 0.84rem;
    font-weight: 500;
    line-height: 1;
    color: rgba(255, 255, 255, 0.72);
    cursor: pointer;
    transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 13px 20px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
    -webkit-tap-highlight-color: transparent;
}

.room-num__label {
    pointer-events: none;
}

.room-num,
.room-num:focus,
.room-num:active,
.room-num:hover {
    text-decoration: none;
    box-shadow: none;
}

#apartamente .room-numbers .room-num {
    background: transparent !important;
    border-color: transparent !important;
    color: rgba(255, 255, 255, 0.72) !important;
}

.room-num.active,
.room-num[aria-selected="true"] {
    background: rgba(220, 195, 157, 0.22);
    border-color: rgba(220, 195, 157, 0.7);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
}

#apartamente .room-numbers .room-num.active,
#apartamente .room-numbers .room-num[aria-selected="true"] {
    background: rgba(220, 195, 157, 0.22) !important;
    border-color: rgba(220, 195, 157, 0.7) !important;
    color: var(--white) !important;
}

.room-num:hover:not(.active):not([aria-selected="true"]) {
    color: rgba(255, 255, 255, 0.95);
    border-color: rgba(255, 255, 255, 0.32);
    background: rgba(255, 255, 255, 0.08);
}

#apartamente .room-numbers .room-num:hover:not(.active):not([aria-selected="true"]) {
    color: rgba(255, 255, 255, 0.95) !important;
    border-color: rgba(255, 255, 255, 0.32) !important;
    background: rgba(255, 255, 255, 0.08) !important;
}

.room-num:focus-visible {
    outline: none;
    border-color: rgba(220, 195, 157, 0.95);
    box-shadow: 0 0 0 3px rgba(220, 195, 157, 0.24);
    color: var(--white);
}

#apartamente .room-numbers .room-num:focus,
#apartamente .room-numbers .room-num:active {
    outline: none !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.32) !important;
    color: rgba(255, 255, 255, 0.95) !important;
}

#apartamente .room-numbers .room-num.active:focus,
#apartamente .room-numbers .room-num.active:active,
#apartamente .room-numbers .room-num[aria-selected="true"]:focus,
#apartamente .room-numbers .room-num[aria-selected="true"]:active,
#apartamente .room-numbers .room-num[aria-selected="true"]:focus-visible {
    background: rgba(220, 195, 157, 0.22) !important;
    border-color: rgba(220, 195, 157, 0.7) !important;
    color: var(--white) !important;
}

#apartamente .ap-grid-arrow {
    appearance: none;
    border: 1px solid rgba(220, 195, 157, 0.36);
    background: rgba(6, 53, 50, 0.86);
    color: var(--white);
    -webkit-tap-highlight-color: transparent;
}

#apartamente .ap-grid-arrow:focus {
    outline: none;
}

/* Apartment layout tokens are defined in :root */

/* Apartment Cards - Premium Fixed Layout */
.apt-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 30px 20px;
    position: relative;
    text-decoration: none;
    color: inherit;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);

    /* Fixed Dimensions Desktop */
    width: 320px;
    height: 430px;
    flex: 0 0 320px; /* Prevent shrinking */

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    margin: 0; /* Let flex gap handle spacing */
    cursor: pointer;
}

.apt-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(220, 195, 157, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}


.apartment-grid-shell {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 12px;
    align-items: stretch;
    width: 100%;
}

.ap-grid-arrow {
    align-self: center;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    background: rgba(8, 42, 40, 0.72);
    color: rgba(255, 255, 255, 0.92);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 4;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

#apartamente .ap-grid-arrow:hover:not(:disabled),
#apartamente .ap-grid-arrow:focus-visible:not(:disabled) {
    background: rgba(220, 195, 157, 0.95);
    border-color: rgba(220, 195, 157, 1);
    color: #163734;
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28), 0 0 0 3px rgba(220, 195, 157, 0.2);
}

#apartamente .ap-grid-arrow:active:not(:disabled) {
    transform: translateY(0) scale(0.97);
    background: rgba(220, 195, 157, 0.88);
}

.ap-grid-arrow:disabled {
    opacity: 0.32;
    cursor: default;
}

/* Force side-by-side flex layout for apartment section */
.apartment-grid {
    position: relative;
    display: flex;
    flex-direction: row; /* FORCE HORIZONTAL */
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: var(--apt-card-gap);
    width: 100%;
    overflow-x: auto;
    overflow-y: visible; /* Prevent clipping of hover effects */
    padding: 18px 36px 30px;
    scroll-snap-type: x proximity;
    scroll-padding-left: 36px;
    scroll-padding-right: 36px;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
    scrollbar-color: transparent transparent;
    cursor: grab;
    touch-action: pan-y;
    mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.apartment-grid.is-centered {
    justify-content: center;
    scroll-snap-type: none;
    mask-image: none;
    -webkit-mask-image: none;
}

.apartment-grid a,
.apartment-grid button {
    cursor: pointer;
}

.apartment-grid::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 18px;
    background: linear-gradient(180deg, rgba(0, 94, 88, 0) 0%, var(--primary-teal) 100%);
    pointer-events: none;
    z-index: 1;
}

.apartment-grid::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    background: linear-gradient(
        90deg,
        rgba(0, 94, 88, 0.45) 0%,
        rgba(0, 94, 88, 0.18) 14%,
        rgba(0, 94, 88, 0) 28%,
        rgba(0, 94, 88, 0) 72%,
        rgba(0, 94, 88, 0.18) 86%,
        rgba(0, 94, 88, 0.45) 100%
    );
}

/* Remove extra bottom margins inside the grid; gap handles spacing */
.apartment-grid .col-md-auto {
    margin-bottom: 0;
    flex: 0 0 auto;
    scroll-snap-align: start;
    position: relative;
    z-index: 1;
}

.apartment-grid .col-md-auto:hover {
    z-index: 3;
}

/* Align left column height to card grid only */
.apartamente-left .apartment-grid {
    margin-bottom: 0;
}

.apartment-grid::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}

.apartment-grid::-webkit-scrollbar-track,
.apartment-grid::-webkit-scrollbar-thumb {
    background: transparent;
}

.apartment-grid.is-dragging {
    cursor: grabbing;
    user-select: none;
    -webkit-user-select: none;
}


/* Keep apartment grids horizontal even when used as tab panes */
.apartment-pane.tab-pane {
    display: none;
}

.apartment-pane.tab-pane.active {
    display: block;
}

/* Tablet & Mobile carousel for apartment cards */
@media (max-width: 900px) {
    .room-numbers {
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 8px;
        margin: 10px 0 18px;
        padding: 8px 12px;
        width: 100%;
        border-radius: 16px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
        -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
    }

    .room-numbers::-webkit-scrollbar {
        display: none;
    }

    .room-num {
        flex: 0 0 auto;
        scroll-snap-align: center;
        font-size: 0.78rem;
        padding: 11px 14px;
    }

    .apartment-grid {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        overflow-y: visible;
        gap: 18px;
        padding-left: 22px;
        padding-right: 22px;
        scroll-snap-type: x mandatory;
        scroll-padding-left: 22px;
        scroll-padding-right: 22px;
        -webkit-overflow-scrolling: touch;
        touch-action: pan-x;
        cursor: auto;
        mask-image: none;
        -webkit-mask-image: none;
    }

    .apartment-grid::before,
    .apartment-grid::after {
        content: none;
    }

    .apartment-grid-shell {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .ap-grid-arrow {
        display: none;
    }

    .apt-card {
        width: 74vw;
        height: 420px;
        flex: 0 0 74vw;
        max-width: 360px;
        min-width: 260px;
        scroll-snap-align: none;
    }
}

@media (max-width: 768px) {
    .apt-card {
        width: 84vw;
        flex: 0 0 84vw;
        max-width: 380px;
    }
}

.apt-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.apt-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(220, 195, 157, 0.5); /* Gold border like Standarde */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
    z-index: 10; /* Bring to front on hover */
}

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

.apt-header h3 {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    position: relative;
    display: inline-block;
}

.apt-card-suprafata {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.82);
    letter-spacing: 0.06em;
    margin: -8px 0 12px;
}

.apt-image-wrapper {
    margin: 10px 0;
    padding: 0;
    width: 100%;
    flex-grow: 1; /* Fill available space */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.5s ease;
}

.apt-image {
    max-width: 100%;
    max-height: 200px; /* Reduce slightly to fit 450px height comfortably */
    width: auto;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.95;
    -webkit-user-drag: none;
    user-select: none;
}

.apt-card:hover .apt-image-wrapper {
    transform: scale(1.03);
}

/* Premium Button - Clean & Elegant (No Gradient) */
.btn-apt-details {
    background: rgba(255, 255, 255, 0.05); /* Clean glass base */
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 30px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
}

/* Hover State - Single Color, No Text Slide Trick */
.btn-apt-details:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--text-dark);
    box-shadow: 0 5px 15px rgba(220, 195, 157, 0.3);
}

/* Finisaje Section (Integrated) */
.finisaje-integrated {
    position: relative;
    margin-top: 0;
    padding: 38px 30px 30px;
    background: rgba(0, 0, 0, 0.34);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    overflow: visible;
    border-top-color: rgba(255, 255, 255, 0.06);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
}

.finisaje-integrated::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    pointer-events: none;
}


/* Simple centered title for finishes panel */
.finisaje-integrated .section-title {
    color: var(--white);
    margin: 0 0 18px;
    white-space: nowrap;
    font-size: clamp(1.25rem, 1.7vw, 1.7rem);
    line-height: 1.1;
}

.finisaje-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 22px;
    margin: 0;
    background: transparent;
    border: none;
    align-items: stretch;
    padding: 6px 4px 0;
}

.finisaj-icon {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 16px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.finisaj-icon img {
    width: 60%;
    height: 60%;
    object-fit: contain;
    display: block;
}

.finisaj-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    color: rgba(255, 255, 255, 0.85);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 240px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

/* Subtle color tint per card */
.finisaj-card.tone-1 {
    background: linear-gradient(180deg, rgba(220, 195, 157, 0.16), rgba(255, 255, 255, 0.05));
    border-color: rgba(220, 195, 157, 0.25);
}
.finisaj-card.tone-2 {
    background: linear-gradient(180deg, rgba(100, 255, 218, 0.16), rgba(255, 255, 255, 0.05));
    border-color: rgba(100, 255, 218, 0.2);
}
.finisaj-card.tone-3 {
    background: linear-gradient(180deg, rgba(255, 200, 221, 0.16), rgba(255, 255, 255, 0.05));
    border-color: rgba(255, 200, 221, 0.22);
}
.finisaj-card.tone-4 {
    background: linear-gradient(180deg, rgba(200, 230, 255, 0.16), rgba(255, 255, 255, 0.05));
    border-color: rgba(200, 230, 255, 0.22);
}

.finisaj-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

@keyframes fin-icon-pop {
    0% { transform: scale(0.92); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

.finisaje-integrated.is-visible .finisaj-icon {
    animation: fin-icon-pop 0.7s ease both;
}

.finisaje-integrated.is-visible .finisaj-card:nth-child(2) .finisaj-icon { animation-delay: 0.05s; }
.finisaje-integrated.is-visible .finisaj-card:nth-child(3) .finisaj-icon { animation-delay: 0.1s; }
.finisaje-integrated.is-visible .finisaj-card:nth-child(4) .finisaj-icon { animation-delay: 0.15s; }
.finisaje-integrated.is-visible .finisaj-card:nth-child(5) .finisaj-icon { animation-delay: 0.2s; }
.finisaje-integrated.is-visible .finisaj-card:nth-child(6) .finisaj-icon { animation-delay: 0.25s; }
.finisaje-integrated.is-visible .finisaj-card:nth-child(7) .finisaj-icon { animation-delay: 0.3s; }
.finisaje-integrated.is-visible .finisaj-card:nth-child(8) .finisaj-icon { animation-delay: 0.35s; }

.finisaj-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(220, 195, 157, 0.55);
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.28);
}

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

/* Individual Glow Colors on Hover */
.finisaj-card:hover .icon-glow-1 { background: rgba(220, 195, 157, 0.15); color: #DCC39D; border-color: #DCC39D; }
.finisaj-card:hover .icon-glow-2 { background: rgba(100, 255, 218, 0.1); color: #64ffda; border-color: #64ffda; }
.finisaj-card:hover .icon-glow-3 { background: rgba(255, 200, 221, 0.15); color: #ffc8dd; border-color: #ffc8dd; }
.finisaj-card:hover .icon-glow-4 { background: rgba(200, 230, 255, 0.15); color: #a2d2ff; border-color: #a2d2ff; }

.finisaj-card:hover .finisaj-icon {
    transform: scale(1.08);
}

.finisaj-card h4.text-gold {
    font-size: 0.92rem;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--white);
    text-transform: none;
    letter-spacing: 0.02em;
}

.finisaj-card p {
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
}

/* Responsive */
@media (max-width: 1200px) {
    .finisaje-integrated { margin-top: 50px; }
    .finisaje-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 576px) {
    .finisaje-integrated { padding: 40px 18px 20px; }
    .room-num { letter-spacing: 0.04em; }
    .finisaje-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   15. INTERIORS REVEAL SECTION
   ========================================================================== */

.interiors-section {
    position: relative;
    padding: 24px 0 86px;
    background-color: #F9F7F2;
}

/* (removed duplicate .interiors-stage block above) */

.interiors-sticky {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.interiors-frame {
    position: relative;
    width: min(1280px, 94vw);
    height: min(84vh, 780px);
    border-radius: 28px;
    overflow: hidden;
    background: rgba(6, 18, 18, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.35);
    touch-action: pan-y;
}
.interiors-header .section-title {
    margin-bottom: 6px;
}

.interiors-header p {
    margin-bottom: 0;
}

.interiors-header.mb-60 {
    margin-bottom: 24px !important;
}

.interiors-stage {
    position: relative;
    margin-top: 0;
}

.interiors-stage.is-static .interiors-frame {
    height: min(84vh, 780px);
}

.interiors-visuals {
    position: absolute;
    inset: 0;
}

.interior-layer {
    position: absolute;
    inset: -4%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 0.6s ease, transform 0.8s ease, filter 0.8s ease;
    filter: saturate(1.05) contrast(1.05);
    will-change: transform, opacity;
}

.interior-depth {
    position: absolute;
    inset: -10%;
    background-size: cover;
    background-position: center;
    mix-blend-mode: screen;
    opacity: 0.55;
    filter: blur(1px) contrast(1.6) brightness(1.05);
    transform: scale(1.18);
    transition: opacity 0.5s ease, transform 0.5s ease, filter 0.5s ease;
    pointer-events: none;
}

.interior-layer::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.25));
}

.interior-layer.is-active {
    opacity: 1;
}

.interiors-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 48px;
    pointer-events: none;
}

.interior-caption {
    position: absolute;
    left: 40px;
    bottom: 36px;
    max-width: 420px;
    padding: 20px 22px;
    border-radius: 16px;
    background: rgba(8, 15, 15, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--white);
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.4s ease, transform 0.6s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.interior-caption.is-active {
    opacity: 1;
    transform: translateY(0);
}

.interior-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.interior-caption p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 992px) {
    .interiors-section { padding: 40px 0 98px; }
    .interiors-frame { height: 74vh; }
    .interior-caption { left: 24px; right: 24px; max-width: none; }
    .interiors-stage { margin-top: 0; }
}

@media (max-width: 768px) {
    .interiors-section { padding: 30px 0 82px; }
    .interiors-header { margin-bottom: 16px; }
    .interiors-stage { margin-top: 0; }
    .interiors-sticky {
        top: var(--header-height);
        height: calc(100vh - var(--header-height));
    }
    .interiors-frame {
        height: auto;
        border-radius: 18px;
        overflow: visible;
        background: transparent;
        border: none;
        box-shadow: none;
    }
    .interiors-stage.is-static .interiors-sticky {
        top: auto;
        height: auto;
    }
    .interiors-stage.is-static .interiors-frame {
        height: auto;
    }
    .interiors-visuals {
        position: relative;
        inset: auto;
        height: min(62vh, calc(100vh - var(--header-height) - 140px));
        border-radius: 18px;
        overflow: hidden;
        background: rgba(6, 18, 18, 0.6);
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 35px 70px rgba(0, 0, 0, 0.35);
    }
    .interiors-overlay {
        position: relative;
        inset: auto;
        padding: 16px 0 0;
        display: block;
        width: 100%;
    }
    .interior-caption {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        margin: 0 14px;
        padding: 18px 18px;
        max-width: none;
        display: none;
    }
    .interior-caption.is-active {
        display: block;
    }
    .interior-caption p { font-size: 0.95rem; }
    .interiors-stage .gallery-dots {
        padding-top: 12px;
        margin-top: 40px;
    }
    /* On mobile the dots sit on a light background — override white (dark-variant) to teal */
    .interiors-stage .gallery-dots--dark .gallery-dot::before {
        border-color: var(--primary-teal, #005E58);
    }
    .interiors-stage .gallery-dots--dark .gallery-dot.is-active::before {
        background: rgba(0, 0, 0, 0.55);
        border-color: rgba(0, 0, 0, 0.7);
    }
    .interiors-stage .gallery-dots--dark .gallery-dot:hover:not(.is-active)::before {
        border-color: var(--accent-gold, #DCC39D);
        box-shadow: 0 0 8px rgba(220, 195, 157, 0.55);
    }
}

@media (prefers-reduced-motion: reduce) {
    .interior-layer,
    .interior-caption {
        transition: none;
    }
}

.audio-hint-btn.is-playing ~ .nature-waveform-container .nature-wave {
    opacity: 0.28;
}

.wave-a {
    animation: waveMotion1 8s ease-in-out infinite;
}

.wave-b {
    animation: waveMotion2 10s ease-in-out infinite;
    animation-delay: 0.5s;
}

@keyframes waveMotion1 {
    0%, 100% {
        d: path("M0,20 Q18,17 36,20 T72,22 T108,18 T144,22 T180,19 T216,22 T252,18 T288,22 T324,19 T360,22 T400,20");
    }
    50% {
        d: path("M0,20 Q18,23 36,20 T72,18 T108,22 T144,19 T180,21 T216,18 T252,22 T288,19 T324,21 T360,19 T400,20");
    }
}

@keyframes waveMotion2 {
    0%, 100% {
        d: path("M0,20 Q20,22 40,20 T80,18 T120,22 T160,19 T200,23 T240,18 T280,22 T320,19 T360,22 T400,20");
    }
    50% {
        d: path("M0,20 Q20,18 40,20 T80,22 T120,19 T160,23 T200,18 T240,22 T280,19 T320,23 T360,19 T400,20");
    }
}

/* ==========================================================================
   15. DEVELOPER SECTION
   ========================================================================== */
.developer-section {
    position: relative;
    padding: 120px 0 130px;
    background: linear-gradient(180deg, #f9f7f2 0%, #f2ede3 100%);
    overflow: hidden;
}

.developer-section::before {
    content: '';
    position: absolute;
    width: 520px;
    height: 520px;
    top: -160px;
    right: -160px;
    background: radial-gradient(circle, rgba(0, 94, 88, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.developer-section::after {
    content: '';
    position: absolute;
    width: 460px;
    height: 460px;
    left: -140px;
    bottom: -180px;
    background: radial-gradient(circle, rgba(220, 195, 157, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

.developer-header {
    max-width: 900px;
    margin: 0 auto 70px;
}

.developer-kicker, .contact-kicker {
    font-family: var(--font-body);
    font-size: 1.25rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-teal);
    margin-bottom: 18px;
    font-weight: 600;
}

.contact-external-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 40px 30px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(249, 247, 242, 0.9));
    border: 1px solid rgba(220, 195, 157, 0.4);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.06);
    border-radius: 18px;
    position: relative;
    overflow: hidden;
}

.contact-external-info::before {
    content: '';
    position: absolute;
    inset: -20%;
    background: 
        radial-gradient(circle at 85% 10%, rgba(220, 195, 157, 0.2), transparent 55%),
        radial-gradient(circle at 15% 90%, rgba(0, 94, 88, 0.1), transparent 45%);
    opacity: 0.6;
    pointer-events: none;
}

.contact-external-info .info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 250px;
    padding: 10px;
    position: relative;
    z-index: 1;
    background: transparent;
    border: none;
    box-shadow: none;
    transition: all 0.3s ease;
}

.contact-external-info .info-item:not(:last-child) {
    border-right: 1px solid rgba(0, 94, 88, 0.08);
}

.contact-external-info .info-item:hover {
    transform: translateY(-5px);
}

.contact-external-info .info-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 94, 88, 0.05);
    color: var(--primary-teal);
    border-radius: 50%;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.contact-external-info .info-item:hover .info-icon {
    background: var(--primary-teal);
    color: var(--white);
}

.contact-external-info .info-icon svg {
    width: 20px;
    height: 20px;
}

.contact-external-info .info-label {
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary-teal);
    margin-bottom: 8px;
    font-weight: 700;
    opacity: 0.7;
}

.contact-external-info .info-value {
    font-size: 0.95rem;
    color: var(--text-dark, #1a1a1a);
    text-decoration: none;
    line-height: 1.5;
    transition: color 0.3s ease;
    font-weight: 600;
    max-width: 280px;
}

.contact-external-info a.info-value:hover {
    color: var(--primary-teal);
}

.info-item.sales-office .info-value {
    font-size: 0.88rem;
    font-weight: 500;
}

@media (max-width: 991px) {
    .contact-external-info .info-item:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid rgba(0, 94, 88, 0.08);
        padding-bottom: 25px;
        margin-bottom: 25px;
    }
}

@media (max-width: 767px) {
    .contact-external-info {
        padding: 30px 20px;
    }
}

.developer-brand {
    color: var(--primary-teal);
    font-weight: 500;
}

.developer-grid {
    align-items: stretch;
    gap: 70px;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.developer-media {
    position: relative;
    display: flex;
    flex-direction: column;
}

.developer-content {
    display: flex;
}

.developer-image-frame {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    aspect-ratio: auto;
    min-height: clamp(340px, 42vw, 520px);
    height: 100%;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
    transition: transform 0.6s var(--ease-fluid), box-shadow 0.6s var(--ease-fluid);
    will-change: transform;
}

.developer-image-frame::after {
    content: '';
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(220, 195, 157, 0.5);
    border-radius: 18px;
    pointer-events: none;
}

.developer-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.developer-stamp {
    position: absolute;
    bottom: 18px;
    left: 18px;
    max-width: 70%;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(220, 195, 157, 0.6);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--primary-teal);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
    line-height: 1.4;
}

.developer-card {
    padding: 42px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(220, 195, 157, 0.25);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    transition: transform 0.6s var(--ease-fluid), box-shadow 0.6s var(--ease-fluid);
    height: 100%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.developer-media:hover .developer-image-frame {
    transform: translateY(-6px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
}

.developer-content:hover .developer-card {
    transform: translateY(-4px);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.08);
}

.developer-card p {
    font-size: 1rem;
    color: var(--text-body);
    margin-bottom: 18px;
}

.developer-card p:last-child {
    margin-bottom: 0;
}

.developer-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 24px 0;
    justify-content: flex-start;
}

.developer-chip {
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(0, 94, 88, 0.08);
    color: var(--primary-teal);
    border: 1px solid rgba(0, 94, 88, 0.18);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 500;
}

.developer-finale {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--text-dark);
    font-size: 1.05rem;
}

/* Developer Metrics */
.developer-metrics {
    width: 100%;
    margin-top: 20px;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.metric-card {
    background: rgba(0, 94, 88, 0.04);
    border: 1px solid rgba(0, 94, 88, 0.12);
    border-radius: 16px;
    padding: 35px 20px;
    text-align: center;
    color: var(--primary-teal);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: transform 0.4s ease, background 0.4s ease, border-color 0.4s ease;
}

.metric-card:hover {
    transform: translateY(-6px);
    background: rgba(0, 94, 88, 0.08);
    border-color: rgba(0, 94, 88, 0.25);
}

.metric-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(0, 94, 88, 0.2);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--primary-teal);
    box-shadow: 0 4px 10px rgba(0, 94, 88, 0.05);
}

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

.metric-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-teal);
    margin: 0 0 8px 0;
    line-height: 1;
    font-family: var(--font-heading, inherit);
}

.metric-unit {
    font-size: 0.75rem;
    color: rgba(0, 94, 88, 0.7);
    margin-bottom: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.metric-label {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary-teal);
}

.metrics-footer-text {
    text-align: center;
    color: rgba(0, 0, 0, 0.4);
    font-size: 0.82rem;
    margin-top: 32px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

@media (max-width: 1100px) {
    .metrics-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .metrics-grid {
        display: flex !important;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: visible;
        gap: 16px;
        padding-bottom: 20px;
        margin-left: -20px;
        margin-right: -20px;
        padding-left: 20px;
        padding-right: 20px;
        scroll-snap-type: x mandatory;
        scroll-padding-left: 20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .metrics-grid::-webkit-scrollbar {
        display: none;
    }

    .metrics-grid .metric-card {
        flex: 0 0 260px;
        scroll-snap-align: center;
    }
}

@media (max-width: 1200px) {
    .developer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

    .developer-card {
        padding: 34px;
    }

    .developer-image-frame {
        min-height: clamp(320px, 48vw, 480px);
    }
}

@media (max-width: 900px) {
    .developer-section {
        padding: 90px 0 100px;
    }

    .developer-header {
        margin-bottom: 50px;
    }

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

    .developer-card {
        padding: 32px;
    }

    .developer-media {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .developer-image-frame {
        min-height: auto;
        height: auto;
        aspect-ratio: 4 / 3;
    }

    .developer-stamp {
        position: static;
        margin-top: 16px;
        max-width: 100%;
        display: inline-flex;
    }
}

@media (max-width: 600px) {
    .developer-kicker, .contact-kicker {
        letter-spacing: 0.25em;
    }

    .developer-card {
        padding: 26px;
    }

    .developer-chip {
        font-size: 0.65rem;
        letter-spacing: 0.14em;
    }
}


/* Mobile Responsive */
@media (max-width: 768px) {
    .nature-section {
        padding: 80px 0;
    }
    
    .nature-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .nature-text p {
        font-size: 0.95rem;
    }
    
    .nature-waveform-container {
        max-width: 100vw;
        width: 100vw;
        height: 36px;
    }
}

/* ==========================================================================
   GALLERY DOT NAVIGATION — shared across all immersive galleries
   ========================================================================== */
.gallery-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 0 8px;
    list-style: none;
    margin: 0;
    border: 0;
    background: transparent;
}

.gallery-dot {
    appearance: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent !important;
    color: inherit !important;
    cursor: pointer;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

.gallery-dot:hover,
.gallery-dot:active,
.gallery-dot:focus {
    background: transparent !important;
    color: inherit !important;
    outline: none;
}

.gallery-dot::before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--primary-teal, #005E58);
    background: transparent;
    transition: background 0.30s ease, border-color 0.30s ease,
                transform 0.30s ease, box-shadow 0.30s ease;
}

.gallery-dot.is-active::before {
    background: rgba(0, 0, 0, 0.55);
    border-color: rgba(0, 0, 0, 0.7);
    transform: scale(1.35);
}

.gallery-dot:hover:not(.is-active)::before {
    border-color: var(--accent-gold, #DCC39D);
    box-shadow: 0 0 8px rgba(220, 195, 157, 0.55);
}

/* ==========================================================================
   GALLERY ARROW NAVIGATION — elegant & modern side navigation
   ========================================================================== */
.gallery-arrows {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(1380px, 98vw);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.gallery-arrow-btn {
    pointer-events: auto;
    appearance: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--white, #FFFFFF);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
    padding: 0;
    margin: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.gallery-arrow-btn svg {
    transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1);
}

.gallery-arrow-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-gold, #DCC39D);
    color: var(--accent-gold, #DCC39D);
    transform: scale(1.08);
}

.gallery-arrow-btn.prev:hover svg {
    transform: translateX(-2px);
}

.gallery-arrow-btn.next:hover svg {
    transform: translateX(2px);
}

/* Dark variant: used in interiors or light backgrounds */
.gallery-arrows--dark .gallery-arrow-btn {
    border-color: rgba(0, 94, 88, 0.1);
    background: rgba(255, 255, 255, 0.2);
    color: var(--primary-teal, #005E58);
}

.gallery-arrows--dark .gallery-arrow-btn:hover {
    background: rgba(0, 94, 88, 0.05);
    border-color: var(--primary-teal, #005E58);
    color: var(--primary-teal, #005E58);
}

@media (max-width: 768px) {
    .gallery-arrows {
        width: 100%;
        padding: 0 10px;
    }
    .gallery-arrow-btn {
        width: 40px;
        height: 40px;
    }
}

.gallery-dot:focus-visible::before {
    outline: 2px solid var(--accent-gold, #DCC39D);
    outline-offset: 3px;
}

/* Variant for dark gallery backgrounds (Interioare) */
.gallery-dots--dark .gallery-dot::before {
    border-color: rgba(255, 255, 255, 0.5);
}

.gallery-dots--dark .gallery-dot.is-active::before {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(255, 255, 255, 0.9);
}

.gallery-dots--dark .gallery-dot:hover:not(.is-active)::before {
    border-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

@media (prefers-reduced-motion: reduce) {
    .gallery-dot::before {
        transition: none;
    }
}

/* ==========================================================================
   16. INTERACTIVE MAP (MapLibre)
   ========================================================================== */

#av-map-branded {
    height: 850px;
    width: 100%;
    position: relative;
    background: var(--av-dark-bg, #031412);
    font-family: 'Segoe UI', sans-serif;
    margin-top: 50px;
}

.av-card {
    position: absolute;
    top: 25px;
    left: 25px;
    z-index: 10;
    background: rgba(3, 20, 18, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 25px;
    border-radius: 18px;
    border: 1px solid #B99567;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    max-width: 260px;
    pointer-events: none;
}

.av-card h3 {
    margin: 0;
    color: #B99567;
    letter-spacing: 3px;
    font-size: 20px;
    text-transform: uppercase;
    font-family: 'Times New Roman', serif;
}

.av-card p {
    margin: 8px 0 0;
    font-size: 11px;
    color: #f0f0f0;
    line-height: 1.4;
    letter-spacing: 1px;
}

.av-pin-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    z-index: 50;
    filter: drop-shadow(0 0 18px #005E58);
    animation: pulse-av 3s infinite;
}

.av-pin-main {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background-color: #005E58;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    border: 3px solid #B99567;
    flex-shrink: 0;
}

.av-pin-tip {
    width: 0;
    height: 0;
    border-left: 19px solid transparent;
    border-right: 19px solid transparent;
    border-top: 30px solid #B99567;
    margin-top: -2px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.4));
}

@keyframes pulse-av {
    0%   { filter: drop-shadow(0 0 10px #005E58); }
    50%  { filter: drop-shadow(0 0 30px #005E58); }
    100% { filter: drop-shadow(0 0 10px #005E58); }
}

.poi-label-branded {
    background: rgba(3, 20, 18, 0.75);
    color: rgba(185, 149, 103, 0.9);
    padding: 6px 13px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(185, 149, 103, 0.35);
    white-space: normal;
    max-width: 120px;
    text-align: center;
    line-height: 1.35;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.maplibregl-popup-content {
    background: #031412 !important;
    color: #B99567 !important;
    border: 1px solid #B99567 !important;
    border-radius: 10px !important;
}

@media (max-width: 768px) {
    #av-map-branded {
        height: 600px;
    }

    .av-card {
        padding: 16px 18px;
        max-width: 180px;
        top: 14px;
        left: 14px;
    }

    .av-card h3 {
        font-size: 15px;
    }

    .av-pin-main {
        width: 76px;
        height: 76px;
    }

    .av-pin-tip {
        border-left-width: 13px;
        border-right-width: 13px;
        border-top-width: 20px;
    }
}

/* ── Apartment Checkbox Chips ─────────────────────── */
.apt-check-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 4px;
}

.apt-check-group__label {
    display: block;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary-teal);
    margin-bottom: 10px;
    font-weight: 600;
}

.apt-check-chip {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.apt-check-chip input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.apt-check-chip__label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border: 1.5px solid rgba(0, 94, 88, 0.35);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dark, #1a1a1a);
    background: transparent;
    transition: border-color 0.2s, background 0.2s, color 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}

.apt-check-chip__label::before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 3px;
    border: 1.5px solid rgba(0, 94, 88, 0.5);
    background: transparent;
    transition: background 0.2s, border-color 0.2s;
    flex-shrink: 0;
}

.apt-check-chip input:checked + .apt-check-chip__label {
    background: var(--primary-teal);
    border-color: var(--primary-teal);
    color: #fff;
    box-shadow: 0 2px 10px rgba(0, 94, 88, 0.25);
}

.apt-check-chip input:checked + .apt-check-chip__label::before {
    background: #fff;
    border-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4l2.5 2.5L9 1' stroke='%23005E58' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: 10px 8px;
    background-repeat: no-repeat;
    background-position: center;
}

.apt-check-chip:hover .apt-check-chip__label {
    border-color: var(--primary-teal);
    background: rgba(0, 94, 88, 0.06);
}

.apt-check-chip input:checked + .apt-check-chip__label:hover {
    background: #004D48;
    border-color: #004D48;
}

.apt-check-field-wrap {
    grid-column: 1 / -1;
}

@media (max-width: 600px) {
    .apt-check-group { gap: 8px; }
    .apt-check-chip__label { padding: 7px 14px; font-size: 0.82rem; }
}


/* Ascuns pe desktop */
.mobile-lang-switcher {
    display: none;
}

@media (max-width: 991px) {
    /* Asigurăm că părintele (header-container) are poziție relativă */
    .header-container {
        position: relative;
    }

    .mobile-lang-switcher {
        display: block;
        position: absolute;
        /* Calcul: 22px (margine burger) + 44px (lățime burger) + 10px (spațiu între ele) */
        right: 76px; 
        top: 50%;
        transform: translateY(-50%);
        z-index: 99;
    }

    /* Forțăm transparența și curățăm stilurile implicite ale plugin-ului */
    .mobile-lang-switcher,
    .mobile-lang-switcher div,
    .mobile-lang-switcher ul,
    .mobile-lang-switcher li,
    .mobile-lang-switcher a,
    .mobile-lang-switcher button {
        background: transparent !important;
        background-color: transparent !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        margin: 0 !important;
        color: #fff !important; /* Sau culoarea logo-ului tău */
    }

    /* Dacă switcher-ul are dropdown, asigură-te că nu e tăiat */
    .mobile-lang-switcher ul {
        position: absolute;
        right: 0;
        top: 100%;
        background: rgba(0, 0, 0, 0.8) !important; /* Doar pentru meniul deschis, să fie lizibil */
    }
}

.mt-0 {
    margin-top: 0 !important;
    margin-block-start: 0 !important;
}

/* 1. ASCUNDEM ANCORA (Butonul care apare singur la început) */
.trp-shortcode-switcher.trp-shortcode-anchor {
    display: none !important;
}

/* WhatsApp in header - align left like language switcher on right */
.header-whatsapp {
    display: none; /* Ascuns pe mobil implicit */
}

@media (min-width: 992px) {
    .header-whatsapp {
        position: absolute !important;
        left: 40px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        z-index: 100;
        display: flex !important;
        align-items: center;
    }
}

/* 2. CONTAINERUL PRINCIPAL (OVERLAY-UL) - Mai finuț și transparent */
/* 2. CONTAINERUL PRINCIPAL (OVERLAY-UL) - Mai finuț și transparent */
.header-lang-switcher {
    display: none; /* Ascuns pe mobil implicit */
}

@media (min-width: 992px) {
    .header-lang-switcher {
        position: absolute !important;
        right: 40px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        z-index: 100;
        display: flex !important;
        align-items: center;
    }
}

.trp-shortcode-switcher.trp-shortcode-overlay {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    transform: none !important;
    pointer-events: auto !important;
    
    /* Design: Fundal transparent + Finețe */
    background: rgb(255 255 255 / 31%) !important; /* Alb transparent */
    backdrop-filter: blur(8px); /* Efect de sticlă mată */
    -webkit-backdrop-filter: blur(8px);
    padding: 2px 8px !important; /* Padding redus */
    border-radius: 8px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important; /* Umbră discretă */
    gap: 8px !important; /* Distanță între RO și EN */
    width: max-content !important;
    height: auto !important;
    max-height: none !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important; /* Border fin pt contur */
}

/* 3. RESETĂM LISTA INTERNĂ (Anulăm max-height: 350px și scroll-ul) */
.trp-shortcode-switcher.trp-shortcode-overlay .trp-switcher-dropdown-list {
    display: flex !important;
    flex-direction: row !important;
    position: static !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    gap: 15px !important;
}

/* 4. ALINIEM LIMBA CURENTĂ CU CELELALTE */
.trp-shortcode-switcher.trp-shortcode-overlay .trp-current-language-item__wrapper {
    display: flex !important;
    align-items: center !important;
    margin: 0 !important;
}

/* 5. STIL TEXT ȘI LINK-URI */
.trp-shortcode-switcher.trp-shortcode-overlay a {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    text-decoration: none !important;
    background: transparent !important;
    color: #143852 !important; /* Albastru închis din design */
    font-weight: 600 !important;
    font-size: 13px !important; /* Font puțin mai mic pentru aspect fin */
    padding: 0 !important;
    white-space: nowrap !important;
    transition: opacity 0.2s ease;
}

.trp-shortcode-switcher.trp-shortcode-overlay a:hover {
    opacity: 0.7 !important;
    background: transparent !important;
}

/* 6. CURĂȚĂM ELEMENTELE INUTILE (Săgeți, tooltips) */
.trp-shortcode-switcher .trp-shortcode-arrow,
.trp-shortcode-switcher .trp-shortcode-arrow::before,
.trp-shortcode-switcher .trp-shortcode-arrow::after,
.trp-ls-shortcode-disabled {
    display: none !important;
}

/* 7. AJUSTARE STEAGURI */
.trp-shortcode-switcher img.trp-flag-image {
    width: 18px !important; /* Steaguri puțin mai mici */
    height: auto !important;
    border-radius: 2px !important;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* AJUSTARE FINALĂ PENTRU MOBIL */
@media (max-width: 991px) {
    /* Forțăm containerul să ocupe tot rândul și să se așeze sub meniu */
    .mobile-lang-switcher {
        position: relative !important;
        display: block !important; /* Îl scoatem din fluxul lateral */
        width: auto !important;
        text-align: center !important; /* Centrează conținutul inline (switcher-ul) */
        margin: 40px 0 20px 0 !important; /* Spațiu sus/jos */
        float: none !important;
        left: 0 !important;
        right: 0 !important;
        top: 0 !important;
        clear: both !important;
    }

    /* Forțăm switcher-ul să fie tratat ca element inline-block pentru a asculta de text-align: center */
    .header-lang-switcher .trp-shortcode-switcher.trp-shortcode-overlay {
        display: inline-flex !important; /* Menținem layout-ul orizontal al steagurilor */
        margin: 0 auto !important;
        float: none !important;
        /* Dacă vrei să fie și mai vizibil pe mobil, poți mări padding-ul puțin aici */
        padding: 8px 18px !important;
    }
}

/* Override WP default pink hover/focus for buttons */
button:hover,
button:focus,
[type="button"]:hover,
[type="button"]:focus,
[type="submit"]:hover,
[type="submit"]:focus {
    background-color: #fff;
    color: var(--text-dark);
    text-decoration: none;
}
