/* ============================================================
   SHIVA GAYATRI HOMES & DEVELOPERS - Main Stylesheet
   Theme: Dark Green + Dark Gold | Light & Dark Mode
   Fonts: Cormorant Garamond (headings) + Jost (body)
============================================================ */

/* ── CSS Variables ── */
:root {
  --green:        #1a3a2a;
  --green-dark:   #0f2419;
  --green-mid:    #254d38;
  --green-light:  #2e6347;
  --gold:         #b8922a;
  --gold-light:   #d4aa4e;
  --gold-dark:    #8a6a18;
  --white:        #ffffff;
  --off-white:    #f8f5ef;
  --cream:        #faf7f2;
  --text-dark:    #1a1a1a;
  --text-mid:     #444444;
  --text-light:   #777777;
  --border:       rgba(184,146,42,0.2);
  --shadow:       0 8px 40px rgba(0,0,0,0.12);
  --shadow-lg:    0 20px 60px rgba(0,0,0,0.18);
  --radius:       8px;
  --radius-lg:    16px;
  --transition:   all 0.35s cubic-bezier(0.4,0,0.2,1);

  /* Light mode defaults */
  --bg:           #ffffff;
  --bg-alt:       #f8f5ef;
  --surface:      #ffffff;
  --body-text:    #333333;
  --heading-text: #1a3a2a;
  --nav-bg:       rgba(255,255,255,0.97);
  --footer-bg:    #0f2419;
  --topbar-bg:    #0f2419;
}

/* ── Dark Mode ── */
[data-theme="dark"] {
  --bg:           #0d1f17;
  --bg-alt:       #122a1e;
  --surface:      #1a3a2a;
  --body-text:    #d8d0c0;
  --heading-text: #d4aa4e;
  --nav-bg:       rgba(13,31,23,0.97);
  --footer-bg:    #060f0a;
  --topbar-bg:    #060f0a;
  --border:       rgba(184,146,42,0.3);
  --text-mid:     #b0a898;
  --text-light:   #888880;
  --shadow:       0 8px 40px rgba(0,0,0,0.4);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--body-text);
  background: var(--bg);
  transition: background 0.3s, color 0.3s;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--heading-text);
  line-height: 1.25;
  font-weight: 700;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ── Container ── */
.container { width: 90%; max-width: 1280px; margin: 0 auto; }

/* ── Buttons ── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--green-dark);
  padding: 12px 28px;
  border-radius: var(--radius);
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(184,146,42,0.3);
}
.btn-gold:hover { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(184,146,42,0.4); color: var(--green-dark); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--gold);
  padding: 11px 28px;
  border-radius: var(--radius);
  border: 2px solid var(--gold);
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline:hover { background: var(--gold); color: var(--green-dark); }

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--green-dark);
  padding: 12px 28px;
  border-radius: var(--radius);
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.btn-white:hover { background: var(--off-white); transform: translateY(-2px); }

/* ── Section Common ── */
section { padding: 90px 0; }
.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--heading-text);
  margin-bottom: 18px;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 600px;
}
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .section-desc { margin: 0 auto; }
.divider-gold {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin-bottom: 20px;
  border-radius: 2px;
}
.divider-gold.center { margin: 0 auto 20px; }

/* ============================================================
   TOP BAR
============================================================ */
.topbar {
  background: var(--topbar-bg);
  padding: 9px 0;
  border-bottom: 1px solid rgba(184,146,42,0.15);
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 20px; }
.topbar-left a, .topbar-left span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  gap: 6px;
}
.topbar-left a:hover { color: var(--gold-light); }
.topbar-left i, .topbar-right i { color: var(--gold); font-size: 0.8rem; }
.topbar-right a {
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(184,146,42,0.2);
}
.topbar-right a:hover { background: var(--gold); color: var(--green-dark); border-color: var(--gold); }
.theme-toggle {
  background: rgba(184,146,42,0.15);
  border: 1px solid rgba(184,146,42,0.3);
  color: var(--gold);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 0.85rem;
}
.theme-toggle:hover { background: var(--gold); color: var(--green-dark); }

/* ============================================================
   MAIN HEADER
============================================================ */
.main-header {
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 900;
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.main-header.scrolled { box-shadow: var(--shadow); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}

.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon {
  width: 44px; height: 44px;
  /*background: linear-gradient(135deg, var(--green), var(--green-light));*/
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
  /*border: 1px solid rgba(184,146,42,0.3);*/
  flex-shrink: 0;
}
.logo-name {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--heading-text);
  line-height: 1.2;
}
.logo-sub {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1;
}

.desktop-nav ul { display: flex; align-items: center; gap: 6px; }
.desktop-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--body-text);
  padding: 8px 14px;
  border-radius: var(--radius);
  position: relative;
  transition: var(--transition);
}
.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%;
  width: 0; height: 2px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width 0.3s;
  border-radius: 2px;
}
.desktop-nav a:hover, .desktop-nav a.active { color: var(--gold); }
.desktop-nav a:hover::after, .desktop-nav a.active::after { width: 70%; }

.header-right { display: flex; align-items: center; gap: 12px; }

/* header-right alter */
@media(min-width:500px){
    .header-right{display:none;}
}

.mobile-theme { display: none !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--body-text);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Side Menu ── */
.side-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1100;
  backdrop-filter: blur(4px);
}
.side-overlay.active { display: block; }

.side-menu {
  position: fixed;
  top: 0; right: -360px;
  width: 320px; height: 100%;
  background: var(--surface);
  z-index: 1200;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
  border-left: 2px solid var(--gold);
  overflow-y: auto;
}
.side-menu.open { right: 0; }

.side-close {
  align-self: flex-end;
  background: rgba(184,146,42,0.1);
  border: 1px solid var(--gold);
  color: var(--gold);
  width: 36px; height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.side-close:hover { background: var(--gold); color: var(--green-dark); }

.side-logo { display: flex; align-items: center; gap: 10px; }

.side-nav li { border-bottom: 1px solid var(--border); }
.side-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 8px;
  font-weight: 500;
  color: var(--body-text);
  transition: var(--transition);
}
.side-nav a i { color: var(--gold); width: 18px; }
.side-nav a:hover { color: var(--gold); padding-left: 14px; }

.side-contact { display: flex; flex-direction: column; gap: 10px; }
.side-contact a {
  font-size: 0.85rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 8px;
}
.side-contact a i { color: var(--gold); }

.side-socials { display: flex; gap: 10px; }
.side-socials a {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.85rem;
  transition: var(--transition);
}
.side-socials a:hover { background: var(--gold); color: var(--green-dark); }

/* ============================================================
   PAGE HEADER (Inner pages)
============================================================ */
.page-header {
  position: relative;
  padding: 120px 0 80px;
  text-align: center;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,25,18,0.85) 0%, rgba(26,58,42,0.75) 100%);
}
.page-header .container { position: relative; z-index: 1; }
.page-header-tag {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-light);
  display: block;
  margin-bottom: 14px;
}
.page-header h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--white);
  margin-bottom: 16px;
}
.page-header p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto 24px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
}
.breadcrumb a { color: var(--gold-light); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb i { font-size: 0.65rem; }

/* ============================================================
   HERO SECTION
============================================================ */
.hero-swiper { width: 100%; height: 92vh; min-height: 560px; }
.hero-slide {
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,25,18,0.5) 0%, rgba(10,25,18,0.7) 60%, rgba(10,25,18,0.85) 100%);
}
.hero-content { position: relative; z-index: 1; padding: 0 20px; max-width: 900px; }
.hero-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(184,146,42,0.4);
  padding: 6px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease;
}
.hero-title {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  color: var(--white);
  margin-bottom: 20px;
  animation: fadeInUp 0.9s ease 0.2s both;
}
.hero-title span { color: var(--gold-light); }
.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto 36px;
  animation: fadeInUp 0.9s ease 0.4s both;
}
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s ease 0.6s both;
}
/* Hero slides bg placeholders (replace with real images) */
.hero-slide-1 { background-image: url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?w=1600'); }
.hero-slide-2 { background-image: url('https://images.unsplash.com/photo-1580587771525-78b9dba3b914?w=1600'); }
.hero-slide-3 { background-image: url('https://images.unsplash.com/photo-1512917774080-9991f1c4c750?w=1600'); }

/* Swiper custom pagination */
.hero-swiper .swiper-pagination-bullet { background: rgba(255,255,255,0.5); width: 10px; height: 10px; }
.hero-swiper .swiper-pagination-bullet-active { background: var(--gold); width: 28px; border-radius: 5px; }
.hero-swiper .swiper-button-next, .hero-swiper .swiper-button-prev {
  color: var(--gold);
  background: rgba(15,36,25,0.6);
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(184,146,42,0.3);
}
.hero-swiper .swiper-button-next::after, .hero-swiper .swiper-button-prev::after { font-size: 1rem; }

/* ============================================================
   INTRO 3 COL
============================================================ */
.intro-section { background: var(--bg-alt); }
.intro-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.intro-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.intro-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.4s;
}
.intro-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.intro-card:hover::before { transform: scaleX(1); }
.intro-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(26,58,42,0.1), rgba(184,146,42,0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  color: var(--gold);
  border: 1px solid var(--border);
}
.intro-card h3 { font-size: 1.4rem; margin-bottom: 12px; }
.intro-card p { font-size: 0.95rem; color: var(--text-mid); }

/* ============================================================
   ABOUT SECTION (2 col)
============================================================ */
.about-section { background: var(--bg); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-images { position: relative; }
.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-badge {
  position: absolute;
  bottom: -20px; left: -20px;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  border: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  text-align: center;
  color: var(--white);
  box-shadow: var(--shadow);
}
.about-img-badge .num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.about-img-badge .lbl { font-size: 0.78rem; letter-spacing: 1px; opacity: 0.85; }
.about-points { display: flex; flex-direction: column; gap: 16px; margin: 28px 0; }
.about-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.about-point i { color: var(--gold); margin-top: 3px; font-size: 1rem; flex-shrink: 0; }
.about-point span { font-size: 0.95rem; color: var(--text-mid); }
.about-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; }

/* ============================================================
   COUNT ANIMATION (4 col)
============================================================ */
.count-section {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.count-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23b8922a' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.count-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 40px; position: relative; }
.count-item { text-align: center; }
.count-item .count-icon { font-size: 2rem; color: var(--gold); margin-bottom: 12px; }
.count-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 8px;
}
.count-lbl { font-size: 0.9rem; color: rgba(255,255,255,0.7); letter-spacing: 0.5px; }
.count-divider { width: 1px; background: rgba(184,146,42,0.2); }

/* ============================================================
   SERVICES (3x2 grid)
============================================================ */
.services-section { background: var(--bg-alt); }
.services-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; }
.service-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-img {
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green), var(--green-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--gold);
  position: relative;
}
.service-img img { width: 100%; height: 100%; object-fit: cover; }
.service-body { padding: 28px; }
.service-body h3 { font-size: 1.35rem; margin-bottom: 10px; }
.service-body p { font-size: 0.92rem; color: var(--text-mid); margin-bottom: 16px; }
.service-link { font-size: 0.88rem; font-weight: 600; color: var(--gold); display: flex; align-items: center; gap: 6px; }
.service-link:hover { gap: 10px; }

/* ============================================================
   WHY CHOOSE US
============================================================ */
.why-section { background: var(--bg); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.why-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.why-img img { width: 100%; height: 100%; object-fit: cover; }
.why-points { display: flex; flex-direction: column; gap: 20px; margin-top: 28px; }
.why-point {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
  transition: var(--transition);
}
.why-point:hover { background: var(--surface); box-shadow: var(--shadow); transform: translateX(4px); }
.why-point-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.why-point h4 { font-size: 1.05rem; margin-bottom: 4px; }
.why-point p { font-size: 0.88rem; color: var(--text-mid); margin: 0; }

/* ============================================================
   GALLERY (3x3)
============================================================ */
.gallery-section { background: var(--bg-alt); }
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  background: var(--green);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,25,18,0.85) 0%, transparent 50%);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.35s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { font-size: 1.8rem; color: var(--gold-light); }

/* ============================================================
   FAQ
============================================================ */
.faq-section { background: var(--bg); }
.faq-wrap { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--body-text);
  transition: var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  width: 28px; height: 28px;
  background: var(--bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.75rem;
  flex-shrink: 0;
  transition: transform 0.3s, background 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(180deg); background: var(--gold); color: var(--green-dark); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 26px;
}
.faq-answer p { font-size: 0.95rem; color: var(--text-mid); padding-bottom: 20px; }
.faq-item.open .faq-answer { max-height: 300px; }

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials-section { background: var(--bg-alt); }
.test-swiper { padding-bottom: 48px !important; }
.test-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
}
.test-quote {
  font-size: 3.5rem;
  color: var(--gold);
  opacity: 0.3;
  font-family: 'Cormorant Garamond', serif;
  line-height: 1;
  margin-bottom: 16px;
}
.test-text { font-size: 1rem; color: var(--text-mid); margin-bottom: 24px; font-style: italic; }
.test-stars { color: var(--gold); margin-bottom: 18px; letter-spacing: 3px; }
.test-author { display: flex; align-items: center; gap: 14px; }
.test-avatar {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold-light);
  border: 2px solid var(--gold);
}
.test-name { font-weight: 600; font-size: 1rem; margin-bottom: 2px; }
.test-role { font-size: 0.8rem; color: var(--text-light); }

/* ============================================================
   CTA SECTION
============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(ellipse at 60% 50%, rgba(184,146,42,0.08) 0%, transparent 70%);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-tag { color: var(--gold-light); letter-spacing: 4px; font-size: 0.78rem; font-weight: 600; text-transform: uppercase; display: block; margin-bottom: 16px; }
.cta-section h2 { font-size: clamp(2rem, 4vw, 3.2rem); color: var(--white); margin-bottom: 18px; }
.cta-section p { font-size: 1.05rem; color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 auto 36px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   CONTACT FORM
============================================================ */
.contact-form-section { background: var(--bg-alt); }
.contact-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-weight: 500; margin-bottom: 8px; font-size: 0.9rem; color: var(--body-text); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--body-text);
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,146,42,0.1); }
.form-group textarea { height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.form-img img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   CONTACT PAGE DETAILS (4 col)
============================================================ */
.contact-details-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; }
.contact-detail-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  transition: var(--transition);
}
.contact-detail-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.cd-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.4rem;
  color: var(--gold);
  border: 2px solid rgba(184,146,42,0.3);
}
.contact-detail-card h4 { font-size: 1.1rem; margin-bottom: 10px; }
.contact-detail-card p, .contact-detail-card a { font-size: 0.9rem; color: var(--text-mid); display: block; }
.contact-detail-card a:hover { color: var(--gold); }

/* ============================================================
   SOCIAL ICONS ROW
============================================================ */
.social-row { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-top: 16px; }
.social-row a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--body-text);
  transition: var(--transition);
  background: var(--surface);
}
.social-row a i { font-size: 1.1rem; }
.social-row a:hover { background: var(--gold); color: var(--green-dark); border-color: var(--gold); }
.social-row a.fb i { color: #1877f2; }
.social-row a.ig i { color: #e1306c; }
.social-row a.yt i { color: #ff0000; }
.social-row a.wa i { color: #25d366; }
.social-row a:hover i { color: var(--green-dark); }

/* ============================================================
   MAP
============================================================ */
.map-section { padding: 0; }
.map-section iframe { width: 100%; height: 460px; border: none; display: block; }

/* ============================================================
   VISION & MISSION
============================================================ */
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.vm-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px;
  position: relative;
  overflow: hidden;
}
.vm-card::after {
  content: '';
  position: absolute;
  bottom: -30px; right: -30px;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,146,42,0.12), transparent 70%);
}
.vm-icon { font-size: 2.5rem; color: var(--gold); margin-bottom: 20px; }
.vm-card h3 { font-size: 1.6rem; margin-bottom: 14px; }
.vm-card p { color: var(--text-mid); }

/* ============================================================
   HOW WE WORK
============================================================ */
.how-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; }
.how-step { text-align: center; position: relative; }
.how-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 32px;
  right: -16px;
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.step-num {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-light);
}
.how-step h4 { font-size: 1.1rem; margin-bottom: 10px; }
.how-step p { font-size: 0.88rem; color: var(--text-mid); }

/* ============================================================
   SERVICES PAGE - Individual sections
============================================================ */
.service-detail-section { padding: 80px 0; }
.service-detail-section:nth-child(even) { background: var(--bg-alt); }
.service-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.service-detail-grid.reverse { direction: rtl; }
.service-detail-grid.reverse > * { direction: ltr; }

/* ============================================================
   PRICING (3 col)
============================================================ */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; align-items: start; }
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}
.price-card.featured {
  background: linear-gradient(155deg, var(--green), var(--green-mid));
  border-color: var(--gold);
  transform: scale(1.03);
}
.price-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  color: var(--green-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.price-name { font-size: 1.1rem; font-weight: 600; margin-bottom: 8px; }
.price-featured .price-name { color: var(--white); }
.price-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin: 20px 0;
}
.price-amount span { font-size: 1rem; font-weight: 400; }
.price-featured .price-amount { color: var(--gold-light); }
.price-features { text-align: left; margin: 24px 0; display: flex; flex-direction: column; gap: 12px; }
.price-features li { display: flex; gap: 10px; font-size: 0.9rem; align-items: center; }
.price-features li i { color: var(--gold); font-size: 0.8rem; }
.price-featured .price-features li { color: rgba(255,255,255,0.8); }

/* ============================================================
   3 COL EXTRA DETAILS
============================================================ */
.extra-details-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.extra-detail-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: var(--transition);
}
.extra-detail-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.ed-icon { font-size: 2rem; color: var(--gold); margin-bottom: 16px; }
.extra-detail-card h4 { font-size: 1.3rem; margin-bottom: 12px; }
.extra-detail-card p { font-size: 0.92rem; color: var(--text-mid); }

/* ============================================================
   FOOTER
============================================================ */
.main-footer { background: var(--footer-bg); }
.footer-top { padding: 80px 0 48px; border-bottom: 1px solid rgba(184,146,42,0.15); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 48px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.footer-logo .logo-name { color: var(--white); }
.footer-col > p { font-size: 0.9rem; color: rgba(255,255,255,0.55); margin-bottom: 24px; line-height: 1.8; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 36px; height: 36px;
  background: rgba(184,146,42,0.1);
  border: 1px solid rgba(184,146,42,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.85rem;
  transition: var(--transition);
}
.footer-socials a:hover { background: var(--gold); color: var(--green-dark); }
.footer-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: var(--gold-light);
  margin-bottom: 22px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(184,146,42,0.2);
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.footer-links a i { font-size: 0.6rem; color: var(--gold); }
.footer-links a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-contact-list li {
  display: flex;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 14px;
  align-items: flex-start;
}
.footer-contact-list li i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.footer-contact-list a { color: rgba(255,255,255,0.55); }
.footer-contact-list a:hover { color: var(--gold-light); }
.footer-bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.84rem; color: rgba(255,255,255,0.4); }

/* ============================================================
   SCROLL TO TOP
============================================================ */
.scroll-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--green-dark);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(184,146,42,0.4);
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 999;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(184,146,42,0.5); }

/* ============================================================
   LIGHTBOX OVERRIDE
============================================================ */
.lb-data .lb-caption { color: var(--gold-light); font-family: 'Cormorant Garamond', serif; }

/* ============================================================
   ANIMATIONS
============================================================ */
@keyframes fadeInDown { from { opacity:0; transform:translateY(-20px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeInUp   { from { opacity:0; transform:translateY(20px);  } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn     { from { opacity:0; } to { opacity:1; } }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-grid, .why-grid { gap: 48px; }
}

@media (max-width: 900px) {
  .topbar { display: none; }
  .desktop-nav { display: none; }
  .hamburger { display: flex; }
  .mobile-theme { display: flex !important; }
  .btn-gold.header-cta { display: none; }

  .intro-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .why-grid { grid-template-columns: 1fr; gap: 36px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .count-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .vm-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr 1fr; }
  .contact-details-grid { grid-template-columns: 1fr 1fr; }
  .contact-form-grid { grid-template-columns: 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .service-detail-grid.reverse { direction: ltr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .extra-details-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-img-badge { left: 0; bottom: -15px; }
}

@media (max-width: 600px) {
  section { padding: 60px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .count-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .how-step:not(:last-child)::after { display: none; }
  .contact-details-grid { grid-template-columns: 1fr; }
  .extra-details-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-swiper { height: 70vh; }
  .hero-btns { flex-direction: column; align-items: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .about-btns { flex-direction: column; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .page-header { padding: 90px 0 60px; background-attachment: scroll; }
}