/* =========================================
   KGATHALO CENTER — EDITORIAL LUXURY THEME
   Palette: Navy · Olive · Gold · Cream
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --navy:        #1E2D5A;
  --navy-dark:   #141E3E;
  --navy-mid:    #26387A;
  --olive:       #6B7A3E;
  --olive-light: #8A9B52;
  --gold:        #B8932A;
  --gold-light:  #D4AE4A;
  --cream:       #F7F4EE;
  --cream-dark:  #EDE8DC;
  --warm-white:  #FDFBF7;
  --text-dark:   #1E2D5A;
  --text-mid:    #4A5568;
  --text-light:  #6B7280;
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   32px;
  --radius-xl:   48px;
  --max-w:       1200px;
  --shadow-soft: 0 4px 24px rgba(30,45,90,0.08);
  --shadow-med:  0 12px 40px rgba(30,45,90,0.12);
  --shadow-deep: 0 24px 60px rgba(30,45,90,0.18);
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy);
}
h1 { font-size: clamp(2.8rem, 5vw, 5rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); }
h3 { font-size: 1.6rem; }
h4 { font-size: 1rem; font-family: 'Jost', sans-serif; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; }
p  { font-size: 1.05rem; color: var(--text-mid); margin-bottom: 1.2rem; line-height: 1.8; }

/* === GOLD DIVIDER === */
.gold-rule {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--gold); font-family: 'Jost', sans-serif;
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; margin-bottom: 16px;
}
.gold-rule::before, .gold-rule::after {
  content: ''; display: block; height: 1px; width: 30px; background: var(--gold);
}

/* === BUTTONS === */
.btn {
  display: inline-block; padding: 14px 36px;
  border-radius: 4px; font-family: 'Jost', sans-serif;
  font-weight: 500; font-size: 0.9rem; letter-spacing: 0.12em;
  text-transform: uppercase; text-decoration: none;
  transition: all 0.3s ease; border: none; cursor: pointer;
}
.btn-primary { background: var(--navy); color: white; }
.btn-primary:hover { background: var(--navy-mid); transform: translateY(-2px); box-shadow: var(--shadow-med); }
.btn-gold { background: var(--gold); color: white; }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,147,42,0.3); }
.btn-outline { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: white; }
.btn-outline-white { background: transparent; color: white; border: 1.5px solid rgba(255,255,255,0.6); }
.btn-outline-white:hover { background: white; color: var(--navy); }

/* === HEADER === */
header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; padding: 18px 5%;
  transition: all 0.4s ease;
}
header.scrolled {
  background: rgba(253,251,247,0.97);
  backdrop-filter: blur(12px);
  padding: 12px 5%;
  box-shadow: 0 2px 20px rgba(30,45,90,0.1);
}
.nav-container {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.logo-box { display: block; text-decoration: none; }
.logo-box img { height: 72px; width: auto; transition: height 0.3s; }
header.scrolled .logo-box img { height: 56px; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  text-decoration: none; color: var(--text-dark);
  font-family: 'Jost', sans-serif; font-weight: 500;
  font-size: 0.85rem; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 10px 18px;
  border-radius: 3px; transition: all 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a.active { color: var(--gold); }
.nav-cta {
  background: var(--navy) !important; color: white !important;
  padding: 10px 24px !important; border-radius: 4px !important;
  margin-left: 8px;
}
.nav-cta:hover { background: var(--gold) !important; color: white !important; }

.mobile-toggle { display: none; font-size: 1.4rem; color: var(--navy); cursor: pointer; background: none; border: none; }

/* === HERO (INDEX) === */
.hero-wrapper {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  background: var(--navy-dark);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.pexels.com/photos/7551608/pexels-photo-7551608.jpeg?auto=compress&cs=tinysrgb&w=1600') center/cover;
  opacity: 0.18;
}
.hero-decor {
  position: absolute; top: 0; right: 0;
  width: 55%; height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(184,147,42,0.06) 50%, rgba(107,122,62,0.08) 100%);
}
.hero-decor-circle {
  position: absolute; bottom: -100px; right: -100px;
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(184,147,42,0.12);
}
.hero-decor-circle2 {
  position: absolute; bottom: -50px; right: -50px;
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(184,147,42,0.08);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: var(--max-w); margin: 0 auto;
  padding: 140px 5% 80px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.hero-text { }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(184,147,42,0.15); color: var(--gold-light);
  padding: 8px 18px; border-radius: 3px; font-size: 0.78rem;
  font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 28px; border: 1px solid rgba(184,147,42,0.2);
}
.hero-text h1 { color: white; margin-bottom: 24px; }
.hero-text h1 em { color: var(--gold-light); font-style: italic; }
.hero-text p { color: rgba(255,255,255,0.72); font-size: 1.1rem; margin-bottom: 40px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-img-wrap {
  position: relative;
}
.hero-img-wrap img {
  width: 100%; height: 520px; object-fit: cover;
  border-radius: var(--radius-lg) var(--radius-lg) var(--radius-xl) var(--radius-sm);
  box-shadow: var(--shadow-deep);
}
.hero-badge {
  position: absolute; bottom: -24px; left: -24px;
  background: var(--gold); color: white;
  padding: 20px 28px; border-radius: var(--radius-md);
  box-shadow: var(--shadow-med);
}
.hero-badge .num { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 700; line-height: 1; display: block; }
.hero-badge .label { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.9; }
.hero-stat-strip {
  position: absolute; top: 30px; right: -20px;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(8px);
  padding: 16px 20px; border-radius: var(--radius-md);
  box-shadow: var(--shadow-med); text-align: center; min-width: 130px;
}
.hero-stat-strip .stat-num { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 700; color: var(--navy); line-height: 1; }
.hero-stat-strip .stat-label { font-size: 0.75rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.1em; }

/* === PAGE BANNER (Sub-pages) === */
.page-banner {
  background: var(--navy-dark);
  padding: 180px 10% 80px;
  text-align: center;
  position: relative; overflow: hidden;
  margin-bottom: 80px;
}
.page-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: url('https://images.pexels.com/photos/7551608/pexels-photo-7551608.jpeg?auto=compress&cs=tinysrgb&w=1200') center/cover;
  opacity: 0.08;
}
.page-banner::after {
  content: '';
  position: absolute; bottom: -2px; left: 0; right: 0;
  height: 80px;
  background: var(--cream);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-banner h1 { color: white; position: relative; z-index: 1; margin-bottom: 12px; }
.page-banner p { color: rgba(255,255,255,0.65); position: relative; z-index: 1; max-width: 560px; margin: 0 auto; }
.page-banner .gold-rule { position: relative; z-index: 1; margin-bottom: 20px; }

/* === FEATURE STRIP (3 cards below hero) === */
.feature-strip {
  max-width: var(--max-w); margin: 0 auto 100px;
  padding: 0 5%;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  position: relative; z-index: 10;
  margin-top: -60px;
}
.feature-card {
  background: var(--warm-white); border-radius: var(--radius-md);
  padding: 36px 32px;
  border: 1px solid rgba(30,45,90,0.06);
  border-bottom: 3px solid var(--gold);
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-med); }
.feature-icon {
  width: 52px; height: 52px;
  background: rgba(107,122,62,0.1); color: var(--olive);
  border-radius: 12px; display: flex; align-items: center;
  justify-content: center; font-size: 1.3rem; margin-bottom: 20px;
}
.feature-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.feature-card p { font-size: 0.95rem; margin: 0; }

/* === SPLIT SECTIONS === */
.split-section {
  max-width: var(--max-w); margin: 0 auto 80px;
  padding: 0 5%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.split-section.reverse { direction: rtl; }
.split-section.reverse > * { direction: ltr; }
.split-section.full-bleed {
  max-width: 100%; margin: 0; padding: 80px 10%;
  background: var(--navy);
  grid-template-columns: 1fr 1fr;
}
.split-section.full-bleed h2 { color: white; }
.split-section.full-bleed p { color: rgba(255,255,255,0.75); }
.split-section.full-bleed h4 { color: var(--gold-light); }

.split-img {
  width: 100%; height: 480px; object-fit: cover;
  border-radius: var(--radius-lg) var(--radius-sm) var(--radius-xl) var(--radius-lg);
  box-shadow: 20px 20px 0 rgba(184,147,42,0.12);
}
.split-section.reverse .split-img,
.split-section.full-bleed.reverse .split-img {
  border-radius: var(--radius-sm) var(--radius-lg) var(--radius-lg) var(--radius-xl);
  box-shadow: -20px 20px 0 rgba(107,122,62,0.15);
}
.split-text { }
.split-text ul { list-style: none; padding: 0; margin: 20px 0 32px; }
.split-text ul li {
  padding: 10px 0; font-size: 1rem; color: var(--text-mid);
  border-bottom: 1px solid var(--cream-dark);
  display: flex; align-items: center; gap: 12px;
}
.split-text ul li i { color: var(--olive); font-size: 0.85rem; }

/* === OLIVE CREAM SECTION === */
.olive-section {
  background: var(--cream-dark); padding: 80px 10%; margin: 80px 0;
}

/* === CARDS GRID === */
.cards-section {
  max-width: var(--max-w); margin: 0 auto 80px; padding: 0 5%;
}
.cards-section h2 { text-align: center; margin-bottom: 8px; }
.section-intro { text-align: center; max-width: 560px; margin: 0 auto 50px; }
.cards-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.card {
  background: var(--warm-white);
  border-radius: var(--radius-md); padding: 40px 32px;
  border: 1px solid rgba(30,45,90,0.05);
  box-shadow: var(--shadow-soft); transition: all 0.3s;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-med); }
.card .feature-icon { margin-bottom: 24px; }
.card h3 { margin-bottom: 12px; }

/* === CTA BAND === */
.cta-band {
  background: var(--navy);
  padding: 90px 10%; text-align: center;
  position: relative; overflow: hidden; margin: 80px 0;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(184,147,42,0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(107,122,62,0.1) 0%, transparent 60%);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: white; margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,0.72); max-width: 520px; margin: 0 auto 40px; }
.cta-band .btn-wrap { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* === CONTACT === */
.contact-section {
  max-width: var(--max-w); margin: 0 auto 80px; padding: 0 5%;
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; align-items: start;
}
.contact-info-box {
  background: var(--navy); color: white;
  border-radius: var(--radius-md); padding: 48px 40px;
}
.contact-info-box h3 { color: white; margin-bottom: 32px; }
.contact-item {
  display: flex; gap: 18px; margin-bottom: 30px; align-items: flex-start;
}
.contact-icon {
  width: 46px; height: 46px; background: rgba(255,255,255,0.08);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: var(--gold-light); font-size: 1.1rem; flex-shrink: 0;
}
.contact-item h4 { color: var(--gold-light); margin-bottom: 4px; font-family: 'Jost'; font-size: 0.8rem; letter-spacing: 0.15em; }
.contact-item p { color: rgba(255,255,255,0.8); margin: 0; font-size: 0.95rem; }
.booking-form-box {
  background: var(--warm-white); border-radius: var(--radius-md);
  padding: 48px 40px; box-shadow: var(--shadow-soft);
  border: 1px solid rgba(30,45,90,0.06);
}
.booking-form-box h2 { margin-bottom: 8px; }
.booking-form-box > p { margin-bottom: 32px; }
.form-group { margin-bottom: 22px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 500; font-size: 0.88rem; letter-spacing: 0.05em; color: var(--navy); text-transform: uppercase; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--cream-dark); border-radius: var(--radius-sm);
  font-family: 'Jost', sans-serif; font-size: 0.95rem;
  background: var(--cream); color: var(--text-dark);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--gold); background: white;
  box-shadow: 0 0 0 3px rgba(184,147,42,0.1);
}

/* === HOLIDAY HERO === */
.holiday-hero {
  position: relative; padding: 200px 10% 120px;
  text-align: center; overflow: hidden;
  background: var(--navy-dark);
}
.holiday-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('https://images.pexels.com/photos/2104882/pexels-photo-2104882.jpeg?auto=compress&cs=tinysrgb&w=1600') center/cover;
  opacity: 0.2;
}
.holiday-hero::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 80px; background: var(--cream);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.holiday-hero > * { position: relative; z-index: 1; }
.holiday-hero h1 { color: white; }
.holiday-hero p { color: rgba(255,255,255,0.7); }

/* === TESTIMONIALS === */
.testimonials {
  background: var(--cream-dark); padding: 80px 10%; text-align: center;
}
.testimonials h2 { margin-bottom: 50px; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: var(--max-w); margin: 0 auto; }
.testi-card {
  background: white; border-radius: var(--radius-md); padding: 36px 28px;
  box-shadow: var(--shadow-soft); text-align: left;
}
.testi-stars { color: var(--gold); margin-bottom: 16px; font-size: 0.9rem; }
.testi-card p { font-size: 0.95rem; font-style: italic; margin-bottom: 20px; }
.testi-author { font-weight: 600; font-size: 0.88rem; color: var(--navy); }
.testi-role { font-size: 0.8rem; color: var(--text-light); }

/* === FOOTER === */
footer {
  background: var(--navy-dark); color: rgba(255,255,255,0.75);
  padding: 80px 10% 40px;
}
.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 60px;
}
.footer-logo img { height: 70px; margin-bottom: 20px; }
.footer-logo p { font-size: 0.92rem; color: rgba(255,255,255,0.55); max-width: 260px; }
.footer-col h4 {
  color: var(--gold-light); font-family: 'Jost'; font-size: 0.78rem;
  letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 20px;
}
.footer-col a {
  display: block; color: rgba(255,255,255,0.6); text-decoration: none;
  font-size: 0.9rem; margin-bottom: 10px; transition: 0.2s;
}
.footer-col a:hover { color: var(--gold-light); }
.footer-social { display: flex; gap: 12px; margin-top: 24px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 8px;
  background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.6);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: all 0.2s; text-decoration: none;
  margin: 0;
}
.footer-social a:hover { background: var(--gold); color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px; text-align: center;
  font-size: 0.85rem; color: rgba(255,255,255,0.35);
}
.footer-tagline {
  display: flex; justify-content: center; gap: 20px;
  margin-top: 10px; font-size: 0.75rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: rgba(184,147,42,0.5);
}
.footer-tagline span::before { content: '•'; margin-right: 20px; }
.footer-tagline span:first-child::before { display: none; }

/* === WHATSAPP FLOAT === */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px;
  width: 56px; height: 56px;
  background: #25D366; color: white;
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 26px;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  z-index: 2000; text-decoration: none; transition: all 0.3s;
  animation: wa-pulse 3s infinite;
}
.whatsapp-float:hover { background: #128C7E; transform: scale(1.1); color: white; }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 28px rgba(37,211,102,0.6); }
}

/* === SCROLL REVEAL === */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* === MOBILE === */
@media (max-width: 992px) {
  header { padding: 14px 5%; background: rgba(253,251,247,0.97); backdrop-filter: blur(12px); }
  .logo-box img { height: 56px; }
  .mobile-toggle { display: block; }
  .nav-links {
    position: absolute; top: 84px; left: 0; right: 0;
    background: white; flex-direction: column; padding: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    display: none; align-items: flex-start;
  }
  .nav-links.active { display: flex; }
  .nav-links a { width: 100%; padding: 12px 16px; }

  .hero-content { grid-template-columns: 1fr; padding: 120px 5% 60px; gap: 40px; }
  .hero-img-wrap { display: none; }
  .feature-strip { grid-template-columns: 1fr; margin-top: 20px; }
  .split-section, .split-section.full-bleed { grid-template-columns: 1fr; padding: 50px 6%; gap: 40px; }
  .split-section.reverse { direction: ltr; }
  .split-img { height: 280px; border-radius: var(--radius-md); }
  .contact-section { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .holiday-hero { padding: 150px 6% 80px; }
  .page-banner { padding: 150px 6% 70px; }
  .cta-band { padding: 60px 6%; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band .btn-wrap { flex-direction: column; align-items: center; }
}
