/* =============================================
   Samsun Piramit Bungalov — Shared Stylesheet
   ============================================= */

/* ---------- CSS Variables ---------- */
:root {
  --cream: #f4f8f5;
  --warm-white: #ffffff;
  --forest-green: #3a6b4c;
  --forest-green-dark: #2c5239;
  --forest-green-light: #4e8a64;
  --earth-brown: #7a5c3e;
  --earth-brown-light: #a8795a;
  --text-dark: #1e1e1e;
  --text-mid: #4a4a4a;
  --text-light: #7a7a7a;
  --border: #e4ebe6;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.07);
  --shadow-md: 0 6px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.13);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: 0.28s ease;
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  background-color: var(--warm-white);
  color: var(--text-dark);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  color: var(--text-dark);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { color: var(--text-mid); }

.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--forest-green);
  display: block;
  margin-bottom: 0.6rem;
}

/* ---------- Layout Helpers ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 96px 0;
}

.text-center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--forest-green);
  color: #fff;
  border-color: var(--forest-green);
}
.btn-primary:hover {
  background: var(--forest-green-dark);
  border-color: var(--forest-green-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--forest-green);
  border-color: var(--forest-green);
}
.btn-outline:hover {
  background: var(--forest-green);
  color: #fff;
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: var(--forest-green);
  border-color: #fff;
}
.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
}
.btn-whatsapp:hover {
  background: #1fba59;
  border-color: #1fba59;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06), var(--shadow-sm);
}

.navbar.transparent {
  background: transparent;
}

.navbar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--forest-green);
  transition: color var(--transition);
}

.navbar-logo .logo-icon {
  width: 38px;
  height: 38px;
  background: var(--forest-green);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-logo .logo-icon svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}

.navbar.hero-mode .navbar-logo {
  color: #fff;
}

.navbar.hero-mode .logo-icon {
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  transition: color var(--transition), background var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--forest-green);
  background: rgba(58, 107, 76, 0.08);
}

.navbar.hero-mode .nav-links a {
  color: rgba(255,255,255,0.9);
}

.navbar.hero-mode .nav-links a:hover,
.navbar.hero-mode .nav-links a.active {
  color: #fff;
  background: rgba(255,255,255,0.15);
}

.nav-cta {
  margin-left: 8px;
}

.nav-cta a {
  background: var(--forest-green) !important;
  color: #fff !important;
  padding: 10px 20px !important;
}
.nav-cta a:hover {
  background: var(--forest-green-dark) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: transparent;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all var(--transition);
}

.navbar.hero-mode .hamburger span {
  background: #fff;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 76px;
  left: 0;
  right: 0;
  background: var(--warm-white);
  padding: 16px 24px 24px;
  box-shadow: var(--shadow-md);
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}

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

.mobile-menu a {
  font-size: 1rem;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  transition: color var(--transition), background var(--transition);
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--forest-green);
  background: rgba(58, 107, 76, 0.08);
}

.mobile-menu .mobile-cta {
  margin-top: 8px;
  background: var(--forest-green);
  color: #fff !important;
  text-align: center;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('assets/samsun-piramit-bungalov-panoramik-salon.jpg') center center / cover no-repeat;
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20,45,30,0.72) 0%, rgba(44,82,57,0.55) 45%, rgba(58,107,76,0.35) 100%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(20,45,30,0.6) 0%,
    rgba(20,45,30,0.2) 60%,
    transparent 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 120px 24px 80px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-badge .dot {
  width: 7px;
  height: 7px;
  background: #4ade80;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}

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

.hero h1 {
  color: #fff;
  max-width: 680px;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero h1 em {
  font-style: italic;
  color: #a8d5b5;
}

.hero-sub {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  max-width: 500px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-stats {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 24px 60px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-stat {
  color: rgba(255,255,255,0.85);
}

.hero-stat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat span {
  font-size: 0.85rem;
  opacity: 0.75;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* Promo Box */
.promo-box {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
  padding: 12px 24px 12px 12px;
  border-radius: 100px;
  margin-bottom: 32px;
  color: #fff;
  transition: transform var(--transition), background var(--transition);
}

.promo-box:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.2);
}

.promo-icon {
  width: 44px;
  height: 44px;
  background: rgba(252, 211, 77, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fcd34d;
  flex-shrink: 0;
}

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

.promo-text {
  display: flex;
  flex-direction: column;
}

.promo-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #fcd34d;
  margin-bottom: 2px;
}

.promo-price {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.2;
}

.promo-price strong {
  font-weight: 700;
  font-size: 1.3rem;
}

/* ---------- Features Strip ---------- */
.features-strip {
  padding: 0;
  background: var(--warm-white);
  border-bottom: 1px solid var(--border);
}

.features-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.feature-item {
  padding: 32px 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border-right: 1px solid var(--border);
  transition: background var(--transition);
}

.feature-item:last-child {
  border-right: none;
}

.feature-item:hover {
  background: var(--cream);
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(58, 107, 76, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--forest-green);
}

.feature-icon svg {
  width: 22px;
  height: 22px;
}

.feature-text h4 {
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.feature-text p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.4;
}

/* ---------- Section Headings ---------- */
.section-header {
  margin-bottom: 56px;
}

.section-header.centered {
  text-align: center;
}

.section-header p {
  margin-top: 16px;
  font-size: 1.05rem;
  max-width: 560px;
}

.section-header.centered p {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Villa Cards ---------- */
.villas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.villa-card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.villa-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.villa-card-image {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #2c5239 0%, #3a6b4c 50%, #4e8a64 100%);
  position: relative;
  overflow: hidden;
}

.villa-card-image .villa-number {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
}

.villa-card-image .villa-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--earth-brown);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
}

.villa-card-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0,0,0,0.38) 0%, transparent 100%);
}

.villa-card-body {
  padding: 24px;
}

.villa-card-body h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.villa-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.villa-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  color: var(--text-light);
  background: var(--cream);
  padding: 5px 10px;
  border-radius: 100px;
  border: 1px solid var(--border);
}

.villa-meta-item svg {
  width: 13px;
  height: 13px;
  color: var(--forest-green);
  flex-shrink: 0;
}

.villa-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  margin-top: 16px;
}

.villa-price {
  display: flex;
  flex-direction: column;
}

.villa-price strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--forest-green);
  line-height: 1;
}

.villa-price span {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 2px;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, #edf5f0 0%, #f4f9f6 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(58, 107, 76, 0.12);
  border-bottom: 1px solid rgba(58, 107, 76, 0.12);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(58, 107, 76, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner .container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-banner-text h2 {
  color: var(--forest-green-dark);
  margin-bottom: 12px;
}

.cta-banner-text p {
  color: var(--text-mid);
  font-size: 1.05rem;
  max-width: 480px;
}

.cta-banner .btn-white {
  background: transparent;
  color: var(--forest-green);
  border-color: var(--forest-green);
}
.cta-banner .btn-white:hover {
  background: var(--forest-green);
  color: #fff;
  transform: translateY(-2px);
}

.cta-banner-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ---------- Highlight Section ---------- */
.highlight-section {
  background: var(--cream);
}

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

.highlight-image {
  aspect-ratio: 4/3;
  background: url('assets/samsun-piramit-bungalov-genis-salon.jpg') center center / cover no-repeat;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.highlight-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,45,30,0.45) 0%, transparent 55%);
}

.highlight-image .img-label {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 1;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-weight: 500;
}

.highlight-text .section-label {
  margin-bottom: 12px;
}

.highlight-text h2 {
  margin-bottom: 20px;
}

.highlight-text p {
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.75;
}

.highlight-checklist {
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-mid);
}

.checklist-item .check {
  width: 22px;
  height: 22px;
  background: rgba(58, 107, 76, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--forest-green);
}

.checklist-item .check svg {
  width: 12px;
  height: 12px;
}

/* ---------- Testimonials ---------- */
.testimonials {
  background: var(--warm-white);
}

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

.testimonial-card {
  background: var(--warm-white);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  color: #f59e0b;
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}

.author-info strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.author-info span {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ---------- Location Strip ---------- */
.location-strip {
  padding: 48px 0;
  background: var(--warm-white);
  border-top: 1px solid var(--border);
}

.location-strip .container {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.location-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 100px;
  background: var(--cream);
  border: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--text-mid);
}

.location-pill svg {
  width: 16px;
  height: 16px;
  color: var(--forest-green);
  flex-shrink: 0;
}

.location-divider {
  width: 4px;
  height: 4px;
  background: var(--border);
  border-radius: 50%;
}

/* ---------- Footer ---------- */
footer {
  background: #111e17;
  color: rgba(255,255,255,0.75);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .navbar-logo {
  color: #fff;
  margin-bottom: 16px;
}

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 320px;
}

.footer-contact-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-contact-link svg {
  width: 16px;
  height: 16px;
  color: var(--forest-green-light);
  flex-shrink: 0;
}

.footer-contact-link:hover {
  color: #fff;
}

.footer-col h4 {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: #fff;
}

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

.footer-bottom p {
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
}

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  padding: 140px 0 72px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 85% 40%, rgba(58, 107, 76, 0.07) 0%, transparent 65%);
}

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

.page-hero h1 {
  color: var(--text-dark);
  margin-bottom: 16px;
}

.page-hero p {
  color: var(--text-mid);
  font-size: 1.1rem;
  max-width: 540px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 0.85rem;
  color: var(--text-light);
}

.breadcrumb a {
  color: var(--text-light);
  transition: color var(--transition);
}

.breadcrumb a:hover {
  color: var(--forest-green);
}

.breadcrumb svg {
  width: 14px;
  height: 14px;
  opacity: 0.4;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info-card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.contact-info-card h3 {
  margin-bottom: 8px;
}

.contact-info-card > p {
  margin-bottom: 28px;
  font-size: 0.95rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.contact-detail:last-of-type {
  border-bottom: none;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(58, 107, 76, 0.1);
  color: var(--forest-green);
}

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

.contact-detail-text strong {
  display: block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 4px;
}

.contact-detail-text a,
.contact-detail-text p {
  font-size: 0.98rem;
  color: var(--text-dark);
  font-weight: 500;
}

.contact-detail-text a:hover {
  color: var(--forest-green);
}

.contact-form-card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.contact-form-card h3 {
  margin-bottom: 8px;
}

.contact-form-card > p {
  margin-bottom: 28px;
  font-size: 0.95rem;
}

.form-group {
  margin-bottom: 20px;
}

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

label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

input, select, textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text-dark);
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--forest-green);
  box-shadow: 0 0 0 3px rgba(58, 107, 76, 0.12);
  background: #fff;
}

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

textarea {
  resize: vertical;
  min-height: 130px;
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item.tall {
  aspect-ratio: 3/4;
  grid-row: span 2;
}

.gallery-item-bg {
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-item-bg {
  transform: scale(1.05);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20,45,30,0.4);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay svg {
  width: 40px;
  height: 40px;
}

/* ---------- About ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.team-card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  text-align: center;
  padding: 32px 24px;
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.team-card h4 {
  margin-bottom: 4px;
}

.team-card .role {
  font-size: 0.85rem;
  color: var(--forest-green);
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}

.team-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ---------- Stats Section ---------- */
.stats-section {
  background: var(--forest-green);
  padding: 64px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}

.stat-item {
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,0.15);
}

.stat-item:last-child {
  border-right: none;
}

.stat-item strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1;
}

.stat-item p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

/* ---------- Map Placeholder ---------- */
.map-placeholder {
  height: 420px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.map-placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.5;
  color: var(--forest-green);
}

.map-placeholder p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .features-strip .container {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-item:nth-child(2) { border-right: none; }
  .feature-item:nth-child(3) { border-top: 1px solid var(--border); }
  .feature-item:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }

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

  .highlight-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

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

  .footer-brand {
    grid-column: 1 / -1;
  }

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

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

  .stat-item {
    border-right: none;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }

  .stat-item:nth-child(odd) {
    border-right: 1px solid rgba(255,255,255,0.15);
    padding-right: 24px;
  }

  .stat-item:nth-last-child(-n+2) {
    border-bottom: none;
  }
}

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

  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

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

  .hero-content {
    padding: 100px 24px 40px;
  }

  .cta-banner .container {
    flex-direction: column;
    text-align: center;
  }

  .cta-banner-actions {
    justify-content: center;
  }

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

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

  .gallery-item.tall {
    grid-row: span 1;
    aspect-ratio: 4/3;
  }

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

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

  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }

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

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

  .location-divider { display: none; }

  .features-strip .container {
    grid-template-columns: 1fr;
  }

  .feature-item {
    border-right: none;
    border-top: 1px solid var(--border);
  }

  .feature-item:first-child {
    border-top: none;
  }
}

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

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

/* ---------- Animations ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-up {
  animation: fadeUp 0.6s ease forwards;
}

.fade-up-delay-1 { animation-delay: 0.1s; opacity: 0; }
.fade-up-delay-2 { animation-delay: 0.2s; opacity: 0; }
.fade-up-delay-3 { animation-delay: 0.3s; opacity: 0; }
