/* ==========================================
   sanyabieshuyuding.com — 热带雨林风
   三亚别墅预定 | 隐匿奢华度假品牌
   ========================================== */

/* ---------- CSS Variables ---------- */
:root {
  /* 主色调 - 热带雨林 */
  --green-deep:    #1a3c2e;   /* 雨林深绿 - 主色 */
  --green-mid:     #2d5a47;   /* 雨林绿 - 辅色 */
  --green-light:   #4a7c5f;   /* 浅绿 - 强调 */
  --green-pale:    #6b9b7a;   /* 柔绿 - 点缀 */

  /* 暖木色调 */
  --wood-dark:     #3d2c1e;   /* 深木 - 文字/背景 */
  --wood-mid:      #6b4c32;   /* 暖木 - 卡片/边框 */
  --wood-light:    #a3805c;   /* 浅木 - 辅助 */

  /* 金色点缀 */
  --gold-dark:     #b8863a;   /* 暗金 - 强调色 */
  --gold-mid:      #d4a24e;   /* 暖金 - 主金色 */
  --gold-light:    #e8c874;   /* 浅金 - 光效 */

  /* 背景 */
  --bg-cream:      #faf6f0;   /* 米白 - 页面背景 */
  --bg-white:      #fffefb;   /* 暖白 - 卡片背景 */
  --bg-dark:       #0f261c;   /* 极深绿 - footer/header */

  /* 文字 */
  --text-primary:  #2c2418;   /* 深棕 - 正文 */
  --text-secondary:#6b6054;   /* 棕灰 - 辅助 */
  --text-light:    #a89f94;   /* 浅棕 - 提示 */
  --text-white:    #f5f0ea;   /* 白 - 深色背景 */

  /* 阴影 */
  --shadow-sm:     0 2px 8px rgba(26, 60, 46, 0.08);
  --shadow-md:     0 4px 20px rgba(26, 60, 46, 0.12);
  --shadow-lg:     0 8px 40px rgba(26, 60, 46, 0.16);
  --shadow-gold:   0 4px 20px rgba(184, 134, 58, 0.2);

  /* 渐变 */
  --gradient-hero: linear-gradient(135deg, #0f261c 0%, #1a3c2e 40%, #2d5a47 100%);
  --gradient-card: linear-gradient(180deg, transparent 50%, rgba(15, 38, 28, 0.6) 100%);
  --gradient-gold: linear-gradient(135deg, #b8863a, #e8c874, #d4a24e);
  --gradient-accent: linear-gradient(135deg, #2d5a47, #4a7c5f, #6b9b7a);

  /* 字体 */
  --font-heading: 'Noto Serif SC', 'Georgia', serif;
  --font-body:    'Noto Sans SC', 'PingFang SC', sans-serif;
  --font-display: 'Playfair Display', 'Noto Serif SC', serif;

  /* 间距 */
  --section-pad: 100px 0;
  --container-w: 1200px;
  --grid-gap: 30px;

  /* 圆角 */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--bg-cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
ul { list-style: none; }
.container { max-width: var(--container-w); margin: 0 auto; padding: 0 24px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
  position: relative;
  padding-left: 40px;
}

.section-tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 28px;
  height: 2px;
  background: var(--gold-mid);
  transform: translateY(-50%);
}

.section-title {
  font-size: 38px;
  color: var(--green-deep);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.8;
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all 0.4s ease;
  background: transparent;
}

.nav.scrolled {
  background: rgba(15, 38, 28, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.1);
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo {
  width: 40px;
  height: 40px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--bg-dark);
  font-family: var(--font-display);
  font-weight: 700;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
}

.nav-brand-name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.2;
}

.nav-brand-sub {
  font-size: 11px;
  color: var(--gold-light);
  letter-spacing: 2px;
  font-weight: 300;
}

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

.nav-links a {
  color: rgba(245, 240, 234, 0.8);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-mid);
  transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--gradient-gold) !important;
  color: var(--bg-dark) !important;
  padding: 10px 24px !important;
  border-radius: 50px;
  font-weight: 600 !important;
  font-size: 13px !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-white);
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}

.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-toggle span:nth-child(3) { bottom: 0; }

.nav-toggle.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

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

.nav-toggle.active span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

/* ---------- Hero Section ---------- */
.hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(15, 38, 28, 0.85) 0%,
    rgba(26, 60, 46, 0.6) 50%,
    rgba(15, 38, 28, 0.4) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold-light);
  border-radius: 50%;
  animation: float-particle 8s infinite;
  opacity: 0.3;
}

@keyframes float-particle {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.2; }
  50% { transform: translateY(-30px) scale(1.5); opacity: 0.6; }
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 162, 78, 0.15) 0%, transparent 70%);
  top: -100px;
  right: -200px;
  z-index: 1;
  pointer-events: none;
}

.hero-body {
  position: relative;
  z-index: 2;
  padding: 100px 0;
  width: 100%;
}

.hero-content {
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 162, 78, 0.15);
  border: 1px solid rgba(212, 162, 78, 0.3);
  padding: 8px 20px;
  border-radius: 50px;
  color: var(--gold-light);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.hero-badge i {
  font-size: 14px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 56px;
  color: var(--text-white);
  line-height: 1.15;
  margin-bottom: 8px;
}

.hero-title-line {
  display: block;
}

.hero-title-accent {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 18px;
  color: rgba(245, 240, 234, 0.7);
  margin-top: 20px;
  margin-bottom: 40px;
  line-height: 1.8;
  max-width: 540px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--gradient-gold);
  color: var(--bg-dark);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(184, 134, 58, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--text-white);
  border: 1.5px solid rgba(245, 240, 234, 0.3);
}

.btn-secondary:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
  background: rgba(212, 162, 78, 0.1);
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(245, 240, 234, 0.1);
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--text-white);
  font-weight: 700;
}

.hero-stat-label {
  font-size: 13px;
  color: rgba(245, 240, 234, 0.5);
  margin-top: 4px;
}

/* ---------- Section ---------- */
.section {
  padding: var(--section-pad);
}

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

.section-header .section-subtitle {
  margin: 0 auto;
}

/* ---------- Featured Villas ---------- */
.featured-villas {
  background: var(--bg-cream);
}

.villa-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
}

.villa-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s ease;
  cursor: pointer;
}

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

.villa-card-image {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.villa-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.villa-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gradient-gold);
  color: var(--bg-dark);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
}

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

.villa-card-title {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--green-deep);
  margin-bottom: 8px;
}

.villa-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
  font-size: 13px;
  color: var(--text-secondary);
}

.villa-card-meta i {
  color: var(--gold-mid);
  width: 16px;
}

.villa-card-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.villa-card-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.villa-card-price .price {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--gold-dark);
}

.villa-card-price .unit {
  font-size: 13px;
  color: var(--text-secondary);
}

.villa-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-top: 1px solid rgba(26, 60, 46, 0.06);
}

.villa-card-link {
  font-size: 14px;
  color: var(--gold-dark);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.villa-card-link:hover {
  color: var(--green-deep);
  gap: 10px;
}

/* ---------- Why Us ---------- */
.why-us {
  background: var(--bg-white);
}

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

.feature-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  border: 1px solid rgba(26, 60, 46, 0.06);
}

.feature-card:hover {
  border-color: var(--gold-dark);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.feature-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(45, 90, 71, 0.1), rgba(184, 134, 58, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--gold-mid);
  transition: all 0.3s;
}

.feature-card:hover .feature-icon {
  background: var(--gradient-gold);
  color: var(--bg-dark);
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--green-deep);
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ---------- Services Preview ---------- */
.services-preview {
  background: var(--bg-cream);
}

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

.service-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 380px;
  cursor: pointer;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(15, 38, 28, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
}

.service-card-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--bg-dark);
  margin-bottom: 16px;
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--text-white);
  margin-bottom: 8px;
}

.service-card-desc {
  font-size: 14px;
  color: rgba(245, 240, 234, 0.7);
  line-height: 1.7;
}

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

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
}

.testimonial-card {
  background: var(--bg-cream);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 64px;
  color: var(--gold-dark);
  opacity: 0.15;
  position: absolute;
  top: 16px;
  right: 24px;
  line-height: 1;
}

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

.testimonial-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

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

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-primary);
}

.testimonial-tag {
  font-size: 12px;
  color: var(--text-light);
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero-villa.jpg') center/cover no-repeat;
  opacity: 0.1;
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-display);
  font-size: 38px;
  color: var(--text-white);
  margin-bottom: 16px;
}

.cta-desc {
  font-size: 16px;
  color: rgba(245, 240, 234, 0.7);
  margin-bottom: 32px;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-dark);
  padding: 80px 0 0;
  color: var(--text-white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(245, 240, 234, 0.08);
}

.footer-brand-desc {
  font-size: 14px;
  color: rgba(245, 240, 234, 0.5);
  line-height: 1.8;
  margin: 16px 0 20px;
  max-width: 340px;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(245, 240, 234, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 240, 234, 0.5);
  font-size: 16px;
  transition: all 0.3s;
}

.footer-social a:hover {
  border-color: var(--gold-mid);
  color: var(--gold-mid);
  background: rgba(212, 162, 78, 0.1);
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--text-white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold-mid);
}

.footer-links a {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  color: rgba(245, 240, 234, 0.5);
  transition: all 0.3s;
}

.footer-links a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.ftc {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: 14px;
  color: rgba(245, 240, 234, 0.6);
}

.ci {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(212, 162, 78, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-mid);
  font-size: 14px;
  flex-shrink: 0;
}

.footer-qr {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}

.footer-qr img {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(245, 240, 234, 0.1);
}

.footer-qr-text {
  font-size: 12px;
  color: rgba(245, 240, 234, 0.4);
  line-height: 1.6;
}

.footer-bottom {
  text-align: center;
  padding: 24px 0;
  font-size: 13px;
  color: rgba(245, 240, 234, 0.3);
}

/* ==========================================
   About Page Styles
   ========================================== */

/* ---------- Brand Story ---------- */
.brand-story {
  background: var(--bg-cream);
}

.brand-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.brand-story-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.brand-story-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform 0.6s ease;
}

.brand-story-image:hover img {
  transform: scale(1.03);
}

.brand-story-image-decor {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--bg-dark);
  box-shadow: var(--shadow-gold);
}

.brand-story-content {
  padding-left: 20px;
}

.brand-story-content .section-tag {
  margin-bottom: 16px;
}

.brand-story-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 16px;
}

.brand-story-signature {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  font-family: var(--font-heading);
  font-size: 14px;
  color: var(--green-deep);
  font-weight: 600;
}

.brand-story-signature-line {
  width: 40px;
  height: 2px;
  background: var(--gold-mid);
}

/* ---------- Brand Mission ---------- */
.brand-mission {
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.brand-mission::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 162, 78, 0.08) 0%, transparent 70%);
  top: -100px;
  left: -100px;
  pointer-events: none;
}

.brand-mission::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 124, 95, 0.1) 0%, transparent 70%);
  bottom: -80px;
  right: -80px;
  pointer-events: none;
}

.mission-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.mission-icon {
  font-size: 48px;
  color: var(--gold-mid);
  opacity: 0.3;
  margin-bottom: 24px;
}

.mission-quote {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--text-white);
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 20px;
  border: none;
  padding: 0;
}

.mission-sub {
  font-size: 15px;
  color: rgba(245, 240, 234, 0.5);
  letter-spacing: 2px;
}

/* ---------- Core Stats ---------- */
.core-stats {
  background: var(--bg-white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--grid-gap);
}

.stat-card {
  text-align: center;
  padding: 48px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(26, 60, 46, 0.06);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.stat-card:hover::before {
  transform: scaleX(1);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.stat-label {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--green-deep);
  margin-bottom: 8px;
}

.stat-desc {
  font-size: 13px;
  color: var(--text-light);
}

/* ---------- Team Section ---------- */
.team-section {
  background: var(--bg-cream);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--grid-gap);
}

.team-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid rgba(26, 60, 46, 0.06);
  transition: all 0.4s ease;
  position: relative;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.team-card-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, rgba(45, 90, 71, 0.1), rgba(184, 134, 58, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--gold-mid);
  transition: all 0.4s ease;
}

.team-card:hover .team-card-icon {
  background: var(--gradient-gold);
  color: var(--bg-dark);
  transform: scale(1.1);
}

.team-card-title {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--green-deep);
  margin-bottom: 12px;
}

.team-card-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

.team-card-tag {
  display: inline-block;
  font-size: 12px;
  color: var(--gold-dark);
  background: rgba(184, 134, 58, 0.08);
  padding: 6px 16px;
  border-radius: 50px;
  font-weight: 500;
  letter-spacing: 1px;
}

/* ---------- Brand Philosophy ---------- */
.brand-philosophy {
  background: var(--bg-white);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
}

.philosophy-card {
  padding: 48px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(26, 60, 46, 0.06);
  transition: all 0.4s ease;
  position: relative;
}

.philosophy-card:hover {
  border-color: var(--gold-dark);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.philosophy-number {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  color: rgba(26, 60, 46, 0.06);
  line-height: 1;
  margin-bottom: 16px;
  transition: color 0.3s ease;
}

.philosophy-card:hover .philosophy-number {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.philosophy-title {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--green-deep);
  margin-bottom: 14px;
}

.philosophy-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ---------- About Page Responsive ---------- */
@media (max-width: 1024px) {
  .brand-story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .brand-story-content {
    padding-left: 0;
  }
  .brand-story-image img {
    height: 360px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .philosophy-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .brand-story-image img {
    height: 260px;
  }
  .brand-story-image-decor {
    width: 60px;
    height: 60px;
    font-size: 24px;
    bottom: -15px;
    right: -15px;
  }
  .mission-quote {
    font-size: 24px;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .stat-number {
    font-size: 34px;
  }
  .stat-card {
    padding: 32px 16px;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .team-card {
    padding: 28px 20px;
  }
  .philosophy-grid {
    grid-template-columns: 1fr;
  }
  .philosophy-card {
    padding: 36px 24px;
  }
}

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

/* ---------- Subpages Hero ---------- */
.page-hero {
  padding-top: 120px;
  padding-bottom: 60px;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,38,28,0.8) 0%, rgba(26,60,46,0.5) 100%);
  z-index: 1;
  pointer-events: none;
}

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

.page-hero h1 {
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--text-white);
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 16px;
  color: rgba(245, 240, 234, 0.6);
  max-width: 500px;
}

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 0;
  font-size: 13px;
  color: var(--text-light);
}

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

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

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

/* ---------- Service Detail / Features Section ---------- */
.service-detail-section {
  background: var(--bg-white);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 80px;
}

.service-detail-grid:last-child {
  margin-bottom: 0;
}

.service-detail-grid.reverse {
  direction: rtl;
}

.service-detail-grid.reverse > * {
  direction: ltr;
}

.service-detail-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 400px;
}

.service-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-detail-grid:hover .service-detail-image img {
  transform: scale(1.05);
}

.service-detail-info {
  padding: 20px 0;
}

.service-detail-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(45, 90, 71, 0.1), rgba(184, 134, 58, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--gold-mid);
  margin-bottom: 20px;
}

.service-detail-title {
  font-family: var(--font-heading);
  font-size: 26px;
  color: var(--green-deep);
  margin-bottom: 12px;
}

.service-detail-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

.service-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.service-highlights li i {
  color: var(--green-light);
  font-size: 14px;
  margin-top: 4px;
  flex-shrink: 0;
}

/* Service Features Strip */
.service-features-strip {
  background: var(--bg-cream);
  text-align: center;
}

.service-features-strip .features-grid {
  max-width: 1000px;
  margin: 0 auto;
}

/* ---------- Loading ---------- */
.loading-placeholder {
  text-align: center;
  padding: 80px 0;
  color: var(--text-light);
}

.loading-placeholder i {
  font-size: 32px;
  display: block;
  margin-bottom: 12px;
  color: var(--gold-mid);
}

/* ---------- Villas Page ---------- */
.villas-page {
  background: var(--bg-cream);
  padding: 80px 0;
}

/* Filter Buttons */
.villa-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 48px;
}

.villa-filter-btn {
  padding: 10px 28px;
  border-radius: 50px;
  border: 1.5px solid var(--wood-mid);
  background: transparent;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.villa-filter-btn:hover {
  border-color: var(--gold-mid);
  color: var(--gold-dark);
  background: rgba(212, 162, 78, 0.08);
}

.villa-filter-btn.active {
  background: var(--gradient-gold);
  border-color: transparent;
  color: var(--bg-dark);
  font-weight: 600;
  box-shadow: var(--shadow-gold);
}

/* Villa grid on villas page - show 6 items */
.villas-page .villa-grid {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1024px) {
  .villas-page .villa-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .villas-page .villa-grid { grid-template-columns: 1fr; }
  .villa-filters { gap: 8px; }
  .villa-filter-btn { padding: 8px 20px; font-size: 13px; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .villa-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(15, 38, 28, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 100px 32px 40px;
    gap: 8px;
    transition: right 0.4s ease;
    z-index: 999;
  }

  .nav-links.active { right: 0; }

  .nav-links a {
    font-size: 16px;
    padding: 12px 0;
    width: 100%;
    border-bottom: 1px solid rgba(245, 240, 234, 0.05);
  }

  .nav-cta {
    margin-top: 20px;
    text-align: center;
    width: 100%;
  }

  .hero-title {
    font-size: 34px;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 24px;
  }

  .hero-stat-value {
    font-size: 26px;
  }

  .section-title {
    font-size: 28px;
  }

  .villa-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { height: 280px; }
  .footer-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .cta-title { font-size: 28px; }
  .page-hero h1 { font-size: 30px; }
  .service-detail-grid { grid-template-columns: 1fr; gap: 30px; }
  .service-detail-image { height: 280px; }
  .service-detail-info { padding: 0; }
  .service-detail-grid.reverse { direction: ltr; }
  .service-detail-grid.reverse > * { direction: ltr; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 28px; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .features-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 16px; }
}
