/* ═══════════════════════════════════════════
   VICTORY SPA ISTANBUL — STYLE.CSS
   Dark luxury palette · Sıfırdan yazıldı
═══════════════════════════════════════════ */

/* ─── VARIABLES ─── */
:root {
    --black: #0a0a0a;
    --black-light: #111111;
    --black-card: #161616;
    --black-border: #1f1f1f;
    --gold: #c9a96e;
    --gold-light: #dfc291;
    --gold-dark: #a8863f;
    --cream: #f5efe6;
    --cream-muted: #c4b99a;
    --white: #fafaf8;
    --white-50: rgba(250, 250, 248, 0.5);
    --white-20: rgba(250, 250, 248, 0.2);
    --white-10: rgba(250, 250, 248, 0.1);
    --white-05: rgba(250, 250, 248, 0.05);
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', sans-serif;
    --font-accent: 'Cormorant Garamond', Georgia, serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

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

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--white);
    background: var(--black) !important;
    line-height: 1.7;
    overflow-x: hidden !important;
    max-width: 100vw;
}

/* Override any parent theme styles */
html, body {
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden !important;
}

/* Kill parent theme wrapper divs */
.wrap-fullwidth,
.inside-content,
.row_site,
.container_site,
#main-content {
    display: contents !important;
    overflow: visible !important;
    max-width: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Kill any parent theme global styles */
#page, #content, #primary, #secondary,
.site, .site-content, .content-area,
.hfeed, .site-main {
    display: contents !important;
    overflow: visible !important;
}

/* WordPress admin bar spacing */
body.admin-bar .navbar {
    top: 32px;
}

@media (max-width: 782px) {
    body.admin-bar .navbar {
        top: 46px;
    }
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

ul, ol {
    list-style: none;
}

/* ─── UTILITIES ─── */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 120px 0;
}

.section-eyebrow {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    font-family: var(--font-accent);
    font-size: 1.15rem;
    color: var(--cream-muted);
    max-width: 560px;
}

.gold-divider {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 24px;
}

.center-header {
    text-align: center;
    margin-bottom: 64px;
}

.center-header .gold-divider {
    margin-left: auto;
    margin-right: auto;
}

.center-header .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

/* ─── BUTTONS ─── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--gold);
    color: var(--black);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: color 0.2s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--black);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s var(--ease-out);
    z-index: -1;
}

.btn-primary:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-primary:hover {
    color: var(--gold);
}

/* Ensure ALL child elements stay above ::before */
.btn-primary > * {
    position: relative;
    z-index: 2;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: transparent;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid var(--white-20);
    cursor: pointer;
    transition: all 0.4s var(--ease-out);
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ─── CURSOR ─── */
.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.1s ease;
}

.cursor-ring {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1px solid var(--gold-light);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    opacity: 0.5;
    transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
}

.cursor-ring.hover {
    width: 60px;
    height: 60px;
    opacity: 0.2;
}

@media (max-width: 1024px) {
    .cursor-dot,
    .cursor-ring {
        display: none;
    }
}

/* ═══════════════════════════════════════════
   PRELOADER
═══════════════════════════════════════════ */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 24px;
    background: var(--black);
}

.preloader-curtain-left,
.preloader-curtain-right {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    background: var(--black);
    z-index: 1;
}

.preloader-curtain-left {
    left: 0;
}

.preloader-curtain-right {
    right: 0;
}

.preloader-logo {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.08em;
    opacity: 0;
    animation: preloaderLogoIn 1.2s ease-out 0.3s forwards;
    z-index: 2;
}

@keyframes preloaderLogoIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.preloader-bar {
    position: relative;
    width: 120px;
    height: 1px;
    background: var(--white-10);
    z-index: 2;
}

.preloader-bar::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: var(--gold);
    animation: preloaderBar 1.5s ease-in-out 0.5s forwards;
}

@keyframes preloaderBar {
    to { width: 100%; }
}

/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
.navbar {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999 !important;
    padding: 20px 0;
    transition: all 0.5s var(--ease-out);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 99999;
}

.nav-logo img {
    height: 44px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: filter 0.5s ease;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    position: relative;
    z-index: 99999;
}

.nav-links li {
    position: relative;
    z-index: 99999;
}

.nav-links a {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--white);
    transition: color 0.3s ease;
    pointer-events: auto !important;
    cursor: pointer !important;
    position: relative;
    z-index: 99999;
}
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--white);
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-cta {
    padding: 10px 24px !important;
    background: var(--gold) !important;
    color: var(--black) !important;
    font-weight: 500 !important;
    transition: background 0.3s ease !important;
    pointer-events: auto !important;
    cursor: pointer !important;
    display: inline-block !important;
    position: relative;
    z-index: 99999;
}

.nav-cta:hover {
    background: var(--gold-light) !important;
    color: var(--black) !important;
}

/* Navbar — scrolled (siyah arka plan) */
.navbar.scrolled {
    padding: 12px 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--white-05);
}

/* Navbar — scrolled-gold (services bölümünde altın arka plan) */
.navbar.scrolled-gold {
    padding: 12px 0;
    background: var(--gold);
    backdrop-filter: none;
    border-bottom: 1px solid var(--gold-dark);
}

.navbar.scrolled-gold .nav-links a {
    color: var(--black);
}

.navbar.scrolled-gold .nav-links a:hover {
    color: var(--white);
}

.navbar.scrolled-gold .nav-cta {
    background: var(--black) !important;
    color: var(--gold) !important;
}

.navbar.scrolled-gold .nav-cta:hover {
    background: var(--black-light) !important;
}

.navbar.scrolled-gold .nav-logo img {
    filter: brightness(0);
}

.navbar.scrolled-gold .nav-hamburger span {
    background: var(--black);
}

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-hamburger span {
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

.nav-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--black);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 99998;
    transition: right 0.5s var(--ease-out);
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu a {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--white);
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: var(--gold);
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
    }
    .nav-hamburger {
        display: flex;
    }
    /* Mobile: navbar starts transparent, changes on scroll like desktop */
    .navbar {
        padding: 12px 0 !important;
    }
    .navbar.scrolled {
        background: rgba(10, 10, 10, 0.95) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
    }
    .navbar.scrolled-gold {
        background: var(--gold) !important;
        backdrop-filter: none !important;
    }
    .navbar.scrolled-gold .nav-logo img {
        filter: brightness(0) !important;
    }
    .navbar.scrolled-gold .nav-hamburger span {
        background: var(--black) !important;
    }
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--black);
    z-index: 0;
}

.hero-video {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    min-width: 100%;
    min-height: 100%;
}

/* Mobile: hide video, show poster image for performance */
@media (max-width: 768px) {
    .hero-video video {
        object-position: center 30%;
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.65) 0%,
        rgba(10, 10, 10, 0.5) 40%,
        rgba(10, 10, 10, 0.75) 100%
    );
    z-index: 2;
}

.hero-grain {
    position: absolute;
    inset: 0;
    z-index: 3;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    pointer-events: none;
}

/* ─── HERO WELCOME (watermark text) ─── */
.hero-welcome {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
    user-select: none;
}

.hw-line {
    display: block;
    line-height: 1;
    overflow: hidden;
}

.hw-word {
    display: inline-block;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    -webkit-text-stroke: 1px var(--white-20);
    color: transparent;
}

.hw-small {
    font-size: clamp(1rem, 2.5vw, 1.6rem);
    font-weight: 400;
    -webkit-text-stroke-width: 0.5px;
    margin-bottom: 8px;
}

.hw-large {
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 700;
}

.hw-accent {
    -webkit-text-stroke-color: var(--gold);
    opacity: 0.4;
}

/* ─── HERO CONTENT ─── */
.hero-content {
    position: relative;
    z-index: 5;
    max-width: 720px;
    padding: 0 24px;
    padding-top: 80px;
    margin-left: 8%;
}

.hero-eyebrow {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}

.hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 24px;
}

.hero-content h1 em {
    font-style: italic;
    color: var(--gold);
}

.hero-desc {
    font-family: var(--font-accent);
    font-size: clamp(1rem, 1.4vw, 1.25rem);
    color: var(--cream-muted);
    line-height: 1.8;
    max-width: 540px;
    margin-bottom: 16px;
}

.hero-desc-sub {
    font-size: clamp(0.85rem, 1.2vw, 1rem) !important;
    font-family: var(--font-body) !important;
    font-weight: 300;
    opacity: 0.8;
    margin-bottom: 32px !important;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ─── HERO SIDE INFO ─── */
.hero-side-info {
    position: absolute;
    right: 40px;
    bottom: 120px;
    z-index: 5;
    text-align: right;
}

.hero-side-info .rating {
    margin-bottom: 16px;
}

.hero-side-info .stars {
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 3px;
    margin-bottom: 4px;
}

.hero-side-info .rating-text {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white-50);
}

.hero-side-info .hours {
    font-size: 0.7rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: var(--white-50);
}

/* ─── HERO SCROLL ─── */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hero-scroll span {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white-50);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--white-20);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { top: -100%; }
    50% { top: 100%; }
    100% { top: 100%; }
}

/* ─── GSAP REVEAL — DISABLED (elements visible immediately) ─── */
.reveal,
.reveal-left,
.reveal-right,
.reveal-scale {
    opacity: 1 !important;
    transform: none !important;
}

/* ═══════════════════════════════════════════
   MARQUEE
═══════════════════════════════════════════ */
.marquee-strip {
    padding: 20px 0;
    background: var(--gold);
    overflow: hidden;
    white-space: nowrap;
}

.marquee-track {
    display: flex;
    gap: 0;
    animation: marqueeScroll 30s linear infinite;
}

.marquee-track span {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--black);
    padding: 0 32px;
    flex-shrink: 0;
}

.marquee-track span::after {
    content: '✦';
    margin-left: 32px;
    color: var(--black);
    opacity: 0.4;
}

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

/* ═══════════════════════════════════════════
   INTRO
═══════════════════════════════════════════ */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.intro-images {
    position: relative;
}

.intro-img-main {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border: 1px solid var(--white-05);
}

.intro-img-accent {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 55%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border: 4px solid var(--black);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.intro-badge {
    position: absolute;
    top: 24px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--black);
    box-shadow: 0 8px 32px rgba(201, 169, 110, 0.3);
}

.intro-badge .number {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.intro-badge .label {
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.intro-text {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    color: var(--cream-muted);
    line-height: 1.8;
    margin-bottom: 32px;
}

.intro-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 40px;
}

.intro-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--white);
}

.intro-feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--white-10);
    border-radius: 50%;
    flex-shrink: 0;
    color: var(--gold);
}

/* ═══════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════ */
.services {
    background: var(--black-light);
}

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

.service-card {
    position: relative;
    display: block;
    aspect-ratio: 3/4;
    overflow: hidden;
    border: 1px solid var(--white-05);
    cursor: pointer;
}

.service-card-number {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 3;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--white);
    background: rgba(10, 10, 10, 0.4);
    padding: 4px 10px;
    backdrop-filter: blur(10px);
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

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

.service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0.1) 60%);
    z-index: 1;
}

.service-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px;
    z-index: 2;
}

.service-card-content h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 8px;
}

.service-card-content p {
    font-family: var(--font-accent);
    font-size: 0.95rem;
    color: var(--cream-muted);
    line-height: 1.5;
}

.service-card-arrow {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 3;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--white-20);
    border-radius: 50%;
    color: var(--white);
    opacity: 0;
    transform: translate(-8px, 8px);
    transition: all 0.4s var(--ease-out);
}

.service-card:hover .service-card-arrow {
    opacity: 1;
    transform: translate(0, 0);
}

/* ═══════════════════════════════════════════
   GIFT CARD SECTION
═══════════════════════════════════════════ */
.gift-card-section {
    padding: 80px 0;
    background: var(--black);
    border-top: 1px solid var(--white-05);
    border-bottom: 1px solid var(--white-05);
}

.gift-card-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.gift-card-desc {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--cream-muted);
    line-height: 1.8;
    margin-bottom: 24px;
}

.gift-card-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
}

.gift-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--cream-muted);
}

/* Gift Card Mock */
.gift-card-visual {
    display: flex;
    justify-content: center;
}

.gift-card-mock {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1.6 / 1;
    background: linear-gradient(135deg, var(--black-card) 0%, rgba(201, 169, 110, 0.08) 100%);
    border: 1px solid var(--gold);
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.gift-card-mock::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.gift-mock-logo {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
}

.gift-mock-logo img {
    height: 36px;
    width: auto;
    display: block;
    object-fit: contain;
}

.gift-mock-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--gold);
    position: relative;
    z-index: 1;
}

.gift-mock-text {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--cream-muted);
    letter-spacing: 0.05em;
    position: relative;
    z-index: 1;
}

.gift-mock-divider {
    width: 40px;
    height: 1px;
    background: var(--gold);
    position: relative;
    z-index: 1;
}

.gift-mock-footer {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cream-muted);
    opacity: 0.6;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .gift-card-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .gift-card-mock {
        max-width: 340px;
        padding: 32px 28px;
    }
}

/* ═══════════════════════════════════════════
   PRICE LIST
═══════════════════════════════════════════ */
.pricelist {
    background: var(--black);
}

.pricelist-header {
    text-align: center;
    margin-bottom: 64px;
}

.pricelist-header .gold-divider {
    margin-left: auto;
    margin-right: auto;
}

.price-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.price-category {
    margin-bottom: 48px;
}

.price-category-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--gold);
    padding-bottom: 16px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--white-10);
}

.price-item {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--white-05);
}

.price-item-left {
    flex-shrink: 0;
}

.price-item-name {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--white);
}

.price-item-detail {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    color: var(--cream-muted);
    margin-top: 2px;
}

.price-item-dots {
    flex: 1;
    border-bottom: 1px dotted var(--white-10);
    min-width: 20px;
    margin-bottom: 4px;
}

.price-item-price {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold);
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   PACKAGES
═══════════════════════════════════════════ */
.packages {
    background: var(--black-light);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: stretch;
}

.package-card {
    position: relative;
    background: var(--black-card);
    border: 1px solid var(--white-10);
    padding: 48px 36px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.4s var(--ease-out);
}

.package-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(201, 169, 110, 0.08);
}

.package-card.featured {
    border-color: var(--gold);
    background: linear-gradient(to bottom, rgba(201, 169, 110, 0.08), var(--black-card));
}

.package-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--black);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 6px 20px;
}

.package-name {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cream-muted);
    margin-bottom: 4px;
}

.package-tier {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white-50);
    margin-bottom: 16px;
}

.package-price {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1;
    margin-bottom: 32px;
}

.package-price .currency {
    font-size: 1.4rem;
    font-weight: 400;
    vertical-align: super;
    color: var(--gold);
    margin-right: 4px;
}

.package-features {
    width: 100%;
    margin-bottom: 36px;
    flex-grow: 1;
}

.package-features li {
    font-family: var(--font-accent);
    font-size: 1rem;
    color: var(--cream-muted);
    padding: 10px 0;
    border-bottom: 1px solid var(--white-05);
}

.package-features li:last-child {
    border-bottom: none;
}

.package-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px 24px;
    background: transparent;
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid var(--gold);
    cursor: pointer;
    transition: all 0.4s var(--ease-out);
}

.package-btn:hover {
    background: var(--gold);
    color: var(--black);
}

.package-card.featured .package-btn {
    background: var(--gold);
    color: var(--black);
}

.package-card.featured .package-btn:hover {
    background: var(--gold-light);
}

/* ═══════════════════════════════════════════
   PARALLAX BREAK
═══════════════════════════════════════════ */
.parallax-break {
    position: relative;
    height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-break-bg {
    position: absolute;
    inset: -20%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.parallax-break-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.7);
}

.parallax-break-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    padding: 0 24px;
}

.parallax-break-content blockquote {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 400;
    font-style: italic;
    color: var(--white);
    line-height: 1.5;
    margin-bottom: 20px;
}

.parallax-break-content cite {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    font-style: normal;
}

/* ═══════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════ */
.testimonials {
    background: var(--black);
}

.testimonial-swiper {
    padding: 0 24px 40px;
}

.testimonial-card {
    background: var(--black-card);
    border: 1px solid var(--white-10);
    padding: 40px 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-quote-mark {
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: -8px;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-family: var(--font-accent);
    font-size: 1.05rem;
    color: var(--cream-muted);
    line-height: 1.7;
    flex-grow: 1;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--white-05);
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    background: var(--gold);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
}

.testimonial-name {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--white);
}

.testimonial-origin {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    color: var(--cream-muted);
}

/* ═══════════════════════════════════════════
   GALLERY
═══════════════════════════════════════════ */
.gallery {
    background: var(--black-light);
    padding-bottom: 80px;
}

.gallery-swiper {
    padding: 0 0 60px;
}

.gallery-swiper .swiper-slide {
    width: 400px;
    height: 320px;
    overflow: hidden;
}

.gallery-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.gallery-swiper .swiper-slide:hover img {
    transform: scale(1.05);
}

.swiper-nav-custom {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.swiper-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--white-20);
    background: transparent;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.swiper-btn svg {
    width: 20px;
    height: 20px;
}

.swiper-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ═══════════════════════════════════════════
   LOCATION
═══════════════════════════════════════════ */
.location {
    background: var(--black);
}

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

.location-map {
    border: 1px solid var(--white-10);
    overflow: hidden;
}

.location-map iframe {
    width: 100%;
    height: 450px;
    display: block;
    filter: grayscale(0.5) brightness(0.8);
}

.location-detail {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.location-detail-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--white-10);
    border-radius: 50%;
    flex-shrink: 0;
    color: var(--gold);
}

.location-detail-text {
    font-size: 0.9rem;
    color: var(--cream-muted);
    line-height: 1.6;
}

.location-detail-text strong {
    display: block;
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--white);
    margin-bottom: 4px;
}

/* ═══════════════════════════════════════════
   CTA SECTION — PARALLAX BACKGROUND
═══════════════════════════════════════════ */
.cta-section {
    position: relative;
    padding: 120px 0;
    text-align: center;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: -20%;
    background-image: url('https://spavictory.com/wp-content/uploads/2026/03/033.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.8);
}

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

.cta-section .section-eyebrow {
    color: var(--gold);
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 500;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 24px;
}

.cta-title em {
    font-style: italic;
    color: var(--gold);
}

.cta-desc {
    font-family: var(--font-accent);
    font-size: 1.15rem;
    color: var(--cream-muted);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
    background: var(--black-light);
    padding: 80px 0 0;
    border-top: 1px solid var(--white-05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--white-05);
}

.footer-brand img {
    height: 48px;
    width: auto;
    display: block;
    object-fit: contain;
}

.footer-brand p {
    font-family: var(--font-accent);
    font-size: 0.95rem;
    color: var(--cream-muted);
    line-height: 1.7;
    margin-top: 20px;
    max-width: 300px;
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    font-size: 0.9rem;
    color: var(--cream-muted);
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--gold);
}

.footer-contact-item {
    margin-bottom: 16px;
    font-size: 0.9rem;
    color: var(--cream-muted);
    line-height: 1.5;
}

.footer-contact-item strong {
    display: block;
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--white);
    margin-bottom: 4px;
}

.footer-contact-item a {
    color: var(--cream-muted);
}

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

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(197,157,95,0.4);
    border-radius: 50%;
    color: var(--gold);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(197,157,95,0.12);
    transform: scale(1.08);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--white-50);
}

.footer-hours {
    font-size: 0.8rem;
    color: var(--white-50);
}

.footer-credit {
    font-size: 0.75rem;
    color: var(--white-50);
    opacity: 0.6;
}

.footer-credit a {
    color: var(--white-50);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-credit a:hover {
    color: var(--gold);
}

/* ═══════════════════════════════════════════
   WHATSAPP FLOAT
═══════════════════════════════════════════ */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 24px;
    z-index: 99990;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 24px rgba(37, 211, 102, 0.35);
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    fill: white;
}

.whatsapp-float .pulse {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid #25d366;
    animation: whatsappPulse 2s ease-out infinite;
}

@keyframes whatsappPulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
    .section {
        padding: 80px 0;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .intro-img-accent {
        right: 0;
        bottom: -20px;
        width: 45%;
    }

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

    .counters-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

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

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

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

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

    .hero-side-info {
        display: none;
    }

    .hero-content {
        margin-left: 0;
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-welcome .hw-large {
        font-size: clamp(3rem, 10vw, 7rem);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .section {
        padding: 64px 0;
    }

    .container {
        padding: 0 16px;
    }

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

    .service-card {
        aspect-ratio: 4/3;
    }

    .packages-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .counters-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .gallery-swiper .swiper-slide {
        width: 300px;
        height: 240px;
    }

    .parallax-break {
        height: 400px;
    }

    .hero-content h1 {
        font-size: clamp(1.8rem, 7vw, 2.8rem);
    }

    .hero-welcome .hw-large {
        font-size: clamp(2.5rem, 14vw, 5rem);
    }

    .hero-welcome .hw-small {
        font-size: clamp(0.8rem, 2.5vw, 1rem);
    }

    .btn-primary,
    .btn-secondary {
        padding: 14px 28px;
        font-size: 0.8rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .location-map iframe {
        height: 300px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .intro-features {
        grid-template-columns: 1fr;
    }

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

    .hero-welcome .hw-large {
        font-size: clamp(2rem, 16vw, 4rem);
    }
}

/* ═══════════════════════════════════════════
   PAGE HERO (Blog & inner pages)
═══════════════════════════════════════════ */
.page-hero {
    position: relative;
    padding: 160px 0 60px;
    background: var(--black-light);
    border-bottom: 1px solid var(--white-05);
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

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

.page-hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cream-muted);
    margin-bottom: 24px;
}

.page-hero-breadcrumb a {
    color: var(--cream-muted);
    transition: color 0.3s ease;
}

.page-hero-breadcrumb a:hover {
    color: var(--gold);
}

.page-hero-breadcrumb span:not(:last-child) {
    color: var(--white-20);
}

.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 3.5rem);
    font-weight: 500;
    color: var(--white);
    margin-bottom: 16px;
}

.page-hero-desc {
    font-family: var(--font-accent);
    font-size: 1.15rem;
    color: var(--cream-muted);
    max-width: 560px;
}

/* Active nav link */
.nav-links a.active {
    color: var(--gold);
}

/* ═══════════════════════════════════════════
   BLOG ARCHIVE — LAYOUT
═══════════════════════════════════════════ */
.blog-archive {
    background: var(--black);
}

.blog-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: start;
}

/* ─── BLOG GRID ─── */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

/* ─── BLOG CARD ─── */
.blog-card {
    display: flex;
    flex-direction: column;
    background: var(--black-card);
    border: 1px solid var(--white-05);
    overflow: hidden;
    transition: all 0.4s var(--ease-out);
}

.blog-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.blog-card-img {
    position: relative;
    aspect-ratio: 5/3;
    overflow: hidden;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.06);
}

.blog-card-category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--gold);
    color: var(--black);
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 12px;
}

.blog-card-body {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.blog-card-date,
.blog-card-read {
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: var(--cream-muted);
}

.blog-card-read::before {
    content: '·';
    margin-right: 16px;
    color: var(--white-20);
}

.blog-card-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--white);
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-card-title {
    color: var(--gold);
}

/* ─── SIDEBAR ─── */
.blog-sidebar,
.article-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--black-card);
    border: 1px solid var(--white-05);
    padding: 28px;
    margin-bottom: 24px;
}

.sidebar-widget-title {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--white-10);
}

/* Sidebar — Categories */
.sidebar-categories li {
    border-bottom: 1px solid var(--white-05);
}

.sidebar-categories li:last-child {
    border-bottom: none;
}

.sidebar-categories a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 0.9rem;
    color: var(--cream-muted);
    transition: color 0.3s ease;
}

.sidebar-categories a:hover {
    color: var(--gold);
}

.cat-count {
    font-size: 0.72rem;
    color: var(--white-20);
    background: var(--white-05);
    padding: 2px 8px;
    border-radius: 10px;
}

/* Sidebar — Popular Posts */
.sidebar-popular-item {
    display: flex;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--white-05);
    transition: opacity 0.3s ease;
}

.sidebar-popular-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar-popular-item:first-child {
    padding-top: 0;
}

.sidebar-popular-item:hover {
    opacity: 0.8;
}

.sidebar-popular-item img {
    width: 72px;
    height: 52px;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid var(--white-05);
}

.sidebar-popular-item h5 {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 400;
    color: var(--white);
    line-height: 1.4;
    margin-bottom: 4px;
}

.sidebar-popular-item span {
    font-size: 0.7rem;
    color: var(--cream-muted);
}

/* Sidebar — CTA */
.sidebar-cta {
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.1), var(--black-card));
    border-color: var(--gold);
}

.sidebar-cta-inner {
    text-align: center;
}

.sidebar-cta-inner h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 8px;
}

.sidebar-cta-inner p {
    font-family: var(--font-accent);
    font-size: 0.95rem;
    color: var(--cream-muted);
    margin-bottom: 20px;
}

.sidebar-cta-inner .btn-primary {
    width: 100%;
    justify-content: center;
}

/* ═══════════════════════════════════════════
   BLOG SINGLE — ARTICLE HERO
═══════════════════════════════════════════ */
.article-hero {
    position: relative;
    padding: 200px 0 80px;
    overflow: hidden;
}

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

.article-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.4) 0%,
        rgba(10, 10, 10, 0.85) 100%
    );
}

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

.article-hero-content {
    max-width: 780px;
}

.article-hero-cat {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 6px 16px;
    margin-bottom: 20px;
}

.article-hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 500;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 20px;
}

.article-hero-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--cream-muted);
}

.meta-dot {
    color: var(--white-20);
}

/* ═══════════════════════════════════════════
   BLOG SINGLE — ARTICLE LAYOUT
═══════════════════════════════════════════ */
.article-section {
    background: var(--black);
    overflow-x: hidden;
}

.article-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 48px;
    align-items: start;
    max-width: 100%;
    overflow: hidden;
}

/* ─── ARTICLE CONTENT ─── */
.article-content {
    max-width: 100%;
    overflow-x: hidden;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

/* Prevent images and embeds from breaking layout */
.article-content img,
.article-content iframe,
.article-content video,
.article-content embed,
.article-content object {
    max-width: 100% !important;
    height: auto !important;
}

/* Elementor widgets — force fit */
.article-content .elementor-widget-wrap,
.article-content .elementor-element,
.article-content .elementor-section,
.article-content .elementor-container,
.article-content .elementor-row,
.article-content .elementor-column,
.article-content .elementor-column-wrap,
.article-content .elementor-widget {
    max-width: 100% !important;
    width: 100% !important;
    overflow-x: hidden !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Elementor text colors — force readable on dark background */
.article-content .elementor-widget-text-editor,
.article-content .elementor-widget-text-editor p,
.article-content .elementor-widget-text-editor li,
.article-content .elementor-widget-text-editor span,
.article-content .elementor-widget-text-editor td,
.article-content .elementor-text-editor,
.article-content .elementor-text-editor p,
.article-content .elementor-heading-title {
    color: var(--cream-muted) !important;
    font-family: var(--font-body) !important;
    font-weight: 300 !important;
}

.article-content .elementor-heading-title {
    color: var(--white) !important;
    font-family: var(--font-display) !important;
    font-weight: 500 !important;
}

/* Elementor tables */
.article-content .elementor table td,
.article-content .elementor table th,
.article-content table td,
.article-content table th {
    color: var(--cream-muted) !important;
}

.article-content table th {
    color: var(--gold) !important;
}

.article-content h2 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--white);
    margin-top: 48px;
    margin-bottom: 20px;
    padding-top: 32px;
    border-top: 1px solid var(--white-05);
}

.article-content h2:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.article-content h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--white);
    margin-top: 32px;
    margin-bottom: 12px;
}

.article-content p {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--cream-muted);
    line-height: 1.85;
    margin-bottom: 20px;
    font-weight: 300;
}

.article-content ul,
.article-content ol {
    margin-bottom: 20px;
    padding-left: 24px;
}

.article-content ul {
    list-style: disc;
}

.article-content ol {
    list-style: decimal;
}

.article-content li {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--cream-muted);
    line-height: 1.7;
    margin-bottom: 8px;
    font-weight: 300;
}

.article-content li strong {
    color: var(--white);
    font-weight: 500;
}

.article-content a:not(.btn-primary):not(.btn-secondary) {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.article-content a:not(.btn-primary):not(.btn-secondary):hover {
    color: var(--gold-light);
}

/* Buttons inside article — reset article link styles */
.article-content .btn-primary,
.article-content .btn-secondary {
    text-decoration: none !important;
}

.article-content .btn-primary {
    color: var(--black) !important;
}

.article-content .btn-primary:hover {
    color: var(--gold) !important;
}

/* Article summary box */
.article-summary {
    background: var(--black-card);
    border-left: 3px solid var(--gold);
    padding: 24px 28px;
    margin-bottom: 40px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--cream-muted);
    line-height: 1.7;
    font-weight: 300;
}

.article-summary strong {
    color: var(--gold);
    font-weight: 500;
}

/* Article images */
.article-figure {
    margin: 32px 0;
}

.article-figure img {
    width: 100%;
    border: 1px solid var(--white-05);
}

.article-figure figcaption {
    font-size: 0.8rem;
    color: var(--white-50);
    margin-top: 8px;
    text-align: center;
    font-style: italic;
}

/* Article tables — includes WordPress Gutenberg blocks */
.article-table-wrap,
.article-content figure.wp-block-table,
.article-content .wp-block-table {
    overflow-x: auto;
    margin: 24px 0 32px;
    max-width: 100%;
}

.article-content figure.wp-block-table {
    padding: 0 !important;
}

.article-content table,
.article-content .wp-block-table table,
.article-content figure.wp-block-table table,
.article-content table.has-fixed-layout {
    width: 100% !important;
    border-collapse: collapse !important;
    font-size: 0.9rem !important;
    max-width: 100% !important;
    background: transparent !important;
    border: none !important;
}

.article-content thead,
.article-content .wp-block-table thead,
.article-content table.has-fixed-layout thead {
    background: var(--black-card) !important;
}

.article-content th,
.article-content .wp-block-table th,
.article-content table.has-fixed-layout th {
    font-family: var(--font-body) !important;
    font-weight: 500 !important;
    color: var(--gold) !important;
    background: var(--black-card) !important;
    text-align: left !important;
    padding: 12px 16px !important;
    border: none !important;
    border-bottom: 2px solid var(--white-10) !important;
    white-space: nowrap;
}

.article-content td,
.article-content .wp-block-table td,
.article-content table.has-fixed-layout td {
    font-family: var(--font-body) !important;
    color: var(--cream-muted) !important;
    background: transparent !important;
    padding: 12px 16px !important;
    border: none !important;
    border-bottom: 1px solid var(--white-05) !important;
    font-weight: 300 !important;
}

.article-content tr,
.article-content tbody tr,
.article-content .wp-block-table tr {
    background: transparent !important;
    border: none !important;
}

.article-content tbody tr:hover {
    background: var(--white-05) !important;
}

/* Figcaption under tables */
.article-content figure.wp-block-table figcaption {
    font-size: 0.8rem;
    color: var(--cream-muted);
    text-align: center;
    margin-top: 8px;
}

/* Article FAQ */
.article-faq {
    margin-top: 16px;
}

.faq-item {
    padding: 20px 0;
    border-bottom: 1px solid var(--white-05);
}

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

.faq-item h3 {
    margin-top: 0;
    margin-bottom: 8px;
    color: var(--white);
}

.faq-item p {
    margin-bottom: 0;
}

/* Article CTA box */
.article-cta-box {
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.08), var(--black-card));
    border: 1px solid var(--gold);
    padding: 40px;
    margin-top: 48px;
    text-align: center;
}

.article-cta-box h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--white);
    margin-top: 0;
    margin-bottom: 12px;
}

.article-cta-box p {
    font-family: var(--font-accent);
    font-size: 1rem;
    color: var(--cream-muted);
    margin-bottom: 24px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.article-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ─── TABLE OF CONTENTS ─── */
.sidebar-toc {
    background: var(--black-card);
}

.toc-list li {
    margin-bottom: 0;
}

.toc-list a {
    display: block;
    padding: 8px 0 8px 16px;
    font-size: 0.85rem;
    color: var(--cream-muted);
    border-left: 2px solid var(--white-10);
    transition: all 0.3s ease;
}

.toc-list a:hover,
.toc-list a.active {
    color: var(--gold);
    border-left-color: var(--gold);
    padding-left: 20px;
}

/* ═══════════════════════════════════════════
   RELATED POSTS
═══════════════════════════════════════════ */
.related-posts {
    background: var(--black-light);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* ═══════════════════════════════════════════
   LOAD MORE BUTTON
═══════════════════════════════════════════ */
.load-more-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 48px 0 0;
}

.load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: transparent;
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid var(--gold);
    cursor: pointer;
    transition: all 0.4s var(--ease-out);
}

.load-more-btn:hover {
    background: var(--gold);
    color: var(--black);
}

.load-more-btn svg {
    transition: transform 0.3s ease;
}

.load-more-btn:hover svg {
    transform: translateY(3px);
}

.load-more-spinner {
    display: flex;
    justify-content: center;
    padding: 16px 0;
}

.spinner {
    width: 32px;
    height: 32px;
    border: 2px solid var(--white-10);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

.load-more-end {
    font-family: var(--font-accent);
    font-size: 0.95rem;
    color: var(--cream-muted);
    text-align: center;
    padding: 16px 0;
}

/* ═══════════════════════════════════════════
   READING PROGRESS BAR
═══════════════════════════════════════════ */
.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    z-index: 999998;
    transition: width 0.1s linear;
}

body.admin-bar .reading-progress {
    top: 32px;
}

/* ═══════════════════════════════════════════
   MOBILE TOC
═══════════════════════════════════════════ */
.mobile-toc {
    display: none;
    background: var(--black-card);
    border-bottom: 1px solid var(--white-05);
}

.mobile-toc-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: none;
    border: none;
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
}

.mobile-toc-arrow {
    margin-left: auto;
    transition: transform 0.3s ease;
}

.mobile-toc-toggle.open .mobile-toc-arrow {
    transform: rotate(180deg);
}

.mobile-toc-list {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out);
    padding: 0 24px;
}

.mobile-toc-list.open {
    max-height: 500px;
    padding: 0 24px 16px;
}

.mobile-toc-list li {
    margin-bottom: 0;
}

.mobile-toc-list a {
    display: block;
    padding: 8px 0;
    font-size: 0.85rem;
    color: var(--cream-muted);
    border-bottom: 1px solid var(--white-05);
}

.mobile-toc-list a:hover {
    color: var(--gold);
}

@media (max-width: 1024px) {
    .mobile-toc { display: block; }
}

/* ═══════════════════════════════════════════
   SOCIAL SHARE
═══════════════════════════════════════════ */
.social-share {
    position: fixed;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 100;
}

.share-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--white-10);
    border-radius: 50%;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    color: var(--cream-muted);
    cursor: pointer;
    transition: all 0.3s ease;
}

.share-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.share-whatsapp:hover { color: #25d366; border-color: #25d366; }
.share-facebook:hover { color: #1877f2; border-color: #1877f2; }
.share-twitter:hover { color: var(--white); border-color: var(--white); }

@media (max-width: 1200px) {
    .social-share {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        top: auto;
        transform: none;
        flex-direction: row;
        justify-content: center;
        gap: 0;
        background: var(--black-card);
        border-top: 1px solid var(--white-05);
        padding: 8px 0;
        z-index: 99990;
    }
    .share-btn {
        border-radius: 0;
        border: none;
        background: transparent;
        width: 52px;
        height: 44px;
    }
}

/* ═══════════════════════════════════════════
   MID-CONTENT CTA
═══════════════════════════════════════════ */
.article-mid-cta {
    margin: 40px 0;
    padding: 32px;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.06), rgba(10, 10, 10, 0.8));
    border: 1px solid var(--gold);
    border-left: 4px solid var(--gold);
    position: relative;
}

.mid-cta-eyebrow {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
    display: block;
}

.article-mid-cta h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 8px;
    margin-top: 0;
}

.article-mid-cta p {
    font-family: var(--font-body) !important;
    font-size: 0.9rem !important;
    color: var(--cream-muted) !important;
    margin-bottom: 16px !important;
}

.article-mid-cta .btn-primary {
    padding: 12px 28px;
    font-size: 0.78rem;
}

/* ═══════════════════════════════════════════
   AUTHOR BOX
═══════════════════════════════════════════ */
.author-box {
    display: flex;
    gap: 24px;
    padding: 32px;
    margin-top: 48px;
    background: var(--black-card);
    border: 1px solid var(--white-10);
}

.author-box-avatar {
    width: 72px;
    height: 72px;
    object-fit: contain;
    flex-shrink: 0;
    background: var(--black-light);
    border-radius: 50%;
    padding: 12px;
}

.author-box-info h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 8px;
    margin-top: 0;
}

.author-box-info p {
    font-family: var(--font-body) !important;
    font-size: 0.85rem !important;
    color: var(--cream-muted) !important;
    line-height: 1.6 !important;
    margin-bottom: 12px !important;
}

.author-box-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.author-box-links a {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--gold) !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
}

.author-box-links a:hover {
    color: var(--gold-light) !important;
}

@media (max-width: 600px) {
    .author-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .author-box-links {
        justify-content: center;
    }
}

/* ═══════════════════════════════════════════
   BLOG FILTER BAR
═══════════════════════════════════════════ */
.blog-filters-bar {
    background: var(--black-card);
    border-bottom: 1px solid var(--white-05);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

body.admin-bar .blog-filters-bar {
    top: 32px;
}

.blog-filters {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.blog-search {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 200px;
    background: var(--black);
    border: 1px solid var(--white-10);
    padding: 10px 16px;
    transition: border-color 0.3s ease;
}

.blog-search:focus-within {
    border-color: var(--gold);
}

.blog-search svg {
    color: var(--cream-muted);
    flex-shrink: 0;
}

.blog-search input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 300;
}

.blog-search input::placeholder {
    color: var(--cream-muted);
    opacity: 0.6;
}

.blog-filter-select select {
    appearance: none;
    background: var(--black);
    border: 1px solid var(--white-10);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 400;
    padding: 10px 36px 10px 16px;
    cursor: pointer;
    transition: border-color 0.3s ease;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23c4b99a' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.blog-filter-select select:focus {
    outline: none;
    border-color: var(--gold);
}

.blog-filter-btn {
    background: var(--gold);
    color: var(--black);
    border: none;
    padding: 10px 24px;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease;
}

.blog-filter-btn:hover {
    background: var(--gold-light);
}

.blog-filter-clear {
    font-size: 0.78rem;
    color: var(--cream-muted);
    text-decoration: none;
    padding: 10px 16px;
    border: 1px solid var(--white-10);
    transition: all 0.3s ease;
}

.blog-filter-clear:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Active Filters */
.blog-active-filters {
    background: var(--black);
    padding: 12px 0;
    border-bottom: 1px solid var(--white-05);
}

.blog-active-filters .container {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.active-filter-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--cream-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.active-filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: rgba(201, 169, 110, 0.1);
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--gold);
}

.active-filter-tag a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    line-height: 1;
}

.active-filter-tag a:hover {
    color: var(--white);
}

.active-filter-count {
    font-size: 0.75rem;
    color: var(--cream-muted);
    margin-left: auto;
}

/* Blog Empty State */
.blog-empty {
    text-align: center;
    padding: 80px 24px;
    grid-column: 1 / -1;
}

.blog-empty h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--white);
    margin: 16px 0 8px;
}

.blog-empty p {
    font-size: 0.9rem;
    color: var(--cream-muted);
}

/* ═══════════════════════════════════════════
   BLOG PAGINATION
═══════════════════════════════════════════ */
.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--white-05);
}

.blog-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 12px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--cream-muted);
    text-decoration: none;
    border: 1px solid var(--white-10);
    transition: all 0.3s ease;
}

.blog-pagination .page-numbers:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.blog-pagination .page-numbers.current {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
    font-weight: 600;
}

.blog-pagination .page-numbers.dots {
    border: none;
    color: var(--cream-muted);
    pointer-events: none;
}

.blog-pagination .page-numbers.prev,
.blog-pagination .page-numbers.next {
    border-color: var(--white-10);
}

.blog-pagination .page-numbers.prev:hover,
.blog-pagination .page-numbers.next:hover {
    border-color: var(--gold);
    color: var(--gold);
}

@media (max-width: 768px) {
    .blog-filters {
        flex-direction: column;
    }
    .blog-search {
        width: 100%;
    }
    .blog-filter-select {
        width: 100%;
    }
    .blog-filter-select select {
        width: 100%;
    }
    .blog-filter-btn,
    .blog-filter-clear {
        width: 100%;
        text-align: center;
    }
    .blog-pagination .page-numbers {
        min-width: 36px;
        height: 36px;
        font-size: 0.78rem;
    }
}

/* ═══════════════════════════════════════════
   BLOG RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
    .blog-layout,
    .article-layout {
        grid-template-columns: 1fr;
    }

    .blog-sidebar,
    .article-sidebar {
        position: static;
    }

    .article-sidebar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .article-sidebar .sidebar-widget {
        margin-bottom: 0;
    }

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

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

    .article-sidebar {
        grid-template-columns: 1fr;
    }

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

    .article-hero {
        padding: 140px 0 60px;
    }

    .article-hero-content h1 {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .article-content h2 {
        font-size: 1.3rem;
    }

    .article-cta-box {
        padding: 28px 20px;
    }

    .article-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    /* Space for fixed bottom social share bar */
    .footer {
        padding-bottom: 60px;
    }

    .article-mid-cta {
        padding: 24px 20px;
        margin: 32px -16px;
        border-left-width: 3px;
    }
}

/* ═══════════════════════════════════════════
   REVIEWS SECTION (Google + GetYourGuide)
═══════════════════════════════════════════ */
.reviews-section {
    background: var(--black-light);
}

.review-trust {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    padding: 16px 24px;
    background: var(--black-card);
    border: 1px solid var(--white-10);
    transition: border-color 0.3s ease;
}

.trust-item:hover { border-color: var(--gold); }

.trust-logo {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.trust-logo.google { background: #fff; }
.trust-logo.gyg {
    background: #FF5533;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.trust-info { display: flex; flex-direction: column; gap: 2px; }
.trust-name { font-size: 0.85rem; font-weight: 500; color: var(--white); }
.trust-rating { display: flex; align-items: center; gap: 8px; }
.trust-score { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: var(--gold); }
.trust-stars { color: var(--gold); font-size: 0.8rem; letter-spacing: 1px; }
.trust-count { font-size: 0.7rem; color: var(--cream-muted); }

.reviews-swiper { padding: 0 0 16px; }
.reviews-swiper .swiper-slide { height: auto; }

.review-card {
    background: var(--black-card);
    border: 1px solid var(--white-10);
    padding: 32px 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s ease;
}

.review-card:hover { border-color: var(--gold); }

.review-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 8px;
}

.review-card-stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; }

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
}

.verified-badge svg { width: 10px; height: 10px; flex-shrink: 0; }
.verified-badge.google { background: rgba(66,133,244,0.1); color: #4285F4; border: 1px solid rgba(66,133,244,0.2); }
.verified-badge.gyg { background: rgba(255,85,51,0.1); color: #FF5533; border: 1px solid rgba(255,85,51,0.2); }

.review-card-text {
    font-size: 0.92rem;
    color: var(--cream-muted);
    line-height: 1.75;
    flex-grow: 1;
    margin-bottom: 24px;
    font-weight: 300;
}

.review-card-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--white-05);
}

.review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    flex-shrink: 0;
}

.review-avatar.google { background: #4285F4; color: #fff; }
.review-avatar.gyg { background: #FF5533; color: #fff; }
.review-name { font-size: 0.85rem; font-weight: 500; color: var(--white); }
.review-origin { font-size: 0.73rem; color: var(--cream-muted); }

.reviews-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.reviews-nav button {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--white-20);
    background: transparent;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.reviews-nav button:hover { border-color: var(--gold); color: var(--gold); }
.reviews-nav button svg { width: 20px; height: 20px; }

.review-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.review-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--white-10);
    color: var(--cream-muted);
    transition: all 0.3s ease;
}

.review-link:hover { border-color: var(--gold); color: var(--gold); }

@media (max-width: 600px) {
    .review-trust { gap: 12px; }
    .trust-item { flex: 1; min-width: 160px; padding: 12px 16px; }
    .review-links { flex-direction: column; align-items: center; }
}

/* ═══════════════════════════════════════════
   FAQ SECTION (Homepage)
═══════════════════════════════════════════ */
.faq-section {
    background: var(--black);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 48px;
}

.faq-item-hp {
    padding: 20px 0;
    border-bottom: 1px solid var(--white-05);
}

.faq-item-hp h3 {
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.4;
}

.faq-item-hp p {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--cream-muted);
    line-height: 1.7;
}

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

/* ═══════════════════════════════════════════
   BOOKING FORM SECTION
═══════════════════════════════════════════ */
.booking-form-section {
    background: var(--black-light);
}

.booking-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.booking-form-info p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--cream-muted);
    line-height: 1.8;
    margin-bottom: 28px;
}

.booking-form-contacts {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.booking-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--cream-muted);
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.booking-contact-item:hover {
    color: var(--gold);
}

/* CF7 Form Styling */
.booking-form-wrap .wpcf7 {
    width: 100%;
}

.booking-form-wrap .wpcf7-form label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--cream-muted);
    margin-bottom: 16px;
}

.booking-form-wrap .wpcf7-form input[type="text"],
.booking-form-wrap .wpcf7-form input[type="email"],
.booking-form-wrap .wpcf7-form input[type="tel"],
.booking-form-wrap .wpcf7-form select,
.booking-form-wrap .wpcf7-form textarea {
    width: 100%;
    background: var(--black);
    border: 1px solid var(--white-10);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 300;
    padding: 12px 16px;
    margin-top: 6px;
    transition: border-color 0.3s ease;
    outline: none;
    appearance: none;
}

.booking-form-wrap .wpcf7-form input:focus,
.booking-form-wrap .wpcf7-form select:focus,
.booking-form-wrap .wpcf7-form textarea:focus {
    border-color: var(--gold);
}

.booking-form-wrap .wpcf7-form input::placeholder,
.booking-form-wrap .wpcf7-form textarea::placeholder {
    color: var(--cream-muted);
    opacity: 0.5;
}

.booking-form-wrap .wpcf7-form select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23c4b99a' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.booking-form-wrap .wpcf7-form select option {
    background: var(--black);
    color: var(--white);
}

.booking-form-wrap .wpcf7-form textarea {
    min-height: 120px;
    resize: vertical;
}

.booking-form-wrap .wpcf7-form .cf7-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.booking-form-wrap .wpcf7-form input[type="submit"] {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--gold);
    color: var(--black);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 8px;
    width: 100%;
    justify-content: center;
}

.booking-form-wrap .wpcf7-form input[type="submit"]:hover {
    background: var(--gold-light);
}

/* CF7 response messages */
.booking-form-wrap .wpcf7-response-output {
    border: 1px solid var(--gold) !important;
    background: rgba(201, 169, 110, 0.1) !important;
    color: var(--cream-muted) !important;
    font-family: var(--font-body) !important;
    font-size: 0.85rem !important;
    padding: 12px 16px !important;
    margin: 16px 0 0 !important;
}

.booking-form-wrap .wpcf7-not-valid-tip {
    color: #e74c3c !important;
    font-size: 0.75rem !important;
    font-family: var(--font-body) !important;
}

.booking-form-wrap .wpcf7 .wpcf7-spinner {
    display: none;
}

@media (max-width: 768px) {
    .booking-form-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .booking-form-wrap .wpcf7-form .cf7-row {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════
   SEO ABOUT PARAGRAPH
═══════════════════════════════════════════ */
.seo-about {
    background: var(--black-light);
    padding: 80px 0;
}

.seo-about-inner {
    max-width: 900px;
}

.seo-about-inner p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--cream-muted);
    line-height: 1.85;
    margin-bottom: 20px;
}

.seo-about-inner p:last-child {
    margin-bottom: 0;
}

/* ═══════════════════════════════════════════
   TREATMENTS PAGE — DETAILED LIST
═══════════════════════════════════════════ */
.treatment-list {
    max-width: 800px;
    margin: 0 auto;
}

.treatment-item {
    padding: 32px 0;
    border-bottom: 1px solid var(--white-05);
}

.treatment-item:first-child {
    padding-top: 0;
}

.treatment-featured {
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.06), transparent);
    border: 1px solid var(--gold);
    border-bottom: 1px solid var(--gold);
    padding: 32px;
    margin: 8px -32px;
}

.treatment-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 6px;
    gap: 16px;
}

.treatment-name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--white);
    margin: 0;
}

.treatment-badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 3px 10px;
    background: var(--gold);
    color: var(--black);
    border-radius: 3px;
    vertical-align: middle;
    margin-left: 8px;
}

.treatment-price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold);
    white-space: nowrap;
    flex-shrink: 0;
}

.treatment-price span {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--cream-muted);
}

.treatment-meta {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 400;
    color: var(--cream-muted);
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

.treatment-desc {
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--cream-muted);
    line-height: 1.7;
    opacity: 0.85;
}

.treatment-list-compact .treatment-item {
    padding: 24px 0;
}

.treatment-book {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 12px;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.treatment-book:hover {
    color: var(--gold-light);
}

@media (max-width: 600px) {
    .treatment-header {
        flex-direction: column;
        gap: 4px;
    }
    .treatment-featured {
        margin: 8px -16px;
        padding: 24px 16px;
    }
}

/* ═══════════════════════════════════════════
   SERVICES PAGE — HERO VARIANT
═══════════════════════════════════════════ */
.services-hero {
    padding: 200px 0 80px;
    overflow: hidden;
}

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

.services-hero .page-hero-overlay {
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.5) 0%,
        rgba(10, 10, 10, 0.9) 100%
    );
}

/* ─── SERVICE TABS ─── */
.service-tabs-strip {
    position: sticky;
    top: 64px;
    z-index: 100;
    background: var(--black-light);
    border-bottom: 1px solid var(--white-05);
    padding: 0;
}

.service-tabs {
    display: flex;
    gap: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.service-tabs::-webkit-scrollbar {
    display: none;
}

.service-tab {
    flex-shrink: 0;
    padding: 16px 28px;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--cream-muted);
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.service-tab:hover {
    color: var(--white);
}

.service-tab.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

/* ─── SERVICES SECTION ALT BG ─── */
.srv-alt-bg {
    background: var(--black-light);
}

.services-section {
    background: var(--black);
}

/* ═══════════════════════════════════════════
   SRV-CARD (massage treatment cards)
═══════════════════════════════════════════ */
.srv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.srv-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--black-card);
    border: 1px solid var(--white-05);
    overflow: hidden;
    transition: all 0.4s var(--ease-out);
}

.srv-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

.srv-card-img {
    position: relative;
    aspect-ratio: 16/7;
    overflow: hidden;
}

.srv-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.srv-card:hover .srv-card-img img {
    transform: scale(1.06);
}

.srv-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.4) 0%, transparent 60%);
}

.srv-card-body {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.srv-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.srv-card:hover .srv-card-body h3 {
    color: var(--gold);
}

.srv-card-body p {
    font-family: var(--font-accent);
    font-size: 0.92rem;
    color: var(--cream-muted);
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 16px;
}

.srv-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid var(--white-05);
}

.srv-price {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold);
}

.srv-duration {
    font-size: 0.78rem;
    color: var(--cream-muted);
    letter-spacing: 0.04em;
}

.srv-card-arrow {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 3;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 10, 0.5);
    backdrop-filter: blur(8px);
    border: 1px solid var(--white-20);
    border-radius: 50%;
    color: var(--white);
    opacity: 0;
    transform: translate(-8px, 8px);
    transition: all 0.4s var(--ease-out);
}

.srv-card:hover .srv-card-arrow {
    opacity: 1;
    transform: translate(0, 0);
}

/* ═══════════════════════════════════════════
   HAMMAM CARD (side-by-side layout)
═══════════════════════════════════════════ */
.hammam-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.hammam-card {
    display: flex;
    flex-direction: column;
    background: var(--black-card);
    border: 1px solid var(--white-10);
    overflow: hidden;
    transition: all 0.4s var(--ease-out);
}

.hammam-card:hover {
    border-color: var(--gold);
    box-shadow: 0 12px 40px rgba(201, 169, 110, 0.06);
}

.hammam-card-img {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.hammam-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

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

.hammam-card-body {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.hammam-card-label {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.hammam-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 12px;
}

.hammam-card-body p {
    font-family: var(--font-accent);
    font-size: 1rem;
    color: var(--cream-muted);
    line-height: 1.7;
    flex-grow: 1;
    margin-bottom: 20px;
}

.hammam-card-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-top: 1px solid var(--white-05);
    border-bottom: 1px solid var(--white-05);
    margin-bottom: 24px;
    font-size: 0.85rem;
    color: var(--cream-muted);
}

/* ═══════════════════════════════════════════
   FACILITY CARDS
═══════════════════════════════════════════ */
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.facility-card {
    background: var(--black-card);
    border: 1px solid var(--white-05);
    overflow: hidden;
    text-align: center;
    transition: all 0.4s var(--ease-out);
}

.facility-card:hover {
    border-color: var(--white-20);
    transform: translateY(-4px);
}

.facility-card-img {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.facility-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.facility-card:hover .facility-card-img img {
    transform: scale(1.05);
}

.facility-card-body {
    padding: 24px 20px;
}

.facility-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 8px;
}

.facility-card-body p {
    font-family: var(--font-accent);
    font-size: 0.9rem;
    color: var(--cream-muted);
    line-height: 1.5;
}

/* ═══════════════════════════════════════════
   SERVICES PAGE RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
    .srv-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .services-hero {
        padding: 160px 0 60px;
    }
}

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

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

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

    .service-tab {
        padding: 14px 20px;
        font-size: 0.72rem;
    }

    .services-hero {
        padding: 140px 0 48px;
    }
}

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

/* ═══════════════════════════════════════════
   SVAIC CHAT WIDGET Z-INDEX FIX
   Chat penceresi navbar (99999) ve WhatsApp (99990) üstünde olmalı
═══════════════════════════════════════════ */

/* Ana wrapper - her zaman en üstte */
.svaic-root {
    z-index: 100001 !important;
    position: fixed !important;
}

/* Açık panel durumunda */
.svaic-root.is-floating-is-open {
    z-index: 100001 !important;
}

/* Launcher butonu */
.svaic-launcher {
    z-index: 100001 !important;
    position: relative !important;
}

/* Chat panel (açık pencere) */
.svaic-panel {
    z-index: 100001 !important;
    position: absolute !important;
}

/* Chat açıkken WhatsApp ikonunu gizle */
.svaic-root.is-floating-is-open ~ .whatsapp-float,
.svaic-root[data-svaic-widget].is-floating-is-open ~ .whatsapp-float {
    opacity: 0 !important;
    pointer-events: none !important;
    transition: opacity 0.3s ease !important;
}

/* ═══════════════════════════════════════════
   SINGLE SERVICE (ova_sev) — ELEMENTOR PAGES
   Premium dark-luxury spa styling for Victory Spa
═══════════════════════════════════════════ */

/* Shorthand: S = body.single-ova_sev, body.single-service */

/* ─── BASE ─── */
body.single-ova_sev,
body.single-service {
    background: var(--black) !important;
    color: var(--cream-muted);
}

body.single-ova_sev .elementor,
body.single-service .elementor {
    max-width: 100%;
    overflow-x: hidden;
}

/* Container width */
body.single-ova_sev .e-con,
body.single-service .e-con,
body.single-ova_sev .elementor-section-boxed > .elementor-container,
body.single-service .elementor-section-boxed > .elementor-container {
    max-width: 860px !important;
    margin-left: auto;
    margin-right: auto;
}

/* Service page wrapper — navbar clearance */
.service-page-wrapper {
    background: var(--black);
    min-height: 100vh;
}

/* ─── H1 — PAGE TITLE ─── */
body.single-ova_sev .elementor-widget-heading .elementor-heading-title.elementor-size-default,
body.single-service .elementor-widget-heading .elementor-heading-title.elementor-size-default,
body.single-ova_sev .elementor h1,
body.single-service .elementor h1 {
    font-family: var(--font-display) !important;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem) !important;
    font-weight: 500 !important;
    color: var(--white) !important;
    line-height: 1.2 !important;
    text-transform: none !important;
    letter-spacing: -0.01em;
    text-align: center;
}

/* ─── H2 — SECTION TITLES ─── */
body.single-ova_sev .elementor h2,
body.single-service .elementor h2 {
    font-family: var(--font-display) !important;
    font-size: clamp(1.4rem, 2.5vw, 1.85rem) !important;
    font-weight: 500 !important;
    color: var(--white) !important;
    line-height: 1.3 !important;
    text-transform: none !important;
    margin-bottom: 16px !important;
    padding-bottom: 14px;
    position: relative;
}

/* Altın underline */
body.single-ova_sev .elementor .elementor-widget-heading h2::after,
body.single-service .elementor .elementor-widget-heading h2::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--gold);
    margin-top: 12px;
    transition: width 0.4s var(--ease-out);
}

body.single-ova_sev .elementor .elementor-widget-heading:hover h2::after,
body.single-service .elementor .elementor-widget-heading:hover h2::after {
    width: 70px;
}

/* ─── H3 — SUBSECTION TITLES ─── */
body.single-ova_sev .elementor h3,
body.single-service .elementor h3 {
    font-family: var(--font-display) !important;
    font-size: clamp(1.1rem, 2vw, 1.4rem) !important;
    font-weight: 500 !important;
    color: var(--gold-light) !important;
    line-height: 1.4 !important;
    text-transform: none !important;
    margin-top: 32px !important;
    margin-bottom: 12px !important;
}

/* ─── PARAGRAPH TEXT ─── */
body.single-ova_sev .elementor-widget-text-editor,
body.single-ova_sev .elementor-widget-text-editor p,
body.single-service .elementor-widget-text-editor,
body.single-service .elementor-widget-text-editor p {
    font-family: var(--font-accent) !important;
    font-size: clamp(0.98rem, 1.4vw, 1.1rem) !important;
    color: var(--cream-muted) !important;
    line-height: 1.85 !important;
}

body.single-ova_sev .elementor-widget-text-editor strong,
body.single-service .elementor-widget-text-editor strong {
    color: var(--cream) !important;
    font-weight: 600;
}

/* ─── LISTS ─── */
body.single-ova_sev .elementor-widget-text-editor ul,
body.single-service .elementor-widget-text-editor ul {
    list-style: none !important;
    padding-left: 0 !important;
    margin: 16px 0 24px !important;
}

body.single-ova_sev .elementor-widget-text-editor ul li,
body.single-service .elementor-widget-text-editor ul li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 12px;
    font-family: var(--font-accent) !important;
    font-size: 1.02rem;
    color: var(--cream-muted) !important;
    line-height: 1.7;
}

body.single-ova_sev .elementor-widget-text-editor ul li::before,
body.single-service .elementor-widget-text-editor ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 7px;
    height: 7px;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    background: transparent;
    transition: background 0.3s ease;
}

body.single-ova_sev .elementor-widget-text-editor ul li:hover::before,
body.single-service .elementor-widget-text-editor ul li:hover::before {
    background: var(--gold);
}

/* ─── IMAGES ─── */
body.single-ova_sev .elementor-widget-image,
body.single-service .elementor-widget-image {
    margin: 32px 0;
}

body.single-ova_sev .elementor-widget-image img,
body.single-service .elementor-widget-image img {
    width: 100% !important;
    height: auto;
    border-radius: 2px;
    filter: brightness(0.93) contrast(1.03);
    transition: filter 0.5s ease;
}

body.single-ova_sev .elementor-widget-image:hover img,
body.single-service .elementor-widget-image:hover img {
    filter: brightness(1) contrast(1);
}

/* ─── SECTIONS — SPACING ─── */
body.single-ova_sev .elementor-section,
body.single-service .elementor-section {
    padding: 40px 0 !important;
    background: transparent !important;
}

body.single-ova_sev .e-con.e-parent,
body.single-service .e-con.e-parent {
    padding: 40px 20px !important;
    background: transparent !important;
}

/* First container — hero area — more top padding handled by wrapper */
body.single-ova_sev .elementor > .e-con:first-child,
body.single-service .elementor > .e-con:first-child {
    padding-top: 20px !important;
    padding-bottom: 40px !important;
    border-bottom: 1px solid var(--white-05);
}

/* Section dividers */
body.single-ova_sev .elementor-section + .elementor-section,
body.single-service .elementor-section + .elementor-section,
body.single-ova_sev .e-con.e-parent + .e-con.e-parent,
body.single-service .e-con.e-parent + .e-con.e-parent {
    border-top: 1px solid var(--white-05);
}

/* ─── LINKS ─── */
body.single-ova_sev .elementor-widget-text-editor a,
body.single-service .elementor-widget-text-editor a {
    color: var(--gold) !important;
    text-decoration: none !important;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

body.single-ova_sev .elementor-widget-text-editor a:hover,
body.single-service .elementor-widget-text-editor a:hover {
    border-bottom-color: var(--gold);
}

/* ─── FAQ ACCORDION (Qi Addons) ─── */
body.single-ova_sev .qodef-qi-faq,
body.single-service .qodef-qi-faq {
    margin-top: 0;
}

body.single-ova_sev .qodef-qi-faq .qodef-e-title-holder,
body.single-service .qodef-qi-faq .qodef-e-title-holder {
    background: var(--black-card) !important;
    border: 1px solid var(--white-10) !important;
    padding: 20px 24px !important;
    margin-bottom: 8px !important;
    cursor: pointer;
    transition: all 0.3s ease;
}

body.single-ova_sev .qodef-qi-faq .qodef-e-title-holder:hover,
body.single-service .qodef-qi-faq .qodef-e-title-holder:hover {
    border-color: var(--gold) !important;
    background: var(--black-light) !important;
}

body.single-ova_sev .qodef-qi-faq .qodef-e-title,
body.single-service .qodef-qi-faq .qodef-e-title {
    font-family: var(--font-display) !important;
    font-size: 1.05rem !important;
    font-weight: 400 !important;
    color: var(--gold-light) !important;
    text-transform: none !important;
}

body.single-ova_sev .qodef-qi-faq .qodef-e-mark,
body.single-service .qodef-qi-faq .qodef-e-mark {
    color: var(--gold) !important;
}

body.single-ova_sev .qodef-qi-faq .qodef-e-mark svg,
body.single-service .qodef-qi-faq .qodef-e-mark svg {
    fill: var(--gold) !important;
}

body.single-ova_sev .qodef-qi-faq .qodef-e-content,
body.single-service .qodef-qi-faq .qodef-e-content {
    background: transparent !important;
    padding: 16px 24px 24px !important;
    border-left: 2px solid var(--gold);
    margin-left: 12px;
    margin-bottom: 8px;
}

body.single-ova_sev .qodef-qi-faq .qodef-e-content p,
body.single-service .qodef-qi-faq .qodef-e-content p {
    font-family: var(--font-accent) !important;
    color: var(--cream-muted) !important;
    font-size: 1rem !important;
    line-height: 1.8 !important;
}

/* ─── BOTTOM INFO (Location / Hours) ─── */
body.single-ova_sev .e-grid,
body.single-service .e-grid {
    gap: 24px;
}

/* ─── ELEMENTOR SPACER — reduce excessive empty space ─── */
body.single-ova_sev .elementor-widget-spacer .elementor-spacer,
body.single-service .elementor-widget-spacer .elementor-spacer {
    height: auto !important;
}

body.single-ova_sev .elementor-widget-spacer,
body.single-service .elementor-widget-spacer {
    max-height: 30px !important;
    overflow: hidden;
}

/* ─── GOOGLE MAP IFRAME ─── */
body.single-ova_sev .elementor-widget-html iframe,
body.single-service .elementor-widget-html iframe {
    width: 100% !important;
    height: 250px;
    border-radius: 2px;
    filter: invert(0.9) hue-rotate(180deg) brightness(0.8) contrast(1.1);
    margin-top: 16px;
}

/* ─── SCROLLBAR ─── */
body.single-ova_sev::-webkit-scrollbar,
body.single-service::-webkit-scrollbar {
    width: 5px;
}
body.single-ova_sev::-webkit-scrollbar-track,
body.single-service::-webkit-scrollbar-track {
    background: var(--black);
}
body.single-ova_sev::-webkit-scrollbar-thumb,
body.single-service::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 3px;
}

/* ─── BUTTONS ─── */
body.single-ova_sev .elementor-button,
body.single-service .elementor-button {
    font-family: var(--font-body) !important;
    font-size: 0.8rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    padding: 14px 36px !important;
    background: transparent !important;
    color: var(--gold) !important;
    border: 1px solid var(--gold) !important;
    border-radius: 0 !important;
    transition: all 0.4s var(--ease-out) !important;
}

body.single-ova_sev .elementor-button:hover,
body.single-service .elementor-button:hover {
    background: var(--gold) !important;
    color: var(--black) !important;
}

/* ═══ RESPONSIVE — TABLET ═══ */
@media (max-width: 1024px) {
    body.single-ova_sev .e-con,
    body.single-service .e-con,
    body.single-ova_sev .elementor-section-boxed > .elementor-container,
    body.single-service .elementor-section-boxed > .elementor-container {
        max-width: 700px !important;
        padding-left: 24px;
        padding-right: 24px;
    }

    body.single-ova_sev .elementor h1,
    body.single-service .elementor h1 {
        font-size: 1.8rem !important;
    }
}

/* ═══ RESPONSIVE — MOBILE ═══ */
@media (max-width: 768px) {
    .service-page-wrapper {
        padding-top: 70px !important;
    }

    body.single-ova_sev .e-con,
    body.single-service .e-con,
    body.single-ova_sev .elementor-section-boxed > .elementor-container,
    body.single-service .elementor-section-boxed > .elementor-container {
        max-width: 100% !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    body.single-ova_sev .elementor h1,
    body.single-service .elementor h1 {
        font-size: 1.5rem !important;
    }

    body.single-ova_sev .elementor h2,
    body.single-service .elementor h2 {
        font-size: 1.25rem !important;
    }

    body.single-ova_sev .elementor h3,
    body.single-service .elementor h3 {
        font-size: 1.05rem !important;
    }

    body.single-ova_sev .elementor-section,
    body.single-service .elementor-section,
    body.single-ova_sev .e-con.e-parent,
    body.single-service .e-con.e-parent {
        padding: 28px 16px !important;
    }

    body.single-ova_sev .qodef-qi-faq .qodef-e-title-holder,
    body.single-service .qodef-qi-faq .qodef-e-title-holder {
        padding: 16px 18px !important;
    }

    body.single-ova_sev .qodef-qi-faq .qodef-e-title,
    body.single-service .qodef-qi-faq .qodef-e-title {
        font-size: 0.95rem !important;
    }

    body.single-ova_sev .elementor-widget-html iframe,
    body.single-service .elementor-widget-html iframe {
        height: 200px;
    }
}

/* ═══ RESPONSIVE — SMALL MOBILE ═══ */
@media (max-width: 480px) {
    .service-page-wrapper {
        padding-top: 64px !important;
    }

    body.single-ova_sev .elementor h1,
    body.single-service .elementor h1 {
        font-size: 1.3rem !important;
    }

    body.single-ova_sev .elementor h2,
    body.single-service .elementor h2 {
        font-size: 1.1rem !important;
    }
}
