    /* ── SELF-HOSTED FONTS ── */
    @font-face {
      font-family: 'Cormorant Garamond';
      font-style: normal; font-weight: 300; font-display: swap;
      src: url('fonts/cormorant-garamond-v21-latin_latin-ext-300.woff2') format('woff2');
    }
    @font-face {
      font-family: 'Cormorant Garamond';
      font-style: italic; font-weight: 300; font-display: swap;
      src: url('fonts/cormorant-garamond-v21-latin_latin-ext-300italic.woff2') format('woff2');
    }
    @font-face {
      font-family: 'Cormorant Garamond';
      font-style: normal; font-weight: 400; font-display: swap;
      src: url('fonts/cormorant-garamond-v21-latin_latin-ext-regular.woff2') format('woff2');
    }
    @font-face {
      font-family: 'Cormorant Garamond';
      font-style: italic; font-weight: 400; font-display: swap;
      src: url('fonts/cormorant-garamond-v21-latin_latin-ext-italic.woff2') format('woff2');
    }
    @font-face {
      font-family: 'Cormorant Garamond';
      font-style: normal; font-weight: 500; font-display: swap;
      src: url('fonts/cormorant-garamond-v21-latin_latin-ext-500.woff2') format('woff2');
    }
    @font-face {
      font-family: 'Cormorant Garamond';
      font-style: italic; font-weight: 500; font-display: swap;
      src: url('fonts/cormorant-garamond-v21-latin_latin-ext-500italic.woff2') format('woff2');
    }
    @font-face {
      font-family: 'Cormorant Garamond';
      font-style: normal; font-weight: 600; font-display: swap;
      src: url('fonts/cormorant-garamond-v21-latin_latin-ext-600.woff2') format('woff2');
    }
    @font-face {
      font-family: 'Cormorant Garamond';
      font-style: italic; font-weight: 600; font-display: swap;
      src: url('fonts/cormorant-garamond-v21-latin_latin-ext-600italic.woff2') format('woff2');
    }
    @font-face {
      font-family: 'Inter';
      font-style: normal; font-weight: 300; font-display: swap;
      src: url('fonts/inter-v20-latin_latin-ext-300.woff2') format('woff2');
    }
    @font-face {
      font-family: 'Inter';
      font-style: normal; font-weight: 400; font-display: swap;
      src: url('fonts/inter-v20-latin_latin-ext-regular.woff2') format('woff2');
    }
    @font-face {
      font-family: 'Inter';
      font-style: normal; font-weight: 500; font-display: swap;
      src: url('fonts/inter-v20-latin_latin-ext-500.woff2') format('woff2');
    }
    @font-face {
      font-family: 'Inter';
      font-style: normal; font-weight: 600; font-display: swap;
      src: url('fonts/inter-v20-latin_latin-ext-600.woff2') format('woff2');
    }

    /* ── CSS VARIABLES ── */
    :root {
      --green-deep:   #1E3A2F;
      --green-mid:    #2C4A3E;
      --green-light:  #3D6B5A;
      --gold:         #C9A96E;
      --gold-light:   #E2C99A;
      --ivory:        #F5F0E8;
      --ivory-dark:   #EDE7D9;
      --charcoal:     #1A1A1A;
      --text:         #2E2E2E;
      --text-muted:   #6B6B6B;
      --white:        #FFFFFF;
      --radius:       4px;
      --radius-lg:    12px;
      --transition:   0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      --shadow-sm:    0 2px 12px rgba(0,0,0,0.08);
      --shadow-md:    0 8px 40px rgba(0,0,0,0.14);
      --shadow-lg:    0 20px 60px rgba(0,0,0,0.22);
    }

    /* ── RESET & BASE ── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
    body {
      font-family: 'Inter', sans-serif;
      color: var(--text);
      background: var(--ivory);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }
    img { display: block; width: 100%; height: 100%; object-fit: cover; }
    a { text-decoration: none; color: inherit; }
    button { cursor: pointer; border: none; background: none; font-family: inherit; }
    ul { list-style: none; }

    /* ── TYPOGRAPHY ── */
    .serif { font-family: 'Cormorant Garamond', serif; }
    h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; font-weight: 400; line-height: 1.15; }
    h1 { font-size: clamp(3rem, 7vw, 6rem); }
    h2 { font-size: clamp(2.2rem, 4vw, 3.6rem); }
    h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
    p  { line-height: 1.75; font-weight: 300; }

    /* ── LAYOUT HELPERS ── */
    .container { width: 90%; max-width: 1280px; margin: 0 auto; }
    .section    { padding: 120px 0; }
    .section--dark { background: var(--green-deep); color: var(--ivory); }
    .section--ivory { background: var(--ivory-dark); }

    /* ── SECTION LABEL ── */
    .label {
      display: inline-flex; align-items: center; gap: 10px;
      font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
      color: var(--gold); font-weight: 500; margin-bottom: 18px;
    }
    .label::before {
      content: ''; width: 32px; height: 1px; background: var(--gold);
    }

    /* ── BUTTONS ── */
    .btn {
      display: inline-flex; align-items: center; gap: 10px;
      padding: 16px 36px; font-size: 0.82rem; letter-spacing: 0.12em;
      text-transform: uppercase; font-weight: 500; border-radius: var(--radius);
      transition: all var(--transition); position: relative; overflow: hidden;
    }
    .btn::after {
      content: ''; position: absolute; inset: 0;
      background: rgba(255,255,255,0.1); opacity: 0;
      transition: opacity 0.3s;
    }
    .btn:hover::after { opacity: 1; }
    .btn-gold {
      background: var(--gold); color: var(--charcoal);
    }
    .btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,169,110,0.4); }
    .btn-outline {
      border: 1px solid rgba(255,255,255,0.5); color: var(--white);
    }
    .btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
    .btn-dark {
      background: var(--green-deep); color: var(--ivory);
    }
    .btn-dark:hover { background: var(--green-mid); transform: translateY(-2px); box-shadow: var(--shadow-md); }

    /* ── SCROLL ANIMATIONS ── */
    .reveal {
      opacity: 0; transform: translateY(40px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-left  { opacity: 0; transform: translateX(-40px); transition: opacity 0.8s ease, transform 0.8s ease; }
    .reveal-right { opacity: 0; transform: translateX(40px);  transition: opacity 0.8s ease, transform 0.8s ease; }
    .reveal-left.visible, .reveal-right.visible { opacity: 1; transform: translateX(0); }
    .reveal-scale { opacity: 0; transform: scale(0.92); transition: opacity 0.7s ease, transform 0.7s ease; }
    .reveal-scale.visible { opacity: 1; transform: scale(1); }
    .delay-1 { transition-delay: 0.1s; }
    .delay-2 { transition-delay: 0.2s; }
    .delay-3 { transition-delay: 0.3s; }
    .delay-4 { transition-delay: 0.4s; }
    .delay-5 { transition-delay: 0.5s; }
    .delay-6 { transition-delay: 0.6s; }

    /* ══════════════════════════════════════════
       NAVBAR
    ══════════════════════════════════════════ */
    #navbar {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      padding: 24px 0;
      transition: background 0.5s ease, padding 0.4s ease, box-shadow 0.4s ease;
    }
    #navbar.scrolled {
      background: rgba(30, 58, 47, 0.97);
      backdrop-filter: blur(12px);
      padding: 14px 0;
      box-shadow: 0 2px 30px rgba(0,0,0,0.2);
    }
    .nav-inner {
      display: flex; align-items: center; justify-content: space-between;
      width: 90%; max-width: 1280px; margin: 0 auto;
    }
    .nav-logo { display: flex; align-items: center; }
    .nav-logo img { height: 48px; width: auto; display: block; }
    .nav-links {
      display: flex; align-items: center; gap: 36px;
    }
    .nav-links a {
      color: rgba(255,255,255,0.85); font-size: 0.8rem;
      letter-spacing: 0.1em; text-transform: uppercase; font-weight: 400;
      position: relative; transition: color 0.3s;
    }
    .nav-links a::after {
      content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
      height: 1px; background: var(--gold); transform: scaleX(0);
      transition: transform 0.3s ease; transform-origin: left;
    }
    .nav-links a:hover { color: var(--gold); }
    .nav-links a:hover::after { transform: scaleX(1); }
    .nav-cta {
      padding: 10px 24px; border: 1px solid var(--gold); color: var(--gold);
      font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase;
      border-radius: var(--radius); transition: background 0.3s, color 0.3s;
    }
    .nav-cta::after { display: none !important; }
    .nav-links .nav-cta:hover { background: var(--gold); color: var(--charcoal); }
    .hamburger {
      display: none; flex-direction: column; gap: 5px;
      width: 28px; cursor: pointer; padding: 4px 0;
    }
    .hamburger span {
      display: block; height: 1.5px; background: var(--white);
      transition: all 0.3s ease; border-radius: 2px;
    }
    .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    /* Mobile nav drawer */
    .nav-drawer {
      position: fixed; top: 0; right: -100%; width: 75%; max-width: 320px;
      height: 100vh; background: var(--green-deep); z-index: 999;
      display: flex; flex-direction: column; justify-content: center;
      padding: 60px 40px; gap: 32px;
      transition: right 0.45s cubic-bezier(0.25,0.46,0.45,0.94);
      box-shadow: -20px 0 60px rgba(0,0,0,0.3);
    }
    .nav-drawer.open { right: 0; }
    .nav-drawer a {
      color: var(--ivory); font-size: 1.5rem;
      font-family: 'Cormorant Garamond', serif; font-weight: 400;
      opacity: 0.85; transition: color 0.3s, opacity 0.3s;
      border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 16px;
    }
    .nav-drawer a:hover { color: var(--gold); opacity: 1; }
    .nav-overlay {
      position: fixed; inset: 0; background: rgba(0,0,0,0.5);
      z-index: 998; opacity: 0; pointer-events: none; transition: opacity 0.3s;
    }
    .nav-overlay.open { opacity: 1; pointer-events: all; }

    /* ══════════════════════════════════════════
       HERO
    ══════════════════════════════════════════ */
    #hero {
      position: relative; height: 100vh; min-height: 640px;
      display: flex; align-items: center; justify-content: center;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute; inset: 0; z-index: 0;
      background: linear-gradient(135deg, #0D2318 0%, #1E3A2F 30%, #2C4A3E 60%, #1A3328 80%, #0D2318 100%);
      background-size: 400% 400%;
      animation: heroGradient 12s ease infinite;
    }
    .hero-bg::before {
      content: ''; position: absolute; inset: 0;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(201,169,110,0.06)'/%3E%3C/svg%3E");
      opacity: 0.4;
    }
    .hero-video {
      position: absolute; inset: 0; z-index: 1;
      width: 100%; height: 100%;
      object-fit: cover; object-position: center;
      opacity: 0; transition: opacity 1.2s ease;
    }
    .hero-video.loaded { opacity: 0.35; }
    /* Mobil: dikey video hazır olunca buraya eklenecek */
    @media (max-width: 768px) {
      .hero-video { object-position: center center; }
    }
    @keyframes heroGradient {
      0%   { background-position: 0% 50%; }
      50%  { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }
    .hero-overlay {
      position: absolute; inset: 0; z-index: 3;
      background: linear-gradient(to bottom, rgba(13,35,24,0.3) 0%, rgba(13,35,24,0.1) 50%, rgba(13,35,24,0.6) 100%);
    }
    .hero-content {
      position: relative; z-index: 4; text-align: center;
      padding: 0 20px; max-width: 900px;
    }
    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 14px;
      font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase;
      color: var(--gold); font-weight: 400; margin-bottom: 28px;
      opacity: 0; animation: fadeUp 1s ease 0.3s forwards;
    }
    .hero-eyebrow::before, .hero-eyebrow::after {
      content: ''; width: 40px; height: 1px; background: var(--gold); opacity: 0.6;
    }
    .hero-title {
      color: var(--white); font-weight: 300; letter-spacing: 0.02em;
      margin-bottom: 24px;
      font-size: clamp(2.8rem, 5vw, 4.8rem);
      opacity: 0; animation: fadeUp 1s ease 0.6s forwards;
    }
    .hero-title em { font-style: italic; color: var(--gold-light); }
    .hero-subtitle {
      color: rgba(255,255,255,0.7); font-size: clamp(0.95rem, 1.5vw, 1.1rem);
      font-weight: 300; max-width: 560px; margin: 0 auto 48px;
      opacity: 0; animation: fadeUp 1s ease 0.9s forwards;
    }
    .hero-actions {
      display: flex; align-items: center; justify-content: center;
      gap: 20px; flex-wrap: wrap;
      opacity: 0; animation: fadeUp 1s ease 1.2s forwards;
    }
    .hero-actions .btn {
      width: 280px; max-width: 90vw; justify-content: center;
    }
    .hero-scroll {
      position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
      z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 8px;
      color: rgba(255,255,255,0.5); font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
      animation: fadeIn 1s ease 2s forwards; opacity: 0;
    }
    .scroll-line {
      width: 1px; height: 48px; background: linear-gradient(to bottom, var(--gold), transparent);
      animation: scrollPulse 2s ease infinite;
    }
    @keyframes scrollPulse {
      0%, 100% { opacity: 1; transform: scaleY(1); }
      50% { opacity: 0.4; transform: scaleY(0.6); }
    }
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeIn {
      from { opacity: 0; } to { opacity: 1; }
    }

    /* ══ Botanik Köşe Yaprakları ══ */
    .deco-leaf {
      position: absolute; pointer-events: none; z-index: 1;
      opacity: 0.62;
    }
    .deco-leaf img { display: block; width: 100%; height: auto; }
    @keyframes sway {
      0%,100% { transform: rotate(0deg); }
      30%     { transform: rotate(4deg) translateX(12px); }
      70%     { transform: rotate(-2.5deg) translateX(-7px); }
    }
    @keyframes swayR {
      0%,100% { transform: rotate(0deg); }
      30%     { transform: rotate(-4deg) translateX(-12px); }
      70%     { transform: rotate(2.5deg) translateX(7px); }
    }
    .deco-leaf--bl {
      bottom: -10px; left: -50px; width: 280px;
      transform-origin: bottom center;
      animation: sway 10s ease-in-out infinite;
    }
    .deco-leaf--br {
      bottom: -10px; right: -50px; width: 280px;
      transform-origin: bottom center;
      animation: swayR 12s ease-in-out infinite 2s;
    }

    /* ══════════════════════════════════════════
       STATS BAR
    ══════════════════════════════════════════ */
    .stats-bar {
      background: var(--green-deep); padding: 40px 0;
      border-bottom: 1px solid rgba(201,169,110,0.15);
    }
    .stats-grid {
      display: grid; grid-template-columns: repeat(4, 1fr);
      divide-x: 1px solid rgba(255,255,255,0.1);
      text-align: center; gap: 0;
    }
    .stat-item {
      padding: 0 20px; border-right: 1px solid rgba(255,255,255,0.08);
    }
    .stat-item:last-child { border-right: none; }
    .stat-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.8rem; font-weight: 300; color: var(--gold);
      line-height: 1; display: block;
    }
    .stat-label {
      font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase;
      color: rgba(245,240,232,0.55); margin-top: 6px; display: block;
    }

    /* ══════════════════════════════════════════
       ABOUT
    ══════════════════════════════════════════ */
    #about .about-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end;
    }
    .about-visual {
      position: relative; height: 580px; border-radius: var(--radius-lg); overflow: hidden;
    }
    .about-visual .main-img {
      width: 100%; height: 100%;
      background-image: url('images/lavee.webp');
      background-size: cover; background-position: center top;
      border-radius: var(--radius-lg); position: relative; overflow: hidden;
    }
    .about-visual .main-img::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(160deg, rgba(30,58,47,0.38) 0%, rgba(44,74,62,0.28) 60%, rgba(30,58,47,0.42) 100%);
      border-radius: var(--radius-lg);
    }
    .about-badge {
      position: absolute; bottom: -20px; right: -20px;
      background: var(--gold); color: var(--charcoal);
      width: 130px; height: 130px; border-radius: 50%;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      text-align: center; box-shadow: var(--shadow-md);
    }
    .about-badge span:first-child { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; line-height: 1; }
    .about-badge span:last-child { font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; }
    .about-text h2 { color: var(--green-deep); margin: 10px 0 24px; }
    .about-text p { color: var(--text-muted); margin-bottom: 20px; }
    .about-features {
      display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 36px;
    }
    .feature-chip {
      display: flex; align-items: center; gap: 12px;
      padding: 14px 18px; background: var(--ivory-dark);
      border-radius: var(--radius); border-left: 3px solid var(--gold);
    }
    /* Global SVG ikon stili */
    svg.ico { display:inline-block; fill:none; stroke:currentColor; stroke-width:1.5; stroke-linecap:round; stroke-linejoin:round; }
    .feature-chip .icon { display:flex; align-items:center; color:var(--gold); }
    .feature-chip .icon svg { width:18px; height:18px; }
    .feature-chip span { font-size:0.82rem; font-weight:500; color:var(--green-deep); }

    /* ══════════════════════════════════════════
       VILLAS
    ══════════════════════════════════════════ */
    #villas { background: var(--green-deep); }
    #villas h2 { color: var(--ivory); }
    #villas .section-head { text-align: center; margin-bottom: 64px; }
    #villas .section-head .label { color: var(--gold); }
    #villas .section-head p { color: rgba(245,240,232,0.6); max-width: 520px; margin: 0 auto; }
    .amenity-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
    }
    .amenity-item {
      display: flex; flex-direction: column; align-items: center; gap: 14px;
      padding: 28px 18px; text-align: center;
      background: rgba(255,255,255,0.03); border: 1px solid rgba(201,169,110,0.12);
      border-radius: var(--radius-lg);
      transition: background 0.3s, border-color 0.3s, transform 0.3s;
    }
    .amenity-item:hover {
      background: rgba(201,169,110,0.07); border-color: rgba(201,169,110,0.32);
      transform: translateY(-4px);
    }
    .amenity-icon {
      width: 58px; height: 58px; color: var(--gold);
      display: flex; align-items: center; justify-content: center;
      background: rgba(201,169,110,0.1); border-radius: 14px;
      flex-shrink: 0;
    }
    .amenity-icon svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
    .amenity-label {
      font-size: 0.82rem; color: rgba(245,240,232,0.82); font-weight: 500;
      line-height: 1.45; letter-spacing: 0.01em;
    }

    /* ══════════════════════════════════════════
       GALLERY
    ══════════════════════════════════════════ */
    #gallery .section-head { text-align: center; margin-bottom: 56px; }
    #gallery .section-head .label { color: var(--green-deep); }
    #gallery .section-head h2 { color: var(--green-deep); }
    #gallery .section-head h2 em { font-style: italic; color: var(--gold); }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
    }
    .gal-item {
      border-radius: var(--radius); overflow: hidden;
      cursor: pointer; position: relative; height: 260px;
    }
    /* Mozaik: .gal-wide sınıfı JS tarafından yönetilir (filtre sonrası düzgün çalışsın) */
    .gal-item.gal-wide { grid-column: span 2; }

    /* ── GALERİ FİLTRE ÇUBUĞU ── */
    .gal-filter-bar {
      display: flex; align-items: center; gap: 32px;
      margin-bottom: 20px;
    }
    .gal-filter-btn {
      font-family: inherit;
      font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
      color: var(--text-muted); background: none; border: none;
      cursor: pointer; padding: 0 0 10px 0; position: relative;
      transition: color 0.3s ease; white-space: nowrap;
    }
    .gal-filter-btn::after {
      content: ''; position: absolute; bottom: 0; left: 0;
      width: 0; height: 1px; background: var(--gold);
      transition: width 0.35s ease;
    }
    .gal-filter-btn:hover { color: var(--green-deep); }
    .gal-filter-btn.active { color: var(--green-deep); font-weight: 500; }
    .gal-filter-btn.active::after { width: 100%; }

    /* Filtre geçiş animasyonu */
    .gal-item {
      transition: opacity 0.35s ease, transform 0.35s ease;
    }
    .gal-item.gal-hidden {
      display: none;
    }
    .gal-thumb {
      width: 100%; height: 100%;
      background-size: cover; background-position: center;
      transition: transform 0.6s ease;
    }
    .gal-item:hover .gal-thumb { transform: scale(1.06); }
    .gal-overlay {
      position: absolute; inset: 0;
      background: rgba(30,58,47,0); transition: background 0.4s;
      display: flex; align-items: center; justify-content: center;
    }
    .gal-item:hover .gal-overlay { background: rgba(30,58,47,0.45); }
    .gal-zoom {
      color: var(--white); font-size: 1.6rem; opacity: 0;
      transform: scale(0.7); transition: opacity 0.4s, transform 0.4s;
    }
    .gal-item:hover .gal-zoom { opacity: 1; transform: scale(1); }

    /* Gallery placeholder — fotoğraf yüklenene kadar gösterilir */
    .gal-thumb { background-color: #1E3A2F; }

    /* Lightbox */
    #lightbox {
      position: fixed; inset: 0; z-index: 2000;
      background: rgba(0,0,0,0.92); display: flex; align-items: center; justify-content: center;
      opacity: 0; pointer-events: none; transition: opacity 0.4s;
    }
    #lightbox.open { opacity: 1; pointer-events: all; }
    .lb-close {
      position: absolute; top: 24px; right: 30px;
      color: var(--white); font-size: 2rem; cursor: pointer;
      width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
      border-radius: 50%; border: 1px solid rgba(255,255,255,0.2);
      transition: background 0.3s; z-index: 1;
    }
    .lb-close:hover { background: rgba(255,255,255,0.1); }
    .lb-img {
      max-width: 90vw; max-height: 85vh; border-radius: var(--radius);
      object-fit: contain; display: block;
    }
    .lb-nav {
      position: absolute; top: 50%; transform: translateY(-50%);
      color: var(--white); cursor: pointer;
      width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
      border-radius: 50%; border: 1px solid rgba(255,255,255,0.2);
      background: rgba(0,0,0,0.3); transition: background 0.3s, border-color 0.3s;
      z-index: 1; user-select: none;
    }
    .lb-nav:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.5); }
    .lb-prev { left: 24px; }
    .lb-next { right: 24px; }
    @media (max-width: 480px) {
      .lb-prev { left: 10px; }
      .lb-next { right: 10px; }
      .lb-nav { width: 40px; height: 40px; }
    }

    /* ══════════════════════════════════════════
       ACTIVITIES
    ══════════════════════════════════════════ */
    #activities { background: var(--ivory-dark); }
    #activities .section-head { text-align: center; margin-bottom: 60px; }
    #activities .section-head h2 { color: var(--green-deep); }
    #activities .section-head h2 em { font-style: italic; color: var(--gold); }
    .activities-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
      grid-auto-rows: 1fr;
      counter-reset: activity;
    }
    .act-card {
      background: var(--white); border-radius: 18px;
      padding: 36px 32px 30px;
      box-shadow: 0 2px 16px rgba(13,35,24,0.055);
      transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
      border-left: 3px solid transparent;
      display: flex; flex-direction: column; align-items: flex-start;
      text-align: left; position: relative; overflow: hidden;
      counter-increment: activity;
    }
    .act-card::after { content: none; }
    .act-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 14px 44px rgba(13,35,24,0.12);
      border-left-color: var(--gold);
    }
    .act-icon {
      display: flex; align-items: center; justify-content: center;
      width: 54px; height: 54px; margin: 0 0 22px;
      background: linear-gradient(135deg, rgba(201,169,110,0.13) 0%, rgba(201,169,110,0.06) 100%);
      border-radius: 14px;
      color: var(--gold); transition: transform 0.35s ease, background 0.3s ease;
      box-shadow: 0 2px 8px rgba(201,169,110,0.1);
    }
    .act-icon svg { width: 24px; height: 24px; }
    .act-card:hover .act-icon {
      transform: scale(1.1) rotate(-3deg);
      background: linear-gradient(135deg, rgba(201,169,110,0.2) 0%, rgba(201,169,110,0.1) 100%);
    }
    .act-card h3 {
      color: var(--green-deep); font-size: 1.2rem; margin-bottom: 10px;
      font-family: 'Cormorant Garamond', serif; font-weight: 600; line-height: 1.3;
    }
    .act-card p { color: var(--text-muted); font-size: 0.87rem; line-height: 1.8; flex: 1; }
    .act-link {
      display: inline-flex; align-items: center; gap: 6px;
      margin-top: 20px;
      font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--green-mid); text-decoration: none;
      padding: 7px 16px; border: 1px solid rgba(44,74,62,0.25);
      border-radius: 20px; transition: all 0.25s ease;
    }
    .act-link:hover {
      color: var(--white); background: var(--green-deep);
      border-color: var(--green-deep); transform: translateY(-1px);
    }

    /* ══════════════════════════════════════════
       PRICING
    ══════════════════════════════════════════ */
    #pricing { background: var(--green-deep); }
    #pricing .section-head { text-align: center; margin-bottom: 56px; }
    #pricing .section-head h2 { color: var(--ivory); }
    #pricing .section-head p { color: rgba(245,240,232,0.6); max-width: 480px; margin: 0 auto; }

    /* Kampanya kutusu */
    .kampanya-box {
      background: rgba(201,169,110,0.07);
      border: 1px solid rgba(201,169,110,0.3);
      border-radius: var(--radius-lg); padding: 40px 48px;
      text-align: center; max-width: 860px; margin: 0 auto 16px;
    }
    .kampanya-badge {
      display: inline-block; background: var(--gold); color: var(--green-deep);
      font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
      padding: 5px 18px; border-radius: 20px; margin-bottom: 20px;
    }
    .kampanya-title {
      font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 300;
      color: var(--ivory); margin-bottom: 28px;
    }
    .kampanya-prices {
      display: flex; align-items: center; justify-content: center; gap: 48px;
    }
    .kampanya-divider { width: 1px; height: 56px; background: rgba(201,169,110,0.3); }
    .kampanya-price-item { display: flex; flex-direction: column; align-items: center; gap: 4px; }
    .kpi-label {
      font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
      color: rgba(245,240,232,0.45);
    }
    .kpi-price {
      font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 300;
      line-height: 1; color: var(--gold);
    }
    .kpi-unit { font-size: 0.75rem; color: rgba(245,240,232,0.35); }
    .kampanya-note { margin-top: 22px; font-size: 0.75rem; color: rgba(245,240,232,0.35); }

    /* Normal sezon başlık */
    .pricing-season-label {
      text-align: center; font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
      color: rgba(245,240,232,0.35); margin: 40px 0 24px;
    }

    /* İki konum kartı */
    .pricing-duo {
      display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
      max-width: 860px; margin: 0 auto;
    }
    .price-card-v2 {
      background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
      border-radius: var(--radius-lg); padding: 44px 40px; text-align: center;
      position: relative; transition: transform var(--transition), border-color var(--transition);
      display: flex; flex-direction: column;
    }
    .price-card-v2:hover { transform: translateY(-5px); border-color: rgba(201,169,110,0.3); }
    .price-card-v2.pcv2-featured {
      border-color: rgba(201,169,110,0.45); background: rgba(201,169,110,0.05);
    }
    .pcv2-badge {
      position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
      background: var(--green-deep); color: var(--gold);
      padding: 4px 20px; border-radius: 20px; white-space: nowrap;
      font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 600;
      border: 1px solid var(--gold);
    }
    .pcv2-type {
      display: block; font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 20px;
    }
    .pcv2-price { display: flex; align-items: baseline; justify-content: center; gap: 4px; margin-bottom: 8px; }
    .pcv2-num {
      font-family: 'Cormorant Garamond', serif; font-size: 3.4rem; font-weight: 300;
      line-height: 1; color: var(--white);
    }
    .pcv2-unit { font-size: 0.8rem; color: rgba(245,240,232,0.4); }
    .pcv2-desc { font-size: 0.78rem; color: rgba(245,240,232,0.4); margin-bottom: 32px; }
    .pcv2-btn {
      display: block; width: 100%; text-align: center;
      padding: 14px 24px; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
      border-radius: var(--radius); transition: all 0.3s;
      border: 1px solid rgba(201,169,110,0.4); color: var(--gold);
      margin-top: auto;
    }
    .pcv2-btn:hover { background: var(--gold); color: var(--charcoal); border-color: var(--gold); }
    .pcv2-featured .pcv2-btn { border-color: rgba(201,169,110,0.6); }
    .pcv2-featured .pcv2-btn:hover { background: var(--gold); color: var(--charcoal); border-color: var(--gold); }

    /* Dahil olanlar */
    .pricing-includes {
      max-width: 860px; margin: 44px auto 0;
      padding: 36px 40px;
      background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07);
      border-radius: var(--radius-lg);
    }
    .pi-title {
      font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--gold); text-align: center; margin-bottom: 24px;
    }
    .pi-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px 24px;
      margin-bottom: 20px;
    }
    .pi-item {
      display: flex; align-items: center; gap: 10px;
      font-size: 0.84rem; color: rgba(245,240,232,0.65);
    }
    .pi-item svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
    .pi-extra {
      text-align: center; font-size: 0.75rem; color: rgba(245,240,232,0.3);
      border-top: 1px solid rgba(255,255,255,0.06); padding-top: 16px;
    }

    /* ══════════════════════════════════════════
       RESERVATION
    ══════════════════════════════════════════ */
    #rezervasyon { background: var(--ivory); }
    #rezervasyon .section-head { text-align: center; margin-bottom: 60px; }
    #rezervasyon .section-head h2 { color: var(--green-deep); }
    /* ── Rezervasyon kartı ── */
    .rez-card {
      max-width: 680px; margin: 0 auto;
      background: var(--white);
      border-radius: var(--radius-lg);
      box-shadow: 0 8px 48px rgba(0,0,0,0.08);
      border: 1px solid rgba(0,0,0,0.07);
      padding: 48px;
      display: flex; flex-direction: column; gap: 24px;
    }
    .rez-label {
      display: block; font-size: 0.68rem; letter-spacing: 0.14em;
      text-transform: uppercase; color: var(--green-deep);
      font-weight: 600; margin-bottom: 10px;
    }
    .rez-field { display: flex; flex-direction: column; }
    .rez-input {
      width: 100%; padding: 12px 15px;
      border: 1px solid rgba(0,0,0,0.11); border-radius: 8px;
      font-family: inherit; font-size: 0.92rem; color: var(--text);
      background: var(--ivory); outline: none;
      transition: border-color 0.2s, box-shadow 0.2s;
      -webkit-appearance: none; appearance: none;
      box-sizing: border-box;
    }
    .rez-input:focus {
      border-color: var(--gold);
      box-shadow: 0 0 0 3px rgba(201,169,110,0.12);
    }
    .rez-textarea { resize: vertical; min-height: 80px; }
    .rez-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

    /* Tarih alanı */
    .rez-date-wrap { position: relative; }
    .rez-date-ico {
      position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
      width: 16px; height: 16px; color: var(--text-muted);
      pointer-events: none; z-index: 1;
    }
    .rez-date-input { padding-left: 40px; cursor: pointer; }

    /* Villa kartları */
    .rez-villa-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
    .rez-villa-opt { cursor: pointer; }
    .rez-villa-opt input { display: none; }
    .rez-villa-card {
      padding: 14px 16px; border-radius: 8px;
      border: 1.5px solid rgba(0,0,0,0.09);
      transition: border-color 0.2s, background 0.2s;
      display: flex; flex-direction: column; gap: 4px;
      background: var(--ivory);
    }
    .rez-villa-card:hover { border-color: rgba(201,169,110,0.5); }
    .rez-villa-name { font-size: 0.84rem; font-weight: 500; color: var(--text); line-height: 1.4; }
    .rez-villa-price { font-size: 0.76rem; color: var(--text-muted); }
    .rez-villa-opt input:checked + .rez-villa-card {
      border-color: var(--gold);
      background: rgba(201,169,110,0.06);
      box-shadow: 0 0 0 1px var(--gold);
    }
    .rez-villa-opt input:checked + .rez-villa-card .rez-villa-name { color: var(--green-deep); font-weight: 600; }
    .rez-villa-opt input:checked + .rez-villa-card .rez-villa-price { color: var(--gold); }

    /* Alt footer */
    .rez-footer {
      display: flex; align-items: center; justify-content: space-between;
      gap: 20px; padding-top: 20px;
      border-top: 1px solid rgba(0,0,0,0.07);
    }
    .rez-calc {
      font-size: 0.88rem; color: var(--text-muted); line-height: 1.5;
    }
    .rez-calc strong { color: var(--green-deep); font-weight: 600; }
    .rez-wa-btn {
      flex-shrink: 0;
      display: inline-flex; align-items: center; gap: 8px;
      padding: 12px 22px;
      background: #25D366; color: #fff;
      border: none; border-radius: 8px;
      font-family: inherit; font-size: 0.82rem; font-weight: 600;
      letter-spacing: 0.04em; cursor: pointer; white-space: nowrap;
      transition: background 0.2s, transform 0.15s;
    }
    .rez-wa-btn:hover { background: #1ebe5a; transform: translateY(-2px); }

    /* Flatpickr tema uyumu */
    .flatpickr-calendar {
      font-family: inherit !important;
      border-radius: 12px !important;
      box-shadow: 0 12px 48px rgba(0,0,0,0.18) !important;
      border: 1px solid rgba(201,169,110,0.2) !important;
    }
    .flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange {
      background: var(--green-deep) !important;
      border-color: var(--green-deep) !important;
      color: var(--gold) !important;
    }
    .flatpickr-day.inRange {
      background: var(--green-deep) !important;
      border-color: var(--green-deep) !important;
      box-shadow: -5px 0 0 var(--green-deep), 5px 0 0 var(--green-deep) !important;
      color: rgba(245,240,232,0.8) !important;
    }
    .flatpickr-day:hover:not(.selected):not(.startRange):not(.endRange) {
      background: rgba(201,169,110,0.1) !important;
    }
    .flatpickr-months .flatpickr-month,
    .flatpickr-current-month .flatpickr-monthDropdown-months {
      color: var(--green-deep) !important;
    }
    .flatpickr-prev-month svg, .flatpickr-next-month svg { fill: var(--green-deep) !important; }

    /* Mobil: takvimi ekran ortasına sabitle */
    @media (max-width: 639px) {
      .flatpickr-calendar {
        position: fixed !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        width: calc(100vw - 32px) !important;
        max-width: 340px !important;
        z-index: 9999 !important;
      }
      .flatpickr-days, .dayContainer {
        width: 100% !important;
        min-width: unset !important;
        max-width: 100% !important;
      }
      .flatpickr-day {
        max-width: 14.28% !important;
        height: 40px !important;
        line-height: 40px !important;
      }
    }

    /* ══════════════════════════════════════════
       VIRTUAL TOUR BANNER
    ══════════════════════════════════════════ */
    #virtual-tour {
      background: linear-gradient(135deg, #0D2318 0%, #2C4A3E 100%);
      padding: 100px 0; text-align: center; position: relative; overflow: hidden;
    }
    #virtual-tour::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(ellipse at center, rgba(201,169,110,0.08) 0%, transparent 70%);
    }
    #virtual-tour h2 { color: var(--ivory); margin-bottom: 16px; position: relative; }
    #virtual-tour p { color: rgba(245,240,232,0.6); max-width: 500px; margin: 0 auto 40px; position: relative; }
    .tour-btn {
      position: relative; display: inline-flex; align-items: center; gap: 14px;
      padding: 20px 48px; border: 1px solid rgba(201,169,110,0.5);
      color: var(--gold); border-radius: var(--radius);
      font-size: 0.85rem; letter-spacing: 0.15em; text-transform: uppercase;
      transition: all 0.4s;
    }
    .tour-btn::before {
      content: ''; position: absolute; inset: 0; background: rgba(201,169,110,0.08);
      border-radius: inherit; opacity: 0; transition: opacity 0.4s;
    }
    .tour-btn:hover { border-color: var(--gold); color: var(--white); }
    .tour-btn:hover::before { opacity: 1; }
    .play-circle {
      width: 44px; height: 44px; border: 1px solid var(--gold);
      border-radius: 50%; display: flex; align-items: center; justify-content: center;
      transition: background 0.3s; flex-shrink: 0;
    }
    .play-circle svg { width: 16px; height: 16px; fill: currentColor; margin-left: 2px; }
    .tour-btn:hover .play-circle { background: var(--gold); color: var(--charcoal); }

    /* ══════════════════════════════════════════
       CONTACT + MAP
    ══════════════════════════════════════════ */
    #contact { background: var(--ivory-dark); }
    #contact .section-head { margin-bottom: 56px; }
    #contact .section-head h2 { color: var(--green-deep); }
    .contact-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: 72px; align-items: start; }
    .contact-info { display: flex; flex-direction: column; gap: 28px; }
    .contact-item { display: flex; align-items: center; gap: 18px; }
    .contact-item-icon {
      width:48px; height:48px; flex-shrink:0;
      background:var(--green-deep); border-radius:50%;
      display:flex; align-items:center; justify-content:center;
      color:var(--gold);
    }
    .contact-item-icon svg { width:20px; height:20px; }
    .contact-item-text strong {
      display: block; font-size: 0.75rem; letter-spacing: 0.15em;
      text-transform: uppercase; color: var(--green-deep); margin-bottom: 4px; font-weight: 600;
    }
    .contact-item-text span { font-size: 0.95rem; color: var(--text-muted); }

    .map-wrap { position: sticky; top: 110px; }
    .map-frame {
      position: relative;
      border-radius: var(--radius-lg); overflow: hidden;
      box-shadow: 0 20px 64px rgba(0,0,0,0.28), 0 0 0 1px rgba(201,169,110,0.2);
      height: 510px;
      border-top: 2px solid rgba(201,169,110,0.35);
    }
    .map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

    /* Leaflet harita */
    #lavee-map { width: 100%; height: 100%; min-height: 510px; }
    #lavee-map .leaflet-tile-pane {
      filter: sepia(0.32) saturate(0.70) brightness(0.84);
    }
    #lavee-map .leaflet-control-zoom {
      border: none !important; box-shadow: 0 2px 12px rgba(0,0,0,0.2) !important;
    }
    #lavee-map .leaflet-control-zoom a {
      background: var(--green-deep) !important; color: var(--gold) !important;
      border-color: rgba(201,169,110,0.2) !important;
      font-size: 16px; line-height: 28px; width: 30px; height: 30px;
    }
    #lavee-map .leaflet-control-zoom a:hover {
      background: var(--green-mid) !important; color: var(--gold-light) !important;
    }
    #lavee-map .leaflet-control-attribution {
      display: none; /* overlay ile yer kazanıyoruz */
    }

    /* Harita alt overlay — konum + yol tarifi */
    .map-overlay {
      position: absolute; bottom: 0; left: 0; right: 0; z-index: 800;
      background: linear-gradient(to top,
        rgba(237,231,217,0.98) 0%,
        rgba(237,231,217,0.88) 60%,
        transparent 100%);
      padding: 44px 22px 20px;
      display: flex; align-items: flex-end; justify-content: space-between; gap: 16px;
      pointer-events: none;
    }
    .map-overlay-info { }
    .map-overlay-name {
      font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 5px; font-weight: 500;
    }
    .map-overlay-addr {
      font-size: 0.85rem; color: var(--text-muted); line-height: 1.55;
    }
    .map-directions-btn {
      pointer-events: all; flex-shrink: 0;
      display: inline-flex; align-items: center; gap: 7px;
      padding: 10px 18px; border-radius: 6px;
      background: var(--green-deep); color: var(--gold);
      border: 1px solid rgba(201,169,110,0.3);
      font-family: inherit; font-size: 0.68rem;
      letter-spacing: 0.13em; text-transform: uppercase; font-weight: 500;
      text-decoration: none; white-space: nowrap;
      transition: background 0.25s, transform 0.2s;
      margin-right: 40px; /* zoom butonları için boşluk */
    }
    .map-directions-btn:hover { background: var(--green-mid); transform: translateY(-2px); }
    .map-directions-btn svg { width: 13px; height: 13px; }

    /* Popup */
    #lavee-map .leaflet-popup-content-wrapper {
      background: var(--green-deep) !important; color: var(--ivory) !important;
      border-radius: 8px !important; box-shadow: 0 6px 24px rgba(0,0,0,0.35) !important;
      border: 1px solid rgba(201,169,110,0.2) !important;
    }
    #lavee-map .leaflet-popup-tip { background: var(--green-deep) !important; }
    #lavee-map .leaflet-popup-content { margin: 12px 16px !important; }
    #lavee-map .leaflet-popup-content strong { color: var(--gold) !important; display: block; margin-bottom: 3px; font-size: 0.85rem; }
    #lavee-map .leaflet-popup-content span { font-size: 0.78rem; color: rgba(245,240,232,0.75) !important; line-height: 1.5; }
    #lavee-map .leaflet-popup-close-button { color: var(--gold) !important; top: 6px !important; right: 8px !important; }
    .social-row { display: flex; gap: 14px; margin-top: 12px; }
    .social-link {
      width:44px; height:44px; border:1px solid var(--ivory-dark);
      border-radius:50%; display:flex; align-items:center; justify-content:center;
      color:var(--text-muted); transition:all 0.3s;
    }
    .social-link svg { width:18px; height:18px; }
    .social-link:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,169,110,0.06); }

    /* ══════════════════════════════════════════
       FOOTER
    ══════════════════════════════════════════ */
    footer {
      background: var(--charcoal); color: rgba(255,255,255,0.5);
      padding: 60px 0 32px;
    }
    .footer-inner {
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
      margin-bottom: 48px;
    }
    .footer-brand .logo-main { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: var(--white); }
    .footer-brand .logo-sub { font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); }
    .footer-brand p { margin-top: 16px; font-size: 0.85rem; line-height: 1.7; max-width: 260px; }
    .footer-col h3 { color: var(--white); font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 18px; font-family: 'Inter', sans-serif; font-weight: 500; }
    .footer-col ul { display: flex; flex-direction: column; gap: 10px; }
    .footer-col ul li a { font-size: 0.85rem; transition: color 0.3s; }
    .footer-col ul li a:hover { color: var(--gold); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.06); padding-top: 28px;
      display: flex; align-items: center; justify-content: space-between;
      font-size: 0.75rem;
    }
    .footer-bottom a { color: var(--gold); }

    /* ══════════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════════ */
    @media (max-width: 1024px) {
      .amenity-grid { grid-template-columns: repeat(3, 1fr); }
      .activities-grid { grid-template-columns: 1fr 1fr; }
      .footer-inner { grid-template-columns: 1fr 1fr; }
      .gallery-grid { grid-template-columns: repeat(2, 1fr); }
      .gal-item { height: 220px; }
      .gal-item:nth-child(1),
      .gal-item:nth-child(6),
      .gal-item:nth-child(8),
      .gal-item:nth-child(11) { grid-column: span 2; }
    }
    @media (max-width: 768px) {
      .deco-leaf--bl { width: 120px; left: -20px; }
      .deco-leaf--br { width: 120px; right: -20px; }
      .section { padding: 80px 0; }
      .nav-links { display: none; }
      .hamburger { display: flex; }
      #about .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
      .rez-card { padding: 28px 20px; }
      .rez-row { grid-template-columns: 1fr; gap: 16px; }
      .rez-villa-grid { grid-template-columns: 1fr; }
      .rez-footer { flex-direction: column; align-items: stretch; }
      .about-visual { height: 360px; }
      .about-features { grid-template-columns: 1fr; }
      .amenity-grid { grid-template-columns: repeat(2, 1fr); }
      .activities-grid, .pricing-duo { grid-template-columns: 1fr; grid-auto-rows: auto; }
      #activities { padding-top: 48px; }
      .act-card { padding: 20px 20px 16px; }
      .testi-agg-source { justify-content: center; }
      .kampanya-box { padding: 32px 24px; }
      .kampanya-prices { gap: 28px; }
      .kpi-price { font-size: 2.5rem; }
      .pricing-includes { padding: 28px 24px; }
      .pi-grid { grid-template-columns: 1fr 1fr; }
      .hero-scroll { display: none; }
      .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
      .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 0 12px 20px; }
      .stat-item:nth-child(even) { border-right: none; }
      .stat-num { font-size: 2.2rem; }
      .stat-label { font-size: 0.65rem; letter-spacing: 0.12em; }
      .gallery-grid { grid-template-columns: 1fr; }
      .gal-item { height: 200px; }
      .gal-item:nth-child(1),
      .gal-item:nth-child(6),
      .gal-item:nth-child(8),
      .gal-item:nth-child(11) { grid-column: span 1; }
      /* Galeri filtre butonları — satır sonu ile taşmayı önle */
      .gal-filter-bar { flex-wrap: wrap; gap: 0 20px; }
      .form-row { grid-template-columns: 1fr; }
      .form-group.full { grid-column: span 1; }
      .rez-form, .rez-header { padding: 28px 24px; }
      .footer-inner { grid-template-columns: 1fr; gap: 32px; }
      .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
      .hero-actions { flex-direction: column; align-items: center; }
      .about-badge { width: 100px; height: 100px; right: 0; bottom: -10px; }
      /* Harita alt overlay — mobilde üst üste */
      .map-overlay { flex-direction: column; align-items: flex-start; gap: 12px; padding: 24px 18px 16px; }
      .map-directions-btn { margin-right: 0; }
      /* Yorum aggregate kutusu */
      .testi-aggregate { padding: 24px 20px; width: 100%; max-width: 100%; flex-wrap: wrap; justify-content: center; gap: 16px; text-align: center; }
      .testi-agg-divider { width: 60px; height: 1px; }
      .testi-aggregate-wrap { padding: 0 5%; }
      /* Sections overflow clip */
      .section, #hero, footer, .stats-bar, #virtual-tour { overflow-x: hidden; }
    }
    @media (max-width: 480px) {
      h1 { font-size: 2.6rem; }
      h2 { font-size: 2rem; }
      .btn { padding: 14px 28px; font-size: 0.76rem; }
      /* Küçük ekran ek düzeltmeleri */
      .kampanya-prices { flex-direction: column; align-items: center; gap: 16px; }
      .kampanya-divider { width: 60px; height: 1px; }
      .tour-btn { padding: 16px 28px; }
      .pcv2-badge { font-size: 0.6rem; padding: 4px 14px; white-space: normal; text-align: center; }
      .testi-aggregate { gap: 12px; }
      .testi-score { font-size: 3rem; }
      .map-wrap { position: static; }
      .map-frame { height: 360px; }
      #lavee-map { min-height: 360px; }
      .map-directions-btn { font-size: 0.62rem; padding: 8px 14px; }
      .footer-cta-band { padding: 48px 0; }
      .sound-widget { bottom: 16px; left: 16px; }
    }

    /* ══════════════════════════════════════════
       HERO URGENCY BADGE
    ══════════════════════════════════════════ */
    .hero-urgency {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(201,169,110,0.12); border: 1px solid rgba(201,169,110,0.35);
      border-radius: 40px; padding: 8px 20px; margin-bottom: 36px;
      font-size: 0.8rem; color: var(--gold-light); letter-spacing: 0.04em;
      opacity: 0; animation: fadeUp 1s ease 1.05s forwards;
    }
    .hero-urgency strong { color: var(--gold); }
    .hero-urgency a { color: var(--gold); text-decoration: underline; }

    /* ══════════════════════════════════════════
       VILLA SCARCITY BADGE
    ══════════════════════════════════════════ */
    .scarcity-badge {
      position: absolute; top: 16px; left: 16px;
      background: rgba(220, 60, 60, 0.9); color: var(--white);
      padding: 4px 12px; border-radius: 2px;
      font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600;
      animation: pulse-red 2s ease-in-out infinite;
    }
    @keyframes pulse-red {
      0%, 100% { box-shadow: 0 0 0 0 rgba(220,60,60,0.4); }
      50% { box-shadow: 0 0 0 6px rgba(220,60,60,0); }
    }
    .price-anchor {
      display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px;
    }
    .price-strike {
      font-size: 1.1rem; color: rgba(245,240,232,0.35);
      text-decoration: line-through; font-family: 'Cormorant Garamond', serif;
    }
    .price-discount-tag {
      font-size: 0.65rem; background: rgba(201,169,110,0.2);
      color: var(--gold); border-radius: 2px; padding: 2px 8px; letter-spacing: 0.1em; text-transform: uppercase;
    }

    /* ══════════════════════════════════════════
       TESTIMONIALS
    ══════════════════════════════════════════ */
    /* ══════════════════════════════════════════
       TESTIMONIALS CAROUSEL
    ══════════════════════════════════════════ */
    #testimonials { background: var(--ivory-dark); }
    #testimonials .section-head { text-align: center; margin-bottom: 60px; }
    #testimonials .section-head .label { color: var(--green-deep); }
    #testimonials .section-head h2 { color: var(--green-deep); }
    #testimonials .section-head h2 em { font-style: italic; color: var(--gold); }

    /* Carousel wrapper */
    .testi-carousel-outer { position: relative; }
    .testi-carousel-track-wrap { overflow: hidden; }
    .testi-carousel-track {
      display: flex; gap: 28px;
      transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      will-change: transform;
    }
    .testi-card {
      background: linear-gradient(158deg, #ffffff 0%, #fdfbf7 100%);
      border-radius: 18px; padding: 40px 34px 32px;
      box-shadow: 0 2px 20px rgba(13,35,24,0.06), 0 0 0 1px rgba(201,169,110,0.1);
      transition: transform 0.35s ease, box-shadow 0.35s ease;
      flex: 0 0 calc((100% - 56px) / 3);
      min-width: 0; position: relative; overflow: hidden;
    }
    .testi-card::after { content: none; }
    .testi-card:hover {
      transform: translateY(-7px);
      box-shadow: 0 16px 48px rgba(13,35,24,0.13), 0 0 0 1px rgba(201,169,110,0.22);
    }
    .testi-stars { color: var(--gold); font-size: 0.95rem; letter-spacing: 2px; margin-top: 14px; margin-bottom: 18px; }
    .testi-text {
      font-size: 0.92rem; line-height: 1.85; color: var(--text-muted);
      margin-bottom: 28px; font-style: italic; position: relative;
    }
    .testi-author { display: flex; align-items: center; gap: 14px; }
    .testi-avatar {
      width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.15rem; font-weight: 600;
      box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    }
    .testi-name { font-weight: 600; font-size: 0.87rem; color: var(--text); letter-spacing: 0.01em; }
    .testi-meta { font-size: 0.7rem; color: var(--text-muted); margin-top: 3px; opacity: 0.7; }

    /* Navigation arrows */
    .testi-nav {
      display: flex; align-items: center; justify-content: center; gap: 12px;
      margin-top: 40px;
    }
    .testi-arrow {
      width: 44px; height: 44px; border-radius: 50%;
      border: 1px solid var(--ivory-dark); background: var(--white);
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; transition: all 0.25s; color: var(--green-deep);
      box-shadow: var(--shadow-sm); flex-shrink: 0;
    }
    .testi-arrow svg { width: 18px; height: 18px; }
    .testi-arrow:hover { border-color: var(--gold); color: var(--gold); box-shadow: var(--shadow-md); }
    .testi-arrow:disabled { opacity: 0.3; cursor: default; pointer-events: none; }
    .testi-dots { display: flex; gap: 6px; align-items: center; }
    .testi-dot {
      width: 22px; height: 4px; border-radius: 2px;
      background: var(--ivory-dark); border: none;
      cursor: pointer; transition: all 0.3s ease;
    }
    .testi-dot.active { background: var(--gold); width: 36px; }

    /* Kart üst satır: yıldızlar + platform */
    .testi-card-top {
      display: flex; align-items: center; justify-content: space-between;
      margin-bottom: 18px;
    }
    .testi-card-top .testi-stars { margin: 0; }
    .testi-platform {
      display: flex; align-items: center; gap: 5px;
      font-size: 0.65rem; letter-spacing: 0.08em; color: var(--text-muted);
      opacity: 0.85;
    }
    .testi-platform svg { width: 14px; height: 14px; flex-shrink: 0; }

    /* Verified badge */
    .testi-verified {
      display: inline-flex; align-items: center; justify-content: center;
      width: 14px; height: 14px; border-radius: 50%;
      background: #34A853; color: #fff;
      font-size: 0.55rem; font-style: normal; margin-left: 5px;
      vertical-align: middle; flex-shrink: 0;
    }

    /* Aggregate score */
    .testi-aggregate-wrap {
      display: flex; justify-content: center; margin-top: 52px;
    }
    .testi-aggregate {
      display: flex; align-items: center; gap: 28px;
      padding: 32px 48px;
      background: linear-gradient(135deg, var(--green-deep) 0%, #2C5F4A 100%);
      border-radius: 18px;
      box-shadow: 0 8px 40px rgba(13,35,24,0.22);
      width: fit-content; max-width: 480px;
    }
    .testi-score {
      font-family: 'Cormorant Garamond', serif; font-size: 4rem;
      color: var(--gold); line-height: 1; font-weight: 300;
    }
    .testi-agg-divider { display: none; }
    .testi-agg-text .testi-stars { margin-bottom: 6px; font-size: 1.05rem; }
    .testi-agg-text p { font-size: 0.75rem; color: rgba(245,240,232,0.65); line-height: 1.6; }
    .testi-agg-source {
      display: flex; align-items: center; justify-content: flex-start; gap: 5px; margin-top: 10px;
      font-size: 0.65rem; letter-spacing: 0.06em; color: rgba(245,240,232,0.45); opacity: 1;
    }
    .testi-agg-source svg { width: 13px; height: 13px; }

    /* Mobile: 3 kart statik grid, carousel gizli */
    @media (max-width: 768px) {
      .testi-carousel-outer { display: none; }
      .testi-mobile-grid {
        display: grid; grid-template-columns: 1fr; gap: 20px;
      }
      .testi-mobile-grid .testi-card {
        flex: none; /* grid modunda flex sıfırla */
      }
      .testi-agg-source { justify-content: center; }
    }
    @media (min-width: 769px) {
      .testi-mobile-grid { display: none; }
    }

    /* ══════════════════════════════════════════
       URGENCY STRIP (fiyatlar üstü)
    ══════════════════════════════════════════ */
    .urgency-strip {
      background: rgba(201,169,110,0.1); border: 1px solid rgba(201,169,110,0.25);
      border-radius: var(--radius); padding: 14px 24px; margin-bottom: 48px;
      text-align: center; font-size: 0.85rem; color: var(--gold-light);
    }
    .urgency-strip strong { color: var(--gold); }

    /* ══════════════════════════════════════════
       VIRTUAL TOUR OVERLAY
    ══════════════════════════════════════════ */
    #tourOverlay {
      position: fixed; inset: 0; z-index: 3000;
      background: rgba(0,0,0,0.96);
      display: flex; flex-direction: column;
      opacity: 0; pointer-events: none;
      transition: opacity 0.35s ease;
    }
    #tourOverlay.open { opacity: 1; pointer-events: all; }
    .tour-overlay-bar {
      display: flex; align-items: center; justify-content: space-between;
      padding: 14px 24px; flex-shrink: 0;
      border-bottom: 1px solid rgba(201,169,110,0.15);
    }
    .tour-overlay-title {
      font-family: 'Cormorant Garamond', serif;
      color: var(--ivory); font-size: 1.1rem; letter-spacing: 0.08em;
    }
    .tour-overlay-title span { color: var(--gold); }
    .tour-overlay-head { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
    .tour-switch-link {
      background: none; border: 0; padding: 0; cursor: pointer; text-align: left;
      font-family: 'Inter', sans-serif; font-size: 0.66rem; letter-spacing: 0.03em; line-height: 1.4;
      color: rgba(255,255,255,0.8);
      border-bottom: 1px solid rgba(201,169,110,0.55);
      align-self: flex-start;
      transition: color 0.25s, border-color 0.25s;
    }
    .tour-switch-link:hover { color: var(--gold); border-color: var(--gold); }
    .tour-close-btn {
      width: 40px; height: 40px; border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.2); background: none;
      color: var(--white); font-size: 1.1rem; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: border-color 0.25s, background 0.25s;
    }
    .tour-close-btn:hover { border-color: var(--gold); background: rgba(201,169,110,0.1); }
    .tour-iframe-wrap {
      flex: 1; position: relative;
    }
    .tour-iframe-wrap iframe {
      width: 100%; height: 100%; border: 0; display: block;
    }
    .tour-loading {
      position: absolute; inset: 0;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      gap: 16px; color: rgba(255,255,255,0.5); font-size: 0.85rem; letter-spacing: 0.1em;
      pointer-events: none;
    }
    .tour-spinner {
      width: 36px; height: 36px; border: 2px solid rgba(201,169,110,0.2);
      border-top-color: var(--gold); border-radius: 50%;
      animation: spin 0.8s linear infinite;
    }
    @keyframes spin { to { transform: rotate(360deg); } }

    /* ══════════════════════════════════════════
       FOOTER CTA BAND
    ══════════════════════════════════════════ */
    .footer-cta-band {
      background: var(--green-deep); padding: 64px 0;
      text-align: center; border-bottom: 1px solid rgba(201,169,110,0.15);
    }
    .footer-cta-band h2 { color: var(--ivory); margin-bottom: 12px; font-size: clamp(1.8rem, 3vw, 2.8rem); }
    .footer-cta-band p { color: rgba(245,240,232,0.6); margin-bottom: 32px; font-size: 0.95rem; }
    .footer-cta-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
    /* ── GO TO TOP ── */
    /* ── SES BUTONU ── */
    /* ── ORTAM SESİ WİDGET'I ── */
    .sound-widget {
      position: fixed; bottom: 24px; left: 24px; z-index: 990;
      display: flex; flex-direction: column; align-items: flex-start; gap: 8px;
    }
    /* Panel — varsayılan gizli, yukarı kayarak açılır */
    .sound-panel {
      background: rgba(30,58,47,0.96);
      border: 1px solid rgba(201,169,110,0.2);
      border-radius: 12px; padding: 6px;
      display: flex; flex-direction: column; gap: 2px;
      opacity: 0; transform: translateY(6px); pointer-events: none;
      transition: opacity 0.22s ease, transform 0.22s ease;
      backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
      box-shadow: 0 8px 32px rgba(0,0,0,0.3);
      visibility: hidden;
    }
    .sound-widget.open .sound-panel {
      opacity: 1; transform: translateY(0); pointer-events: all;
      visibility: visible;
    }
    /* Panel içi seçenekler */
    .sound-option {
      display: flex; align-items: center; gap: 10px;
      padding: 10px 16px; border-radius: 8px;
      background: none; border: none; cursor: pointer;
      color: rgba(245,240,232,0.55);
      font-family: inherit; font-size: 0.68rem;
      letter-spacing: 0.13em; text-transform: uppercase;
      transition: color 0.2s ease, background 0.2s ease;
      white-space: nowrap; position: relative;
    }
    .sound-option svg { width: 15px; height: 15px; flex-shrink: 0; }
    .sound-option:hover { color: var(--gold-light); background: rgba(201,169,110,0.07); }
    .sound-option.active { color: var(--gold); }
    .sound-option.active::before {
      content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
      width: 2px; height: 18px; background: var(--gold); border-radius: 0 1px 1px 0;
    }
    /* Ana toggle butonu */
    .sound-toggle {
      width: 56px; height: 56px; border-radius: 50%;
      background: #0F3D3E; border: 1px solid rgba(201,169,110,0.35);
      color: var(--gold); display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
      box-shadow: 0 5px 22px rgba(0,0,0,0.25);
    }
    .sound-toggle svg { width: 24px; height: 24px; }
    .sound-toggle:hover { transform: translateY(-3px); border-color: rgba(201,169,110,0.7); box-shadow: 0 6px 24px rgba(0,0,0,0.3); }
    /* Durum bazlı ikon görünürlüğü */
    .sound-widget .si-silent { display: block; }
    .sound-widget .si-sea    { display: none; }
    .sound-widget .si-bird   { display: none; }
    .sound-widget[data-state="sea"]  .si-silent { display: none; }
    .sound-widget[data-state="sea"]  .si-sea    { display: block; }
    .sound-widget[data-state="bird"] .si-silent { display: none; }
    .sound-widget[data-state="bird"] .si-bird   { display: block; }
    /* Çalışırken pulse */
    @keyframes soundPulse {
      0%,100% { box-shadow: 0 5px 22px rgba(0,0,0,0.25), 0 0 0 0 rgba(201,169,110,0); }
      50%     { box-shadow: 0 5px 22px rgba(0,0,0,0.25), 0 0 0 7px rgba(201,169,110,0.14); }
    }
    .sound-widget[data-state="sea"]  .sound-toggle,
    .sound-widget[data-state="bird"] .sound-toggle {
      border-color: rgba(201,169,110,0.5);
      animation: soundPulse 3s ease-in-out infinite;
    }
    /* Toggle sarıcı */
    .sound-toggle-wrap { position: relative; display: flex; align-items: center; }
    /* Hover ipucu (sessizken) */
    .sound-hint {
      position: absolute; left: 66px; top: 50%; transform: translateY(-50%);
      background: rgba(18,36,28,0.92); border: 1px solid rgba(201,169,110,0.18);
      border-radius: 20px; padding: 4px 13px;
      color: rgba(245,240,232,0.6); font-size: 0.63rem; letter-spacing: 0.12em; text-transform: uppercase;
      white-space: nowrap; pointer-events: none;
      opacity: 0; transition: opacity 0.2s ease; backdrop-filter: blur(8px);
    }
    .sound-widget[data-state="silent"] .sound-toggle-wrap:hover .sound-hint { opacity: 1; }
    /* Alt satır (bar + toggle) */
    .sound-bottom-row { display: flex; align-items: flex-end; }
    /* Dikey ses barı */
    .sound-vol-wrap {
      width: 0; height: 0; overflow: hidden;
      display: flex; align-items: center; justify-content: center;
      opacity: 0; transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease, margin-right 0.3s ease;
      pointer-events: none; margin-right: 0;
    }
    .sound-widget[data-state="sea"] .sound-vol-wrap,
    .sound-widget[data-state="bird"] .sound-vol-wrap {
      width: 20px; height: 68px; opacity: 1; pointer-events: all; margin-right: 6px;
    }
    .sound-vol {
      -webkit-appearance: none; appearance: none;
      width: 62px; height: 3px;
      transform: rotate(-90deg);
      background: linear-gradient(to right, var(--gold) 50%, rgba(201,169,110,0.18) 50%);
      border-radius: 2px; outline: none; cursor: pointer; border: none;
    }
    .sound-vol::-webkit-slider-thumb {
      -webkit-appearance: none;
      width: 11px; height: 11px; border-radius: 50%;
      background: var(--gold); cursor: pointer;
      box-shadow: 0 1px 5px rgba(0,0,0,0.45);
      transition: transform 0.15s ease;
    }
    .sound-vol::-webkit-slider-thumb:hover { transform: scale(1.3); }
    .sound-vol::-moz-range-thumb {
      width: 11px; height: 11px; border-radius: 50%;
      background: var(--gold); border: none; cursor: pointer;
    }
    .sound-vol::-moz-range-track { background: rgba(201,169,110,0.18); height: 3px; border-radius: 2px; }
    /* Panel başlığı */
    .sound-panel-header {
      padding: 7px 14px 6px; margin-bottom: 2px;
      font-size: 0.58rem; letter-spacing: 0.16em; text-transform: uppercase;
      color: rgba(201,169,110,0.38);
      border-bottom: 1px solid rgba(201,169,110,0.08);
    }
    /* EQ bar animasyonu */
    @keyframes eqBar1 { 0%,100%{height:3px} 50%{height:11px} }
    @keyframes eqBar2 { 0%,100%{height:8px} 33%{height:3px} 66%{height:12px} }
    @keyframes eqBar3 { 0%,100%{height:10px} 40%{height:4px} }
    .sound-eq {
      display: flex; align-items: flex-end; gap: 2px;
      height: 13px; margin-left: auto; flex-shrink: 0;
      opacity: 0; transition: opacity 0.25s ease;
    }
    .sound-eq span { display: block; width: 2px; border-radius: 1px; background: var(--gold); }
    .sound-eq span:nth-child(1) { height: 3px; }
    .sound-eq span:nth-child(2) { height: 8px; }
    .sound-eq span:nth-child(3) { height: 10px; }
    .sound-option.active .sound-eq { opacity: 1; }
    .sound-option.active .sound-eq span:nth-child(1) { animation: eqBar1 0.9s ease-in-out infinite; }
    .sound-option.active .sound-eq span:nth-child(2) { animation: eqBar2 1.1s ease-in-out infinite; }
    .sound-option.active .sound-eq span:nth-child(3) { animation: eqBar3 0.8s ease-in-out infinite; }

    /* ── Go to Top ── */
    /* Devre dışı: yukarı-çık işlevi artık tüm cihazlarda alt-orta ok
       (scroll-top.js) ile sağlanıyor. Sağ-alt köşe sohbet balonuna ait. */
    #goTop { display: none !important; }
    #goTop--disabled {
      position: fixed; bottom: 32px; right: 32px; z-index: 900;
      width: 44px; height: 44px;
      background: var(--green-deep);
      border: 1px solid rgba(201,169,110,0.35);
      border-radius: 50%;
      color: var(--gold);
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      opacity: 0; visibility: hidden; transform: translateY(12px);
      transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background 0.2s;
      box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    }
    #goTop.visible { opacity: 1; visibility: visible; transform: translateY(0); }
    #goTop:hover { background: var(--green-mid); transform: translateY(-2px); }

    /* ── İletişim Butonu: WhatsApp ↔ Telefon (Yalnızca Mobil) ── */
    #contactFab { display: none; }

    @media (max-width: 768px) {
      #goTop { display: none !important; }
      .sound-widget { bottom: 16px; left: 16px; }

      /* Konteyner: sabit konum + 3B perspektif (flip animasyonu için) */
      #contactFab {
        display: none;
        position: fixed; bottom: 16px; right: 16px; z-index: 900;
        width: 44px; height: 44px;
        perspective: 640px;
        -webkit-tap-highlight-color: transparent;
      }

      /* İki yüz üst üste; aktif olan görünür/tıklanabilir */
      .cfab-face {
        position: absolute; inset: 0;
        display: flex; align-items: center; justify-content: center;
        border-radius: 50%;
        text-decoration: none;
        box-shadow: 0 4px 20px rgba(0,0,0,0.2);
        transition: opacity .5s ease, transform .5s ease, visibility .5s;
        will-change: opacity, transform;
      }
      .cfab-wa  { background: var(--green-deep); color: var(--gold); border: 1px solid rgba(201,169,110,0.35); }
      .cfab-tel { background: var(--gold);       color: var(--green-deep); border: 1px solid rgba(201,169,110,0.55); }

      /* Aktif olmayan yüz tıklanamaz olsun */
      #contactFab[data-active="wa"]  .cfab-tel,
      #contactFab[data-active="tel"] .cfab-wa { pointer-events: none; }

      footer { padding-bottom: 72px; }

      /* ─────────────────────────────────────────────
         GEÇİŞ ANİMASYONLARI — konteynerin class'ını değiştirerek seç:
         anim-flip · anim-fade · anim-slide · anim-zoom · anim-flip-v
         ───────────────────────────────────────────── */

      /* 1) FLIP (yatay çevirme — madeni para etkisi) [VARSAYILAN] */
      .anim-flip .cfab-face { backface-visibility: hidden; -webkit-backface-visibility: hidden; }
      .anim-flip .cfab-wa  { transform: rotateY(0deg); }
      .anim-flip .cfab-tel { transform: rotateY(-180deg); }
      .anim-flip[data-active="tel"] .cfab-wa  { transform: rotateY(180deg); }
      .anim-flip[data-active="tel"] .cfab-tel { transform: rotateY(0deg); }

      /* 2) FADE (yumuşak çapraz geçiş) */
      .anim-fade .cfab-tel { opacity: 0; }
      .anim-fade[data-active="tel"] .cfab-wa  { opacity: 0; }
      .anim-fade[data-active="tel"] .cfab-tel { opacity: 1; }

      /* 3) SLIDE (aşağıdan yukarı kayma) */
      .anim-slide { overflow: hidden; border-radius: 50%; }
      .anim-slide .cfab-tel { transform: translateY(100%); }
      .anim-slide[data-active="tel"] .cfab-wa  { transform: translateY(-100%); }
      .anim-slide[data-active="tel"] .cfab-tel { transform: translateY(0); }

      /* 4) ZOOM (küçülüp büyüyerek geçiş) */
      .anim-zoom .cfab-tel { opacity: 0; transform: scale(0.4); }
      .anim-zoom[data-active="tel"] .cfab-wa  { opacity: 0; transform: scale(0.4); }
      .anim-zoom[data-active="tel"] .cfab-tel { opacity: 1; transform: scale(1); }

      /* 5) FLIP-V (dikey çevirme) */
      .anim-flip-v .cfab-face { backface-visibility: hidden; -webkit-backface-visibility: hidden; }
      .anim-flip-v .cfab-wa  { transform: rotateX(0deg); }
      .anim-flip-v .cfab-tel { transform: rotateX(-180deg); }
      .anim-flip-v[data-active="tel"] .cfab-wa  { transform: rotateX(180deg); }
      .anim-flip-v[data-active="tel"] .cfab-tel { transform: rotateX(0deg); }
    }

    /* Hareket azaltma tercihi: animasyonları kapat */
    @media (max-width: 768px) and (prefers-reduced-motion: reduce) {
      .cfab-face { transition: opacity .2s ease; transform: none !important; }
    }

