@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ============================================
   DOĞANIN SESİ — V3 DESIGN SYSTEM
   ============================================ */

:root {
  /* Primary Palette */
  --emerald: #0d4d2b;
  --emerald-dark: #082e1a;
  --sage: #8ab17d;
  --sage-light: #b5d4ab;
  --amber: #d4a843;
  --amber-light: #e8c96e;
  --forest: #0d4d2b;
  --forest-dark: #072e19;
  --forest-light: #166e3f;

  /* Neutrals */
  --snow: #fafaf7;
  --cream: #f4f1eb;
  --charcoal: #1e2a21;
  --text-body: #3d4a40;
  --text-muted: #7a8a7e;

  /* Glass & Borders */
  --glass-bg: rgba(255, 255, 255, 0.82);
  --glass-border: rgba(255, 255, 255, 0.45);
  --border-light: rgba(13, 77, 43, 0.08);

  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(13, 77, 43, 0.04);
  --shadow-md: 0 12px 32px rgba(13, 77, 43, 0.06);
  --shadow-lg: 0 24px 64px rgba(13, 77, 43, 0.1);
  --shadow-glow: 0 0 40px rgba(138, 177, 125, 0.15);

  /* Typography */
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  /* Motion */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --duration: 0.5s;
}

/* ── Global Reset ── */
*, *::before, *::after { box-sizing: border-box; }

html, body, main {
  overflow-x: hidden !important;
  max-width: 100% !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

body {
  font-family: var(--font-body) !important;
  background: var(--snow) !important;
  color: var(--text-body) !important;
  line-height: 1.75;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6,
.display-title, .section-title {
  font-family: var(--font-display) !important;
  color: var(--charcoal) !important;
  font-weight: 400 !important;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

a {
  color: var(--emerald);
  text-decoration: none !important;
  transition: color var(--duration) var(--ease-out-expo);
}
a:hover { color: var(--sage); }

.container { max-width: 1200px !important; }

/* ── Floating Navbar ── */
.v3-navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s var(--ease-out-expo);
}
.v3-navbar.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
  padding: 8px 0;
}
.v3-navbar .navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.v3-navbar .nav-logo img {
  height: 160px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.25));
  transition: all 0.3s var(--ease-out-expo);
}
.v3-navbar.scrolled .nav-logo img {
  height: 110px;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.1));
}

.v3-navbar .nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0; padding: 0;
}
.v3-navbar .nav-links a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 10px;
  transition: all 0.3s var(--ease-out-expo);
}
.v3-navbar.scrolled .nav-links a { color: var(--charcoal); }
.v3-navbar .nav-links a:hover {
  background: rgba(255,255,255,0.15);
}
.v3-navbar.scrolled .nav-links a:hover {
  background: rgba(13, 77, 43, 0.06);
  color: var(--emerald);
}
.v3-navbar .nav-cta {
  background: var(--amber) !important;
  color: #fff !important;
  font-weight: 700 !important;
  border-radius: 50px !important;
  padding: 10px 24px !important;
  border: none;
}
.v3-navbar .nav-cta:hover {
  background: var(--amber-light) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 168, 67, 0.3);
}

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  background: none; border: none;
  cursor: pointer; padding: 8px;
  z-index: 2001;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: #fff; margin: 5px 0;
  transition: all 0.3s ease;
}
.v3-navbar.scrolled .nav-hamburger span { background: var(--charcoal); }

/* Hamburger Open Animation */
.nav-hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Dropdown */
.v3-dropdown { position: relative; }
.v3-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  padding: 10px;
  min-width: 220px;
  z-index: 100;
}
.v3-dropdown:hover .v3-dropdown-menu { display: block; }
.v3-dropdown-menu a {
  display: block;
  padding: 10px 16px;
  color: var(--text-body) !important;
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: 10px;
  transition: all 0.2s ease;
}
.v3-dropdown-menu a:hover {
  background: rgba(13, 77, 43, 0.06);
  color: var(--emerald) !important;
  transform: translateX(4px);
}

/* ── Cinematic Hero ── */
.v3-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--emerald-dark);
}
.v3-hero-bg {
  position: absolute;
  inset: 0;
  background: url('/resimler/bg-orta.jpg') center/cover no-repeat;
  filter: brightness(0.45);
  transform: scale(1.05);
  transition: transform 10s linear;
}
.v3-hero:hover .v3-hero-bg { transform: scale(1.12); }
.v3-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,46,26,0.6) 0%, rgba(13,77,43,0.85) 100%);
}
.v3-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  padding: 0 24px;
}
.v3-hero-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  border: 1px solid rgba(212, 168, 67, 0.4);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
}
.v3-hero-title {
  font-family: var(--font-display) !important;
  font-size: 4.5rem !important;
  color: #ffffff !important;
  line-height: 1.1 !important;
  margin-bottom: 24px;
}
.v3-hero-title em {
  color: var(--sage-light);
  font-style: italic;
}
.v3-hero-desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto 40px;
  font-weight: 400;
}
.v3-hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.v3-hero-actions .btn-hero-primary {
  background: var(--amber); color: #fff;
  font-weight: 700; font-size: 1rem;
  padding: 16px 36px; border-radius: 50px;
  border: none; cursor: pointer;
  transition: all 0.3s var(--ease-out-expo);
  box-shadow: 0 8px 24px rgba(212,168,67,0.3);
}
.v3-hero-actions .btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(212,168,67,0.4);
}
.v3-hero-actions .btn-hero-ghost {
  background: transparent; color: #fff;
  font-weight: 600; font-size: 1rem;
  padding: 16px 36px; border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.3s var(--ease-out-expo);
}
.v3-hero-actions .btn-hero-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}

/* Hero wave divider */
.v3-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  z-index: 3;
}
.v3-wave svg { display: block; width: 100%; height: auto; }

/* Scroll indicator */
.v3-scroll-indicator {
  position: absolute;
  bottom: 80px; left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.v3-scroll-indicator .scroll-dot {
  width: 24px; height: 40px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  position: relative;
}
.v3-scroll-indicator .scroll-dot::after {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 8px;
  background: var(--amber);
  border-radius: 2px;
  animation: scrollBounce 2s infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(12px); opacity: 0.3; }
}

/* ── Weather Widget ── */
.v3-weather {
  position: absolute;
  top: 100px; right: 40px;
  z-index: 5;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 20px 24px;
  color: #fff;
  min-width: 180px;
}
.v3-weather-temp {
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 1;
}
.v3-weather-label {
  font-size: 0.75rem;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.v3-weather-loc {
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 4px;
}

/* ── Stats Counter Section ── */
.v3-stats {
  padding: 80px 0;
  background: var(--snow);
}
.v3-stat-item {
  text-align: center;
  padding: 32px 16px;
}
.v3-stat-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--emerald);
  line-height: 1;
  margin-bottom: 8px;
}
.v3-stat-label {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.v3-stat-icon {
  font-size: 1.8rem;
  color: var(--sage);
  margin-bottom: 16px;
}

/* ── Section Header ── */
.v3-section-header {
  text-align: center;
  margin-bottom: 60px;
}
.v3-section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}
.v3-section-title {
  font-family: var(--font-display) !important;
  font-size: 2.8rem;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.v3-section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ── Bungalov Gallery ── */
.v3-gallery-main {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.v3-gallery-main img {
  width: 100%; height: 420px;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}
.v3-gallery-main:hover img { transform: scale(1.03); }
.v3-gallery-thumbs {
  display: flex; gap: 12px;
  margin-top: 16px; justify-content: center;
}
.v3-gallery-thumbs img {
  width: 80px; height: 60px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  border: 3px solid transparent;
  transition: all 0.3s ease;
  opacity: 0.6;
}
.v3-gallery-thumbs img:hover,
.v3-gallery-thumbs img.active {
  border-color: var(--emerald);
  opacity: 1;
  transform: translateY(-3px);
}

/* ── Experience Cards ── */
.v3-exp-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 380px;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all 0.5s var(--ease-out-expo);
}
.v3-exp-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.v3-exp-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}
.v3-exp-card:hover img { transform: scale(1.08); }
.v3-exp-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(8,46,26,0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: all 0.4s ease;
}
.v3-exp-card:hover .v3-exp-overlay {
  background: linear-gradient(180deg, transparent 20%, rgba(8,46,26,0.95) 100%);
}
.v3-exp-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #fff !important;
  margin-bottom: 8px;
}
.v3-exp-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  max-height: 0; overflow: hidden;
  transition: max-height 0.5s var(--ease-out-expo);
}
.v3-exp-card:hover .v3-exp-desc { max-height: 100px; }

/* ── Testimonials ── */
.v3-testimonial-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 36px;
  transition: all 0.4s var(--ease-out-expo);
  height: 100%;
}
.v3-testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--sage);
}
.v3-testimonial-stars { color: var(--amber); margin-bottom: 16px; font-size: 0.9rem; }
.v3-testimonial-text {
  font-size: 1rem;
  color: var(--text-body);
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.8;
}
.v3-testimonial-author {
  display: flex; align-items: center; gap: 14px;
}
.v3-testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--emerald);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem;
}
.v3-testimonial-name {
  font-weight: 700;
  color: var(--charcoal);
  font-size: 0.95rem;
}
.v3-testimonial-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── Timeline / Events ── */
.v3-timeline {
  position: relative;
  padding-left: 40px;
}
.v3-timeline::before {
  content: '';
  position: absolute;
  left: 15px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--sage), var(--amber));
  border-radius: 1px;
}
.v3-timeline-item {
  position: relative;
  margin-bottom: 40px;
  padding-left: 30px;
}
.v3-timeline-dot {
  position: absolute;
  left: -33px; top: 4px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--emerald);
  border: 3px solid var(--snow);
  box-shadow: 0 0 0 3px var(--sage);
}
.v3-timeline-date {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}
.v3-timeline-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.v3-timeline-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── News Cards ── */
.v3-news-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: all 0.4s var(--ease-out-expo);
  height: 100%;
}
.v3-news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.v3-news-img {
  height: 200px;
  overflow: hidden;
}
.v3-news-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out-expo);
}
.v3-news-card:hover .v3-news-img img { transform: scale(1.06); }
.v3-news-body { padding: 24px; }
.v3-news-date {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.v3-news-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--charcoal);
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.v3-news-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--emerald);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.v3-news-link:hover { gap: 10px; }

/* ── FAQ Accordion ── */
.v3-faq-item {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.v3-faq-item:hover { border-color: var(--sage); }
.v3-faq-btn {
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  padding: 20px 24px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--charcoal);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.v3-faq-btn::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--sage);
  transition: transform 0.3s ease;
}
.v3-faq-btn[aria-expanded="true"]::after {
  content: '−';
  color: var(--emerald);
}
.v3-faq-answer {
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.8;
}

/* ── Footer ── */
.v3-footer {
  background: var(--charcoal) !important;
  color: rgba(255,255,255,0.7);
  padding: 80px 0 40px !important;
  margin-top: 0 !important;
  border-radius: 0 !important;
  border-top: none !important;
}
.v3-footer h5, .v3-footer h6 {
  color: #fff !important;
  font-family: var(--font-display) !important;
  margin-bottom: 20px;
}
.v3-footer a {
  color: rgba(255,255,255,0.6) !important;
  transition: all 0.3s ease;
  font-weight: 500;
}
.v3-footer a:hover {
  color: var(--amber) !important;
  transform: translateX(3px);
}
.v3-footer-links li {
  margin-bottom: 12px;
  list-style: none;
}
.v3-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 50px;
  padding-top: 30px;
  font-size: 0.85rem;
}

/* ── Buttons ── */
.btn-v3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-out-expo);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-v3-primary {
  background: var(--emerald);
  color: #fff;
  box-shadow: 0 8px 20px rgba(13, 77, 43, 0.2);
}
.btn-v3-primary:hover {
  background: var(--sage);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(138, 177, 125, 0.3);
}
.btn-v3-amber {
  background: var(--amber);
  color: #fff;
  box-shadow: 0 8px 20px rgba(212, 168, 67, 0.25);
}
.btn-v3-amber:hover {
  background: var(--amber-light);
  transform: translateY(-2px);
}
.btn-v3-ghost {
  background: transparent;
  color: var(--emerald);
  border: 2px solid var(--emerald);
}
.btn-v3-ghost:hover {
  background: var(--emerald);
  color: #fff;
}

/* ── WhatsApp FAB ── */
.v3-whatsapp {
  position: fixed;
  bottom: 28px; left: 28px;
  z-index: 998;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.6rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  transition: all 0.3s var(--ease-out-expo);
  border: none;
  cursor: pointer;
}
.v3-whatsapp:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45);
}

/* ── Quick Reservation FAB ── */
.v3-rez-fab {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  background: var(--emerald);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 16px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 10px 30px rgba(13, 77, 43, 0.25);
  transition: all 0.3s var(--ease-out-expo);
}
.v3-rez-fab:hover {
  background: var(--sage);
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(138, 177, 125, 0.35);
}

/* ── Parallax Storytelling ── */
.v3-story-section {
  padding: 100px 0;
}
.v3-story-row {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 80px;
}
.v3-story-row.reverse { flex-direction: row-reverse; }
.v3-story-img {
  flex: 1;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.v3-story-img img {
  width: 100%; height: 360px;
  object-fit: cover;
}
.v3-story-text { flex: 1; }
.v3-story-text h3 {
  font-family: var(--font-display) !important;
  font-size: 2rem;
  margin-bottom: 16px;
}
.v3-story-text p {
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.9;
}

/* ── Modal (Reservation) ── */
.modal-content {
  border: none !important;
  border-radius: 24px !important;
  box-shadow: var(--shadow-lg) !important;
  overflow: hidden;
}
.modal-header {
  background: var(--emerald) !important;
  color: #fff !important;
  border: none !important;
  padding: 24px 28px !important;
}
.modal-title {
  font-family: var(--font-display) !important;
  color: #fff !important;
  font-size: 1.3rem !important;
}
.modal-body { padding: 28px !important; }
.modal-body label {
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--charcoal);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.modal-body .form-control, .modal-body .form-select {
  border: 1px solid var(--border-light) !important;
  border-radius: 12px !important;
  padding: 12px 16px !important;
  font-family: var(--font-body);
  transition: all 0.3s ease;
}
.modal-body .form-control:focus, .modal-body .form-select:focus {
  border-color: var(--emerald) !important;
  box-shadow: 0 0 0 3px rgba(13, 77, 43, 0.08) !important;
}
.modal-footer { border: none !important; padding: 16px 28px 24px !important; }
.btn-close { filter: invert(1); }

/* ── Google Maps ── */
.v3-map-container {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 300px;
  margin-bottom: 40px;
}
.v3-map-container iframe {
  width: 100%; height: 100%;
  border: none;
}
.v3-map-container-full {
  width: 100%;
  height: 500px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.v3-map-container-full iframe {
  width: 100% !important;
  height: 100% !important;
  border: none !important;
}
@media (max-width: 768px) {
  .v3-map-container-full {
    height: 350px;
  }
}

/* ── Reveal on Scroll ── */
.v3-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s var(--ease-out-expo);
}
.v3-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Mobile Menu Panel ── */
.v3-mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: 320px; max-width: 85vw;
  height: 100vh;
  background: var(--charcoal);
  z-index: 2000;
  padding: 80px 32px 40px;
  transition: right 0.5s var(--ease-out-expo);
  overflow-y: auto;
  box-shadow: -10px 0 40px rgba(0,0,0,0.3);
}
.v3-mobile-menu.open { right: 0; }
.v3-mobile-menu .mobile-close {
  position: absolute;
  top: 20px; right: 20px;
  background: none; border: none;
  color: rgba(255,255,255,0.6);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.3s ease;
  padding: 8px;
}
.v3-mobile-menu .mobile-close:hover { color: #fff; }
.v3-mobile-menu ul {
  list-style: none;
  padding: 0; margin: 0;
}
.v3-mobile-menu ul li {
  margin-bottom: 4px;
}
.v3-mobile-menu ul li a {
  display: block;
  color: rgba(255,255,255,0.8) !important;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
  padding: 14px 16px;
  border-radius: 12px;
  transition: all 0.3s ease;
}
.v3-mobile-menu ul li a:hover {
  background: rgba(255,255,255,0.08);
  color: var(--amber) !important;
  transform: translateX(6px);
}
.v3-mobile-menu .mobile-cta {
  display: block;
  background: var(--amber);
  color: #fff !important;
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  padding: 16px;
  border-radius: 50px;
  margin-top: 24px;
  transition: all 0.3s ease;
}
.v3-mobile-menu .mobile-cta:hover {
  background: var(--amber-light);
  transform: translateY(-2px);
}
.v3-mobile-menu .mobile-dropdown-items {
  padding-left: 16px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out-expo);
}
.v3-mobile-menu .mobile-dropdown-items.open {
  max-height: 300px;
}
.v3-mobile-menu .mobile-dropdown-items a {
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55) !important;
  padding: 10px 16px;
}
.v3-mobile-menu .mobile-dropdown-items a:hover {
  color: var(--sage-light) !important;
}
.v3-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.v3-mobile-overlay.visible {
  opacity: 1;
  visibility: visible;
}

/* Hamburger animation */
.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);
}

/* ── Experience Grid (V3) ── */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.experience-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: all 0.5s var(--ease-out-expo);
  height: 100%;
}
.experience-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--sage);
}
.experience-img-container {
  height: 220px;
  overflow: hidden;
}
.experience-img-container img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}
.experience-card:hover .experience-img-container img {
  transform: scale(1.08);
}
.experience-info {
  padding: 24px;
  text-align: center;
}
.experience-title {
  font-family: var(--font-display) !important;
  font-size: 1.2rem;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.experience-info .wave {
  width: 60px;
  opacity: 0.5;
}

/* ── News Grid (V3) ── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.news-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: all 0.5s var(--ease-out-expo);
  height: 100%;
}
.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.news-img {
  height: 200px;
  overflow: hidden;
}
.news-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out-expo);
}
.news-card:hover .news-img img {
  transform: scale(1.06);
}
.news-info {
  padding: 24px;
}
.news-title {
  font-family: var(--font-display) !important;
  font-size: 1.1rem;
  color: var(--charcoal);
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-title a {
  color: var(--charcoal);
  transition: color 0.3s ease;
}
.news-title a:hover {
  color: var(--emerald);
}
.news-date {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 12px;
}
.news-date .gun {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--emerald);
  line-height: 1;
}
.news-date .ay {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── Section helpers ── */
.baslik {
  font-family: var(--font-display) !important;
  color: var(--charcoal) !important;
  font-weight: 400 !important;
}
.font-heading {
  font-family: var(--font-display) !important;
}
.mt-100 { margin-top: 80px; }

/* ── Footer V3 overrides ── */
.footer {
  background: var(--charcoal) !important;
  color: rgba(255,255,255,0.7);
  border-top: none !important;
  border-radius: 0 !important;
}
.footer h5, .footer h6 {
  font-family: var(--font-display) !important;
  color: #fff !important;
}
.footer a {
  color: rgba(255,255,255,0.6) !important;
  transition: all 0.3s ease;
}
.footer a:hover {
  color: var(--amber) !important;
}
.footer .btn-success {
  background: var(--emerald) !important;
  border-color: var(--emerald) !important;
  border-radius: 0 12px 12px 0;
}
.footer .form-control {
  border-radius: 12px 0 0 12px !important;
  border-color: rgba(255,255,255,0.15) !important;
}
.footer .form-control::placeholder {
  color: rgba(255,255,255,0.3);
}

/* ── Breadcrumb Section ── */
.v3-breadcrumb-hero {
  background: linear-gradient(135deg, var(--emerald-dark) 0%, var(--emerald) 100%);
  padding: 140px 0 60px;
  text-align: center;
}
.v3-breadcrumb-hero h1 {
  font-family: var(--font-display) !important;
  color: #fff !important;
  font-size: 2.8rem;
  margin-bottom: 12px;
}
.v3-breadcrumb-hero .breadcrumb {
  justify-content: center;
  background: none;
  margin: 0;
}
.v3-breadcrumb-hero .breadcrumb a {
  color: var(--sage-light);
}
.v3-breadcrumb-hero .breadcrumb-item.active {
  color: rgba(255,255,255,0.6);
}
.v3-breadcrumb-hero .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5) !important;
}

/* ── Loading skeleton ── */
.v3-skeleton {
  background: linear-gradient(90deg, var(--cream) 25%, #e8e5de 50%, var(--cream) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 12px;
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── Page transition ── */
.v3-page-enter {
  animation: pageEnter 0.6s var(--ease-out-expo) both;
}
@keyframes pageEnter {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── General Form Styling (V3) ── */
.v3-form-group {
  margin-bottom: 20px;
}
.v3-form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--charcoal);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.v3-form-control {
  width: 100%;
  border: 1px solid var(--border-light) !important;
  border-radius: 12px !important;
  padding: 12px 16px !important;
  font-family: var(--font-body);
  background-color: #fff;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  color: var(--text-body);
}
.v3-form-control:focus {
  outline: none;
  border-color: var(--emerald) !important;
  box-shadow: 0 0 0 3.5px rgba(13, 77, 43, 0.08) !important;
  background-color: #fff;
}
textarea.v3-form-control {
  min-height: 120px;
  resize: vertical;
}

/* ── Premium Cards & Subpage Layouts ── */
.v3-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 36px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.v3-card:hover {
  box-shadow: var(--shadow-md);
}
.v3-contact-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding: 20px;
  background: var(--cream);
  border-radius: 16px;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}
.v3-contact-box:hover {
  transform: translateY(-2px);
  border-color: var(--sage);
  background: #fff;
}
.v3-contact-box .icon {
  width: 48px;
  height: 48px;
  background: var(--emerald);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.v3-contact-box .text h4 {
  font-family: var(--font-display) !important;
  font-size: 1.15rem;
  margin: 0 0 4px 0;
  color: var(--charcoal);
}
.v3-contact-box .text p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.v3-contact-box .text a {
  color: var(--emerald);
  font-weight: 600;
}

/* ── Isotope Filter Pills ── */
.v3-filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}
.v3-filter-btn {
  background: #fff;
  border: 1px solid var(--border-light);
  color: var(--text-body);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.88rem;
  transition: all 0.3s var(--ease-out-expo);
  cursor: pointer;
  text-decoration: none !important;
}
.v3-filter-btn:hover, .v3-filter-btn.active, .v3-filter-btn.current {
  background: var(--emerald);
  color: #fff !important;
  border-color: var(--emerald);
  box-shadow: 0 4px 12px rgba(13, 77, 43, 0.15);
}

/* ── Isotope Thumb overlay styles ── */
.v3-isotope-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.v3-gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4/3;
  cursor: pointer;
}
.v3-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out-expo);
}
.v3-gallery-item:hover img {
  transform: scale(1.08);
}
.v3-gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 46, 33, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.v3-gallery-item:hover .v3-gallery-overlay {
  opacity: 1;
}
.v3-gallery-overlay i {
  color: #fff;
  font-size: 1.5rem;
  transform: scale(0.8);
  transition: transform 0.3s var(--ease-out-expo);
}
.v3-gallery-item:hover .v3-gallery-overlay i {
  transform: scale(1);
}
.v3-gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 15px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
}

/* ── Sidebar list V3 style ── */
.v3-sidebar-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.v3-sidebar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  color: var(--charcoal);
  font-weight: 600;
  font-size: 0.92rem;
  transition: all 0.3s ease;
  text-decoration: none !important;
}
.v3-sidebar-item:hover, .v3-sidebar-item.active {
  background: rgba(13, 77, 43, 0.05);
  color: var(--emerald);
  border-color: var(--emerald);
  transform: translateX(4px);
}
.v3-sidebar-item i {
  color: var(--sage);
  font-size: 0.75rem;
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

@media (max-width: 992px) {
  .v3-hero-title { font-size: 3rem !important; }
  .v3-weather { display: none; }
  .v3-story-row { flex-direction: column !important; gap: 30px; }
  .v3-story-img img { height: 280px; }
  .v3-section-title { font-size: 2.2rem; }
  .v3-exp-card { height: 300px; }
  .v3-stat-number { font-size: 2.8rem; }
  .experience-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .v3-navbar .nav-logo img { height: 100px !important; }
  .v3-navbar.scrolled .nav-logo img { height: 80px !important; }
  .v3-navbar { padding: 10px 0 !important; }
  .v3-navbar.scrolled { padding: 6px 0 !important; }
  .v3-hero { min-height: 85vh; }
  .v3-hero-title { font-size: 2.4rem !important; }
  .v3-hero-desc { font-size: 1rem; }
  .v3-hero-bg { background-attachment: scroll; }
  .v3-section-title { font-size: 1.8rem; }
  .v3-section-desc { font-size: 0.95rem; }
  .v3-gallery-main img { height: 280px; }
  .v3-gallery-thumbs img { width: 60px; height: 45px; }
  .v3-stat-number { font-size: 2.4rem; }
  .v3-stat-label { font-size: 0.75rem; }
  .v3-exp-card { height: 260px; }
  .v3-story-text h3 { font-size: 1.5rem; }
  .v3-navbar .nav-links { display: none !important; }
  .nav-hamburger { display: block !important; }
  .footer { padding: 50px 0 90px !important; }
  .v3-timeline { padding-left: 30px; }
}

@media (max-width: 576px) {
  .v3-navbar .nav-logo img { height: 85px !important; }
  .v3-navbar.scrolled .nav-logo img { height: 70px !important; }
  .v3-navbar .navbar-inner { padding: 0 16px; }
  .v3-hero { min-height: 75vh; }
  .v3-hero-title { font-size: 1.9rem !important; }
  .v3-hero-desc { font-size: 0.88rem; margin-bottom: 28px; }
  .v3-hero-badge { font-size: 0.65rem; padding: 6px 14px; }
  .v3-hero-actions { flex-direction: column; align-items: center; }
  .v3-hero-actions .btn-hero-primary,
  .v3-hero-actions .btn-hero-ghost {
    width: 100%; text-align: center;
    padding: 14px 24px;
  }
  .v3-scroll-indicator { bottom: 60px; }
  .v3-section-title { font-size: 1.5rem; }
  .v3-gallery-main img { height: 220px; }
  .v3-gallery-thumbs img { width: 50px; height: 38px; border-width: 2px; }
  .v3-exp-card { height: 240px; }
  .v3-exp-title { font-size: 1.2rem; }
  .v3-testimonial-card { padding: 24px; }
  .v3-rez-fab {
    bottom: 16px; right: 16px;
    padding: 12px 20px;
    font-size: 0.8rem;
  }
  .v3-whatsapp {
    bottom: 16px; left: 16px;
    width: 48px; height: 48px;
    font-size: 1.3rem;
  }
  .v3-stat-number { font-size: 2rem; }
  .v3-news-img { height: 160px; }
  .footer { padding: 36px 0 100px !important; }
  .footer .text-muted { color: rgba(255,255,255,0.6) !important; }
  .v3-map-container { height: 220px; border-radius: 16px; }
  .experience-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .experience-img-container { height: 180px; }
  .v3-breadcrumb-hero { padding: 120px 0 40px; }
  .v3-breadcrumb-hero h1 { font-size: 1.8rem; }
}

@media (max-width: 380px) {
  .v3-hero-title { font-size: 1.6rem !important; }
  .v3-hero { min-height: 70vh; }
  .v3-rez-fab { padding: 10px 16px; font-size: 0.75rem; }
}

/* Forest Utility Classes for Frontend Compatibility */
.text-forest {
  color: var(--forest) !important;
}
.bg-forest {
  background-color: var(--forest) !important;
}
.btn-outline-forest {
  color: var(--forest) !important;
  border-color: var(--forest) !important;
  background: transparent;
  transition: all 0.3s ease;
}
.btn-outline-forest:hover {
  background-color: var(--forest) !important;
  color: #fff !important;
}

/* Footer Links Micro-Animations */
.footer-links a {
  transition: all 0.3s ease !important;
}
.footer-links a i {
  transition: transform 0.3s ease !important;
}
.footer-links a:hover {
  transform: translateX(4px);
}

/* ── Google Maps Design Styles (CSS Filters) ── */
.v3-map-style-default iframe {
  filter: none !important;
}
.v3-map-style-forest iframe {
  filter: grayscale(20%) hue-rotate(85deg) saturate(130%) contrast(100%) brightness(95%) !important;
}
.v3-map-style-grayscale iframe {
  filter: grayscale(100%) contrast(110%) brightness(100%) !important;
}
.v3-map-style-dark iframe {
  filter: invert(90%) hue-rotate(180deg) contrast(115%) brightness(95%) !important;
}
.v3-map-style-retro iframe {
  filter: sepia(70%) saturate(120%) contrast(100%) brightness(95%) !important;
}

/* ── Custom V3 Modal Spinner Loader ── */
.v3-spinner-container {
  position: relative;
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.v3-spinner-circle {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 3px solid rgba(255,255,255,0.08);
  border-top-color: var(--emerald, #10a547);
  border-radius: 50%;
  animation: v3-spin 1s linear infinite;
}
.v3-spinner-icon {
  font-size: 1.8rem;
  color: var(--emerald, #10a547) !important;
  animation: v3-pulse 1.5s ease-in-out infinite;
}
@keyframes v3-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes v3-pulse {
  0%, 100% { transform: scale(0.9) rotate(-15deg); opacity: 0.7; }
  50% { transform: scale(1.1) rotate(15deg); opacity: 1; }
}

