/* ============================================
   PALM WEALTH – MAIN STYLESHEET
   Theme: Green & Gold Luxury
   Fonts: Inter (sans) + Playfair Display (serif)
   Updated with Dreamcity HES Green Colors
   ============================================ */

/* ---------- ROOT VARIABLES ---------- */
:root {
  --primary: #1a4d2e;
  --primary-dark: #0f331f;
  --primary-light: #2d7a47;
  --gold: #d4a843;
  --gold-light: #f0d68a;
  --gold-dark: #b8922f;
  --white: #ffffff;
  --off-white: #f8f6f0;
  --gray-100: #f3f1eb;
  --gray-200: #e8e4dc;
  --gray-600: #6b6b6b;
  --gray-800: #2d2d2d;
  --text-dark: #1c1c1c;
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 10px 40px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.18);
  --radius: 16px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---------- RESET & BASE ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: "Inter", sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-padding {
  padding: 80px 0;
}
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212, 168, 67, 0.12);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}
.section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
}
.section-header h2 span {
  color: var(--gold);
}
.section-header p {
  color: var(--gray-600);
  font-size: 1.1rem;
  margin-top: 8px;
}

/* ---------- PRELOADER ---------- */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--primary-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.8s ease;
}
#preloader.hide {
  opacity: 0;
  pointer-events: none;
}
.loader {
  display: flex;
  gap: 8px;
}
.palm-leaf {
  width: 20px;
  height: 40px;
  background: var(--gold);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  animation: leafSway 1.2s ease-in-out infinite alternate;
}
.palm-leaf:nth-child(2) {
  animation-delay: 0.3s;
  background: var(--gold-light);
}
.palm-leaf:nth-child(3) {
  animation-delay: 0.6s;
  background: var(--gold-dark);
}
@keyframes leafSway {
  0% {
    transform: rotate(-10deg) scaleY(1);
  }
  100% {
    transform: rotate(10deg) scaleY(1.1);
  }
}
#preloader p {
  color: var(--gold-light);
  margin-top: 24px;
  font-weight: 300;
  letter-spacing: 2px;
}

/* ---------- BUTTONS ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--white);
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  transition: var(--transition);
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(212, 168, 67, 0.35);
}
.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(212, 168, 67, 0.45);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid var(--white);
  transition: var(--transition);
  cursor: pointer;
}
.btn-secondary:hover {
  background: var(--white);
  color: var(--primary);
}
.btn-primary-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--primary);
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
  border: 2px solid var(--primary);
  transition: var(--transition);
  cursor: pointer;
  margin-top: 16px;
}
.btn-primary-outline:hover {
  background: var(--primary);
  color: var(--white);
}
.btn-large {
  padding: 18px 48px;
  font-size: 1.1rem;
}
.btn-nav-cta {
  background: var(--gold);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
}
.btn-nav-cta:hover {
  background: var(--gold-dark);
  transform: scale(1.05);
}

/* ---------- NAVBAR ---------- */
.navbar-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 12px 0;
  transition: var(--transition);
  background: transparent;
}
.navbar-wrapper.scrolled {
  background: rgba(26, 77, 46, 0.95);
  backdrop-filter: blur(12px);
  padding: 8px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
}
.logo img {
  height: 40px;
}
.logo span span {
  color: var(--gold);
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-menu a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 0.9rem;
  transition: var(--transition);
  position: relative;
}
.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-menu a:hover,
.nav-menu a.active {
  color: var(--white);
}
.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--white);
  border-radius: 4px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--primary-dark);
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 51, 31, 0.85) 0%,
    rgba(15, 51, 31, 0.4) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  color: var(--white);
}
.hero-badge {
  display: inline-block;
  background: rgba(212, 168, 67, 0.2);
  color: var(--gold-light);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  letter-spacing: 1px;
  font-weight: 500;
  margin-bottom: 20px;
  border: 1px solid rgba(212, 168, 67, 0.3);
}
.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.6rem, 7vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero h1 span {
  color: var(--gold);
}
.hero p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.8;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.hero-stats {
  display: flex;
  gap: 60px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.stat-item {
  display: flex;
  flex-direction: column;
}
.stat-number {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.7rem;
  letter-spacing: 2px;
  animation: bounceDown 2s ease-in-out infinite;
}
.scroll-indicator i {
  font-size: 1.2rem;
  margin-top: 4px;
}
@keyframes bounceDown {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* ---------- ABOUT PREVIEW ---------- */
.about-preview {
  background: var(--off-white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}
.about-text h2 span {
  color: var(--gold);
}
.about-text > p {
  color: var(--gray-600);
  font-size: 1.05rem;
  margin-bottom: 28px;
}
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.feature-item i {
  color: var(--gold);
  font-size: 1.2rem;
  margin-top: 4px;
  flex-shrink: 0;
}
.feature-item strong {
  display: block;
  font-size: 0.95rem;
}
.feature-item p {
  color: var(--gray-600);
  font-size: 0.9rem;
  margin: 0;
}
.about-image {
  position: relative;
}
.about-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.floating-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
}
.floating-card i {
  color: var(--gold);
  font-size: 1.8rem;
}
.floating-card span {
  font-weight: 600;
  font-size: 0.95rem;
}

/* ---------- PACKAGES ---------- */
.packages {
  background: var(--white);
}
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}
.package-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
}
.package-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.package-card.featured {
  border: 2px solid var(--gold);
  background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
}
.package-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.package-icon {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 12px;
}
.package-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 700;
}
.package-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin: 8px 0 16px;
}
.package-features {
  text-align: left;
  margin: 20px 0 28px;
}
.package-features li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--gray-200);
}
.package-features li:last-child {
  border-bottom: none;
}
.package-features i {
  color: var(--gold);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.btn-package {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 12px 40px;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
}
.btn-package:hover {
  background: var(--gold);
  transform: scale(1.05);
}
.package-card.featured .btn-package {
  background: var(--gold);
}
.package-card.featured .btn-package:hover {
  background: var(--gold-dark);
}

/* ---------- HOW IT WORKS (TIMELINE) ---------- */
.how-it-works {
  background: var(--off-white);
}
.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold);
  opacity: 0.3;
}
.timeline-item {
  display: flex;
  gap: 32px;
  padding: 20px 0;
  position: relative;
}
.timeline-number {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 700;
  z-index: 2;
}
.timeline-content {
  padding-top: 8px;
}
.timeline-content h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 700;
}
.timeline-content p {
  color: var(--gray-600);
  font-size: 0.95rem;
}

/* ---------- CALCULATOR ---------- */
.calculator {
  background: var(--white);
}
.calculator-wrapper {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  box-shadow: var(--shadow-sm);
}
.form-group {
  margin-bottom: 28px;
}
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
}
.form-group input[type="range"] {
  width: 100%;
  height: 4px;
  -webkit-appearance: none;
  appearance: none;
  background: var(--gray-200);
  border-radius: 4px;
  outline: none;
}
.form-group input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: var(--gold);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(212, 168, 67, 0.4);
}
.form-group input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: var(--gold);
  border-radius: 50%;
  cursor: pointer;
  border: none;
}
.form-group span {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: 6px;
}
.calculator-results {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.result-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-200);
}
.result-item:last-child {
  border-bottom: none;
}
.result-label {
  font-weight: 500;
  color: var(--gray-600);
}
.result-value {
  font-weight: 700;
  font-size: 1.1rem;
}
.result-value.highlight {
  color: var(--gold);
  font-size: 1.4rem;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
  background: var(--off-white);
}
.testimonial-slider {
  padding: 20px 0;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  margin: 0 12px;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.testimonial-card p {
  font-size: 1rem;
  color: var(--gray-600);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 20px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-author strong {
  display: block;
  font-size: 0.95rem;
}
.testimonial-author span {
  font-size: 0.8rem;
  color: var(--gray-600);
}
.swiper-pagination-bullet-active {
  background: var(--gold);
}

/* ---------- TRANSPARENCY ---------- */
.transparency {
  background: var(--white);
}
.transparency-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.transparency-text h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}
.transparency-text h2 span {
  color: var(--gold);
}
.transparency-text > p {
  color: var(--gray-600);
  font-size: 1.05rem;
  margin-bottom: 28px;
}
.transparency-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.transparency-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 500;
}
.transparency-list i {
  color: var(--gold);
  font-size: 1.1rem;
}
.transparency-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
}

/* ---------- FAQ PREVIEW ---------- */
.faq-preview {
  background: var(--off-white);
}
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border-radius: 12px;
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  font-family: "Inter", sans-serif;
  transition: var(--transition);
}
.faq-question:hover {
  background: var(--off-white);
}
.faq-question i {
  transition: var(--transition);
  color: var(--gold);
}
.faq-item.open .faq-question i {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 24px;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}
.faq-answer p {
  color: var(--gray-600);
  font-size: 0.95rem;
}
.faq-more {
  text-align: center;
  margin-top: 28px;
}

/* ---------- CTA SECTION ---------- */
.cta {
  background: var(--primary-dark);
}
.cta-wrapper {
  text-align: center;
  color: var(--white);
}
.cta-wrapper h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
}
.cta-wrapper h2 span {
  color: var(--gold);
}
.cta-wrapper p {
  font-size: 1.1rem;
  opacity: 0.8;
  margin: 12px 0 32px;
}
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.cta-trust {
  margin-top: 28px;
  font-size: 0.85rem;
  opacity: 0.6;
  letter-spacing: 1px;
}
.cta-trust i {
  color: var(--gold);
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--text-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand .logo {
  color: var(--white);
}
.footer-brand p {
  font-size: 0.9rem;
  margin: 12px 0 20px;
  max-width: 300px;
}
.social-links {
  display: flex;
  gap: 12px;
}
.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: rgba(255, 255, 255, 0.6);
}
.social-links a:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
}
.footer-links h4,
.footer-contact h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.footer-links ul li {
  padding: 6px 0;
}
.footer-links ul li a {
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-links ul li a:hover {
  color: var(--gold);
  padding-left: 4px;
}
.footer-contact p {
  font-size: 0.9rem;
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-contact i {
  color: var(--gold);
  width: 20px;
}
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  font-size: 0.85rem;
  opacity: 0.5;
}
.footer-bottom strong {
  color: var(--white);
}

/* ---------- FLOATING WHATSAPP ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  background: #25d366;
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}

/* ---------- SCROLL TO TOP ---------- */
.scroll-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  z-index: 999;
  background: var(--primary);
  color: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}
.scroll-top:hover {
  background: var(--gold);
  transform: translateY(-4px);
}

/* ============================================
   PAGE HERO (For About, Packages, Plantation, Gallery, FAQ, Contact)
   ============================================ */
.page-hero {
  position: relative;
  padding: 160px 0 80px;
  background: var(--primary-dark);
  background-image: url("../images/page-hero-bg.jpg");
  background-size: cover;
  background-position: center;
  min-height: 320px;
  display: flex;
  align-items: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 51, 31, 0.9) 0%,
    rgba(15, 51, 31, 0.6) 100%
  );
  z-index: 1;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.page-hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
}
.page-hero-content h1 span {
  color: var(--gold);
}
.page-hero-content p {
  font-size: 1.1rem;
  opacity: 0.85;
  margin-top: 8px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.9rem;
  opacity: 0.7;
}
.breadcrumb a {
  color: var(--white);
  transition: var(--transition);
}
.breadcrumb a:hover {
  color: var(--gold);
}
.breadcrumb span {
  color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   STATS BANNER (For About page)
   ============================================ */
.stats-banner {
  background: var(--primary);
  padding: 60px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 32px;
  text-align: center;
}
.stats-item {
  color: var(--white);
}
.stats-number {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
}
.stats-label {
  font-size: 0.95rem;
  opacity: 0.8;
}

/* ============================================
   VALUES (For About page)
   ============================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}
.value-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.value-icon {
  font-size: 2.4rem;
  color: var(--gold);
  margin-bottom: 12px;
}
.value-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
}
.value-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-top: 4px;
}

/* ============================================
   TEAM (For About page)
   ============================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}
.team-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 16px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.team-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 12px;
  border: 4px solid var(--off-white);
}
.team-card h4 {
  font-size: 1rem;
  font-weight: 700;
}
.team-role {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}
.team-card p {
  font-size: 0.85rem;
  color: var(--gray-600);
}
.team-social {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.team-social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
  transition: var(--transition);
}
.team-social a:hover {
  background: var(--gold);
  color: var(--white);
}

/* ============================================
   STORY (For About page)
   ============================================ */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.story-text h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}
.story-text h2 span {
  color: var(--gold);
}
.story-text > p {
  color: var(--gray-600);
  font-size: 1.05rem;
  margin-bottom: 12px;
}
.story-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}
.mission-box {
  display: flex;
  gap: 12px;
  padding: 16px;
  background: var(--off-white);
  border-radius: var(--radius);
}
.mission-box i {
  font-size: 1.6rem;
  color: var(--gold);
  flex-shrink: 0;
}
.mission-box strong {
  display: block;
  font-size: 0.95rem;
}
.mission-box p {
  font-size: 0.85rem;
  color: var(--gray-600);
  margin: 0;
}
.story-image {
  position: relative;
}
.story-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 450px;
  object-fit: cover;
}
.story-experience {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--white);
  padding: 20px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  text-align: center;
}
.experience-number {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gold);
}
.experience-label {
  font-size: 0.85rem;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .story-mission {
    grid-template-columns: 1fr;
  }
  .story-image img {
    height: 300px;
  }
  .story-experience {
    bottom: -10px;
    left: 10px;
    padding: 12px 20px;
  }
  .experience-number {
    font-size: 1.8rem;
  }
}
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
}
