/* ============================================================
   GEETA COTTAGE — GLOBAL CSS
   Design System: Forest Green × Himalayan Gold × Snow White
   ============================================================ */

@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=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,700;1,400&display=swap');

/* ─── TOKENS ─── */
:root {
  --forest:      #1C2B1A;
  --pine:        #2E4A2B;
  --pine-light:  #3D6138;
  --sage:        #6B8C5E;
  --sage-light:  #8AAF7A;
  --mist:        #C8D8BF;
  --snow:        #F7F4EE;
  --cream:       #F0EDE6;
  --gold:        #C9A84C;
  --amber:       #E8C96E;
  --gold-dark:   #A0823A;
  --dusk:        #7B5C3A;
  --text:        #1A1A1A;
  --text-light:  #5A5A5A;
  --text-muted:  #909090;
  --white:       #FFFFFF;
  --black:       #0A0A0A;

  --shadow-sm:   0 2px 12px rgba(0,0,0,0.07);
  --shadow-md:   0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.15);
  --shadow-xl:   0 32px 80px rgba(0,0,0,0.20);

  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;

  --transition:  0.3s cubic-bezier(0.4,0,0.2,1);
  --nav-height:  76px;
}

/* ─── RESET ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ─── TYPOGRAPHY SCALE ─── */
.t-display {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.5px;
}
.t-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.15;
}
.t-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
}
.t-h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 600;
  line-height: 1.3;
}
.t-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
}
.t-body { font-size: 1rem; line-height: 1.85; }
.t-small { font-size: 0.84rem; line-height: 1.7; }
.t-xs { font-size: 0.72rem; line-height: 1.6; }
em { font-style: italic; }

/* ─── UTILITY ─── */
.text-gold { color: var(--gold); }
.text-amber { color: var(--amber); }
.text-sage { color: var(--sage); }
.text-forest { color: var(--forest); }
.text-white { color: var(--white); }
.text-muted { color: var(--text-muted); }
.text-light { color: var(--text-light); }
.bg-forest { background: var(--forest); }
.bg-snow { background: var(--snow); }
.bg-white { background: var(--white); }
.italic { font-style: italic; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.section-pad { padding: 100px 5%; }
.section-pad-sm { padding: 72px 5%; }

/* ─── SECTION HEADER ─── */
.sec-eyebrow {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 14px;
}
.sec-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--forest);
  margin-bottom: 20px;
}
.sec-title em { color: var(--sage); font-style: italic; }
.sec-divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 28px;
}
.sec-body {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-light);
  max-width: 600px;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  cursor: pointer;
}
.btn-gold {
  background: var(--gold);
  color: var(--forest);
}
.btn-gold:hover { background: var(--amber); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.35); }
.btn-forest {
  background: var(--forest);
  color: var(--white);
}
.btn-forest:hover { background: var(--pine); transform: translateY(-2px); }
.btn-outline-white {
  border: 1.5px solid rgba(255,255,255,0.65);
  color: var(--white);
}
.btn-outline-white:hover { border-color: var(--amber); background: rgba(232,201,110,0.12); }
.btn-outline-forest {
  border: 1.5px solid var(--forest);
  color: var(--forest);
}
.btn-outline-forest:hover { background: var(--forest); color: white; }
.btn-sm { padding: 10px 24px; font-size: 0.68rem; }
.btn-lg { padding: 18px 48px; font-size: 0.8rem; }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 72px;
  padding-top: var(--nav-height);
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(28,43,26,0.5) 0%, rgba(28,43,26,0.75) 100%);
  z-index: 1;
}
.page-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  color: white;
  padding: 0 5%;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}
.page-hero-eyebrow::before { content: '—'; }
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  line-height: 1.7;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}
.breadcrumb a { color: rgba(255,255,255,0.65); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--amber); }
.breadcrumb span { color: rgba(255,255,255,0.35); }

/* ─── CARDS ─── */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-img { width: 100%; height: 240px; object-fit: cover; }
.card-body { padding: 28px; }
.card-tag {
  font-size: 0.62rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 8px;
  display: block;
}

/* ─── BADGE ─── */
.badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
}
.badge-gold { background: rgba(201,168,76,0.15); color: var(--gold-dark); }
.badge-forest { background: rgba(28,43,26,0.1); color: var(--forest); }
.badge-sage { background: rgba(107,140,94,0.15); color: var(--pine); }

/* ─── DIVIDER ─── */
.hr-gold { border: none; height: 1px; background: linear-gradient(to right, transparent, var(--gold), transparent); margin: 60px 0; }
.hr-mist { border: none; height: 1px; background: var(--mist); margin: 40px 0; }

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { 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; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── NAVBAR ─── */
#gc-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  padding: 0 5%;
  transition: background 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
}
#gc-nav.transparent { background: transparent; }
#gc-nav.scrolled {
  background: rgba(20,32,18,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.25);
}
#gc-nav.solid { background: var(--forest); }

.nav-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.5px;
}
.nav-logo span { color: var(--amber); }
.nav-logo sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.52rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  display: block;
  margin-top: -4px;
  font-weight: 400;
}
.nav-logo-img {
  height: 100px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links > li > a {
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
  display: block;
  position: relative;
}
.nav-links > li > a:hover { color: var(--amber); }
.nav-links > li > a.active { color: var(--amber); }
.nav-links > li > a.active::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 14px; right: 14px;
  height: 1.5px;
  background: var(--gold);
  border-radius: 1px;
}
.nav-cta-btn {
  background: var(--gold);
  color: var(--forest) !important;
  padding: 10px 22px !important;
  font-weight: 600 !important;
  border-radius: var(--radius-sm);
}
.nav-cta-btn:hover { background: var(--amber) !important; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(20,32,18,0.97);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 12px 0;
  min-width: 200px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 0.25s, transform 0.25s;
  white-space: nowrap;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s, background 0.2s;
}
.nav-dropdown-menu a:hover { color: var(--amber); background: rgba(255,255,255,0.05); }
.nav-dropdown > a::after { content: ' ▾'; font-size: 0.6rem; opacity: 0.6; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  z-index: 9999;
}
.nav-hamburger span {
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile nav */
.nav-mobile {
  position: fixed;
  inset: 0;
  background: var(--forest);
  z-index: 8999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.nav-mobile.open { opacity: 1; pointer-events: auto; }
.nav-mobile a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  letter-spacing: 1px;
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--amber); }
.nav-mobile .mobile-cta { background: var(--gold); color: var(--forest) !important; padding: 14px 40px; border-radius: var(--radius-sm); font-size: 0.85rem !important; letter-spacing: 2px; text-transform: uppercase; font-family: 'Inter', sans-serif !important; font-weight: 600 !important; }

/* ─── FOOTER ─── */
#gc-footer {
  background: #0E1A0D;
  color: rgba(255,255,255,0.5);
}
.footer-top {
  padding: 80px 5% 56px;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
    grid-template-columns: 1.8fr 1fr 1.2fr 1.6fr;
  gap: 48px;
}
.footer-brand-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 4px;
  display: block;
}
.footer-brand-logo span { color: var(--amber); }
.footer-logo-img {
  height: 68px;
  width: auto;
  display: block;
  margin-bottom: 8px;
}
.footer-tagline {
  font-size: 0.65rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}
.footer-brand p { font-size: 0.84rem; line-height: 1.85; margin-bottom: 28px; max-width: 280px; }
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  transition: var(--transition);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.1); }
.footer-col h5 {
  font-size: 0.62rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 22px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s, padding-left 0.2s;
  display: block;
}
.footer-col ul li a:hover { color: var(--amber); padding-left: 6px; }
.footer-contact-item { display: flex; gap: 12px; margin-bottom: 16px; align-items: flex-start; }
.footer-contact-item .icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; opacity: 0.6; }
.footer-contact-item .info { font-size: 0.82rem; line-height: 1.6; }
.footer-contact-item .info a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-contact-item .info a:hover { color: var(--amber); }
.footer-cert {
  margin-top: 24px;
  padding: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.35);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 22px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.75rem;
  max-width: 1400px;
  margin: 0 auto;
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--amber); }

/* ─── FLOATING WHATSAPP ─── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 8000;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #25D366;
  color: white;
  padding: 12px 20px 12px 14px;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  font-size: 0.8rem;
  font-weight: 600;
  transition: var(--transition);
  text-decoration: none;
}
.whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(37,211,102,0.5); }
.whatsapp-float .wa-icon { font-size: 1.4rem; }
.whatsapp-float .wa-text { line-height: 1.3; }
.whatsapp-float .wa-label { font-size: 0.6rem; letter-spacing: 1px; text-transform: uppercase; opacity: 0.8; display: block; }

/* ─── SCROLL TO TOP ─── */
.scroll-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 8000;
  width: 44px; height: 44px;
  background: var(--forest);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 1.1rem;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  cursor: pointer;
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: var(--pine); transform: translateY(-3px); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
    .footer-top { grid-template-columns: 1fr 1fr; gap: 40px 32px; }
  .footer-brand { grid-column: span 2; text-align: center; }
}
@media (max-width: 768px) {
  :root { --nav-height: 64px; }
  .nav-logo-img { height: 79px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .section-pad { padding: 72px 5%; }
  .section-pad-sm { padding: 52px 5%; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: span 2; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 14px; }
  .footer-bottom-links { justify-content: center; }
  .page-hero { min-height: 42vh; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .whatsapp-float .wa-text { display: none; }
  .whatsapp-float { padding: 14px; border-radius: 50%; }
}
