/* ================================================================
   SANSKAR GATHE PHOTOGRAPHY — style.css  v3.0
   All styles in one file. CSS variables for full theme control.
   ================================================================ */

/* ================================================================
   1. THEME TOKENS — change colors here, everything updates
   ================================================================ */
:root {
  /* Brand accent */
  --gold:        #c9a84c;
  --gold-light:  #e8c97a;
  --gold-dim:    #8a6d2f;
  --gold-faint:  rgba(201,168,76,0.12);
  --gold-glow:   rgba(201,168,76,0.25);

  /* Dark backgrounds */
  --bg:          #080808;
  --bg-1:        #111111;
  --bg-2:        #1a1a1a;
  --bg-3:        #222222;

  /* Text */
  --text:        #f5f0e8;
  --text-muted:  rgba(245,240,232,0.68);
  --text-faint:  rgba(245,240,232,0.3);

  /* Borders */
  --border:      rgba(201,168,76,0.18);
  --border-soft: rgba(201,168,76,0.08);

  /* Functional */
  --overlay:     rgba(8,8,8,0.72);
  --wa-green:    #25d366;
  --error-red:   #c0392b;

  /* Typography */
  --ff-display:  'Cormorant Garamond', serif;
  --ff-script:   'Dancing Script', cursive;
  --ff-body:     'Montserrat', sans-serif;

  /* Spacing */
  --sec-pad:     110px;

  /* Animation */
  --t-fast:      0.18s ease;
  --t-mid:       0.32s ease;
  --t-slow:      0.55s ease;
}

/* Light theme overrides — connect to ThemeToggle.toggle() when ready */
[data-theme="light"] {
  --bg:          #faf8f4;
  --bg-1:        #f0ece4;
  --bg-2:        #e6e0d6;
  --bg-3:        #ffffff;
  --text:        #1a1614;
  --text-muted:  rgba(26,22,20,0.68);
  --text-faint:  rgba(26,22,20,0.32);
  --border:      rgba(139,109,47,0.22);
  --border-soft: rgba(139,109,47,0.1);
  --overlay:     rgba(250,248,244,0.75);
}

/* ================================================================
   2. RESET
   ================================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html   { scroll-behavior: smooth; font-size: 16px; }
img, video { max-width: 100%; display: block; }
a     { color: inherit; text-decoration: none; }
button { font-family: inherit; }

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--ff-body);
  overflow-x: hidden;
  line-height: 1.6;
  /* cursor handled by JS — only applied on mouse devices */
  transition: background-color var(--t-mid), color var(--t-mid);
}

/* JS adds this class on non-touch devices */
body.has-custom-cursor,
body.has-custom-cursor a,
body.has-custom-cursor button,
body.has-custom-cursor [role="button"],
body.has-custom-cursor .g-item,
body.has-custom-cursor .filter-btn,
body.has-custom-cursor .svc-card,
body.has-custom-cursor .strip-item,
body.has-custom-cursor .oc-link,
body.has-custom-cursor .oc-book-btn { cursor: none; }

/* Subtle fade-in on every page load */
body { animation: pgFade 0.3s ease both; }
@keyframes pgFade { from { opacity:0; } to { opacity:1; } }

/* ================================================================
   3. CUSTOM CURSOR — desktop only, hidden on mobile via #cursor CSS
   ================================================================ */
.cursor, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  display: none; /* JS shows them on pointer:fine devices */
}
.cursor      { width: 10px; height: 10px; background: var(--gold); border-radius: 50%; z-index: 9999; transition: transform 0.08s; }
.cursor-ring { width: 36px; height: 36px; border: 1px solid var(--gold); border-radius: 50%; z-index: 9998; opacity: 0.6; transition: transform 0.15s, left 0.15s, top 0.15s; }

/* ================================================================
   4. LOADER
   ================================================================ */
#loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.loader-logo {
  font-family: var(--ff-script);
  font-size: 3rem;
  color: var(--gold);
  opacity: 0;
  transform: translateY(10px);
}
.loader-bar-wrap {
  width: 200px;
  height: 1px;
  background: rgba(201,168,76,0.2);
  overflow: hidden;
}
.loader-bar  { height: 100%; width: 0; background: var(--gold); }
.loader-pct  { font-size: 0.58rem; letter-spacing: 4px; color: var(--gold-dim); }

/* ================================================================
   5. NAVBAR
   ================================================================ */
.navbar {
  position: fixed;
  top: 0; width: 100%;
  z-index: 1000;
  padding: 1.4rem 0;
  transition: background var(--t-mid), padding var(--t-mid), backdrop-filter var(--t-mid);
}
.navbar.scrolled {
  background: rgba(8,8,8,0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}
.navbar-brand span {
  font-family: var(--ff-script);
  font-size: 1.6rem;
  color: var(--gold);
}
.navbar-toggler {
  padding: 0.5rem;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar-toggler .bi-list {
  color: var(--gold);
  font-size: 1.6rem;
}
.nav-link {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted) !important;
  padding: 0.4rem 0.9rem !important;
  transition: color var(--t-fast);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0.9rem; right: 0.9rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-mid);
}
.nav-link:hover,
.nav-link.active { color: var(--gold) !important; }
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--bg) !important;
  padding: 0.5rem 1.4rem !important;
  font-weight: 700 !important;
  margin-left: 0.5rem;
  border: 1px solid var(--gold);
  transition: all var(--t-mid) !important;
}
.nav-cta:hover { background: transparent !important; color: var(--gold) !important; }
.nav-cta::after { display: none !important; }

/* ================================================================
   6. OFFCANVAS — slides from RIGHT, clean icon-row design
   ================================================================ */
/* Override Bootstrap defaults */
#mobileMenu {
  background: var(--bg-1);
  width: min(310px, 88vw) !important;
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

/* ── Header ── */
.oc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 1.4rem 1.2rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
  flex-shrink: 0;
}
.oc-brand { display: flex; flex-direction: column; }
.oc-brand-name {
  font-family: var(--ff-script);
  font-size: 1.65rem;
  color: var(--gold);
  line-height: 1.1;
}
.oc-brand-sub {
  font-size: 0.52rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-dim);
}
.oc-close-btn {
  width: 38px; height: 38px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: all var(--t-fast);
  flex-shrink: 0;
}
.oc-close-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--bg); }

/* ── Scrollable body ── */
.oc-body {
  flex: 1;
  overflow-y: auto;
  padding: 0.6rem 0 2rem;
  display: flex;
  flex-direction: column;
  /* Hide scrollbar but allow scroll */
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.oc-body::-webkit-scrollbar { display: none; }

/* ── Nav links ── */
.oc-nav { display: flex; flex-direction: column; }

.oc-link {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0 1.4rem;
  min-height: 56px;          /* generous tap target */
  color: var(--text-muted);
  border: none;
  background: none;
  border-left: 3px solid transparent;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast), padding-left var(--t-fast);
  -webkit-tap-highlight-color: rgba(201,168,76,0.08);
  user-select: none;
  /* Must not have href or browser intercepts click */
}
.oc-link:hover,
.oc-link:active    { background: rgba(201,168,76,0.06); color: var(--text); padding-left: 1.7rem; }
.oc-link.active    { border-left-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.06); }

.oc-link-icon {
  width: 34px; height: 34px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.88rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: background var(--t-fast), border-color var(--t-fast);
}
.oc-link.active    .oc-link-icon,
.oc-link:hover     .oc-link-icon { background: var(--gold); border-color: var(--gold); color: var(--bg); }

.oc-link-text { flex: 1; font-size: 0.78rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; }

.oc-link-arrow {
  font-size: 0.62rem;
  color: var(--gold-dim);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity var(--t-fast), transform var(--t-fast);
}
.oc-link.active .oc-link-arrow,
.oc-link:hover  .oc-link-arrow { opacity: 1; transform: translateX(0); }

/* ── Divider ── */
.oc-divider { height: 1px; background: var(--border-soft); margin: 0.8rem 1.4rem; }

/* ── Quick contact info ── */
.oc-contact-info { padding: 0 1.4rem; display: flex; flex-direction: column; gap: 0.5rem; }
.oc-contact-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.5rem 0;
  font-size: 0.75rem;
  color: var(--text-muted);
  transition: color var(--t-fast);
  min-height: 40px;
}
.oc-contact-row i { color: var(--gold); font-size: 0.85rem; flex-shrink: 0; }
.oc-contact-row:hover { color: var(--gold); }

/* ── CTA button ── */
.oc-cta { padding: 0 1.4rem; margin-top: 0.4rem; }
.oc-book-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 50px;
  background: var(--gold);
  color: var(--bg);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border: none;
  transition: background var(--t-fast);
  -webkit-tap-highlight-color: transparent;
}
.oc-book-btn:hover { background: var(--gold-light); color: var(--bg); }

/* ── Social icons ── */
.oc-socials {
  display: flex;
  gap: 0.6rem;
  padding: 1.2rem 1.4rem 0;
  justify-content: center;
}
.oc-social {
  width: 42px; height: 42px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-size: 1.05rem;
  transition: all var(--t-fast);
  -webkit-tap-highlight-color: rgba(201,168,76,0.1);
}
.oc-social:hover,
.oc-social:active { background: var(--gold); border-color: var(--gold); color: var(--bg); }
.oc-social--wa:hover,
.oc-social--wa:active { background: var(--wa-green); border-color: var(--wa-green); }

/* ── Tagline ── */
.oc-tagline {
  text-align: center;
  font-size: 0.52rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-dim);
  padding: 0.8rem 1.4rem 0;
  margin: 0;
}

/* ================================================================
   7. BUTTONS
   ================================================================ */
.btn-gold {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 0.75rem 2rem;
  transition: all var(--t-mid);
  display: inline-block;
}
.btn-gold:hover { background: var(--gold); color: var(--bg); }

.btn-gold-fill {
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--bg);
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 0.75rem 2rem;
  transition: all var(--t-mid);
  display: inline-block;
}
.btn-gold-fill:hover { background: transparent; color: var(--gold); }

/* ================================================================
   8. TYPOGRAPHY UTILITIES
   ================================================================ */
.section-eyebrow {
  font-size: 0.62rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
  display: block;
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text);
}
.section-title em { font-style: italic; color: var(--gold); }

.gold-line       { width: 50px; height: 1px; background: var(--gold); margin: 1.4rem auto; }
.gold-line.left  { margin-left: 0; }

.reveal { opacity: 0; transform: translateY(40px); }

/* ================================================================
   9. FORM ELEMENTS
   ================================================================ */
.form-control,
.form-select {
  background: var(--bg-1);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--text);
  border-radius: 0;
  padding: 0.8rem 1rem;
  font-family: var(--ff-body);
  font-size: 0.82rem;
  transition: border-color var(--t-fast);
}
.form-control:focus,
.form-select:focus {
  background: var(--bg-1);
  border-color: var(--gold);
  color: var(--text);
  box-shadow: none;
  outline: none;
}
.form-select option { background: var(--bg-2); }
.form-label {
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}
.form-control::placeholder { color: rgba(245,240,232,0.22); }
textarea.form-control { resize: none; }

/* ================================================================
   10. SOCIAL ICONS (footer)
   ================================================================ */
.social-icon {
  width: 38px; height: 38px;
  border: 1px solid rgba(201,168,76,0.3);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-size: 1rem;
  transition: all var(--t-fast);
}
.social-icon:hover { background: var(--gold); border-color: var(--gold); color: var(--bg); }

/* ================================================================
   11. TOAST
   ================================================================ */
.toast-msg {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  background: var(--gold);
  color: var(--bg);
  padding: 0.85rem 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  z-index: 9990;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
  white-space: nowrap;
  pointer-events: none;
}
.toast-msg.show  { transform: translateX(-50%) translateY(0); }
.toast-msg.error { background: var(--error-red); color: #fff; }

/* ================================================================
   12. WHATSAPP FLOAT
   ================================================================ */
.wa-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 500;
  width: 54px; height: 54px;
  background: var(--wa-green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.55rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  animation: waPulse 2.5s ease-in-out infinite;
}
@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50%      { box-shadow: 0 4px 40px rgba(37,211,102,0.75); }
}

/* ================================================================
   13. FOOTER
   ================================================================ */
footer {
  background: var(--bg);
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--border-soft);
}
.footer-logo { font-family: var(--ff-script); font-size: 2rem; color: var(--gold); }
.footer-links a {
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color var(--t-fast);
  display: block;
  margin-bottom: 0.7rem;
  padding: 0.15rem 0;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border-soft);
  padding-top: 1.5rem;
  margin-top: 2rem;
  font-size: 0.7rem;
  color: var(--text-faint);
}

/* ================================================================
   14. PAGE HERO (inner pages)
   ================================================================ */
.page-hero {
  height: 55vh;
  min-height: 360px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.28);
  transform: scale(1.05);
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(8,8,8,0.05), rgba(8,8,8,1));
}
.page-hero-content { position: relative; z-index: 2; text-align: center; padding: 0 1rem; }
.breadcrumb-nav {
  font-size: 0.62rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.breadcrumb-nav a          { color: var(--gold); }
.breadcrumb-nav span       { margin: 0 0.5rem; color: var(--gold-dim); }

/* ================================================================
   15. CONTACT SECTION (shared across pages)
   ================================================================ */
.contact-wrap { border: 1px solid var(--border); }
.cinfo {
  background: var(--bg-3);
  padding: 3rem 2.5rem;
  height: 100%;
}
.cform { padding: 3rem 2.5rem; }
.citem { display: flex; gap: 1rem; margin-bottom: 1.8rem; align-items: flex-start; }
.cicon {
  width: 42px; height: 42px;
  border: 1px solid var(--gold-dim);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.clabel { font-size: 0.58rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 0.2rem; }
.cval   { font-size: 0.85rem; color: var(--text-muted); }
.cval a { transition: color var(--t-fast); }
.cval a:hover { color: var(--gold); }

/* ================================================================
   16. HOMEPAGE — HERO SLIDER
   ================================================================ */
#hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
  filter: brightness(0.3);
}
.hero-slide.active { opacity: 1; }

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(8,8,8,0.05) 0%, rgba(8,8,8,0.5) 55%, rgba(8,8,8,1) 100%);
}
.hero-content { position: relative; z-index: 2; text-align: center; padding: 0 1rem; max-width: 900px; }

.hero-badge {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  padding: 0.38rem 1.3rem;
  margin-bottom: 1.6rem;
  opacity: 0;
}
.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 9vw, 8rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--text);
  opacity: 0;
  transform: translateY(40px);
}
.hero-title em { font-style: italic; color: var(--gold); }

.hero-sub {
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 1.2rem;
  opacity: 0;
}
.hero-cta {
  margin-top: 2.4rem;
  opacity: 0;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 3; text-align: center;
}
.hero-scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 0 auto 0.5rem;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{ opacity:0.3; } 50%{ opacity:1; } }
.hero-scroll-label { font-size: 0.52rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-dim); }

.hero-dots { position: absolute; bottom: 2.5rem; right: 2.5rem; z-index: 3; display: flex; gap: 0.5rem; align-items: center; }
.hero-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(201,168,76,0.3);
  border: none; padding: 0;
  cursor: pointer;
  transition: all var(--t-mid);
}
.hero-dot.active { background: var(--gold); transform: scale(1.5); }

/* ================================================================
   17. HOMEPAGE — ABOUT SECTION
   ================================================================ */
#about {
  padding: var(--sec-pad) 0;
  background: var(--bg-1);
}
.about-img-wrap { position: relative; }
.about-img-wrap img {
  width: 100%; height: 520px;
  object-fit: cover;
  filter: grayscale(15%) brightness(0.88);
  transition: filter var(--t-slow);
}
.about-img-wrap:hover img { filter: none; }
.about-frame {
  position: absolute;
  top: -16px; left: -16px; right: 16px; bottom: 16px;
  border: 1px solid var(--gold-dim);
  pointer-events: none;
}
.about-exp {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--gold);
  color: var(--bg);
  width: 100px; height: 100px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
.exp-num   { font-family: var(--ff-display); font-size: 2.2rem; font-weight: 300; line-height: 1; }
.exp-label { font-size: 0.52rem; letter-spacing: 2px; text-transform: uppercase; }

.stat-box {
  border: 1px solid var(--gold-faint);
  padding: 1.8rem;
  text-align: center;
  background: var(--bg-2);
  transition: border-color var(--t-fast), transform var(--t-fast);
}
.stat-box:hover { border-color: var(--border); transform: translateY(-2px); }
.stat-num   { font-family: var(--ff-display); font-size: 2.8rem; font-weight: 300; color: var(--gold); }
.stat-label { font-size: 0.6rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--text-muted); margin-top: 0.3rem; }

/* ================================================================
   18. HOMEPAGE — SERVICES
   ================================================================ */
#services-preview { padding: var(--sec-pad) 0; background: var(--bg-2); }
.svc-card {
  border: 1px solid var(--gold-faint);
  padding: 2rem 1.8rem;
  background: var(--bg-3);
  transition: all var(--t-mid);
  height: 100%;
  position: relative;
  overflow: hidden;
  display: block;
  color: inherit;
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--gold);
  transition: height var(--t-mid);
}
.svc-card:hover { border-color: rgba(201,168,76,0.4); transform: translateY(-4px); color: inherit; }
.svc-card:hover::before { height: 100%; }
.svc-icon  { font-size: 1.9rem; color: var(--gold); margin-bottom: 1rem; display: block; }
.svc-title { font-family: var(--ff-display); font-size: 1.35rem; margin-bottom: 0.6rem; color: var(--text); }
.svc-desc  { color: var(--text-muted); font-size: 0.8rem; line-height: 1.8; }

/* ================================================================
   19. HOMEPAGE — GALLERY STRIP
   ================================================================ */
#gallery-strip { background: var(--bg); padding: 60px 0 var(--sec-pad); }
.strip-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 8px;
}
.strip-item:first-child { grid-row: 1 / 3; }
.strip-item { overflow: hidden; position: relative; }
.strip-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow), filter var(--t-mid);
  filter: brightness(0.78);
}
.strip-item:hover img { transform: scale(1.06); filter: brightness(1); }
.strip-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.82), transparent 55%);
  opacity: 0;
  transition: opacity var(--t-mid);
  display: flex; align-items: flex-end; padding: 1.2rem;
}
.strip-item:hover .strip-overlay { opacity: 1; }
.strip-cat { font-size: 0.6rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }

/* ================================================================
   20. HOMEPAGE — WHY CHOOSE ME
   ================================================================ */
#why-us { padding: var(--sec-pad) 0; background: var(--bg-1); }
.why-card {
  padding: 2rem;
  border: 1px solid var(--gold-faint);
  background: var(--bg-2);
  height: 100%;
  transition: border-color var(--t-fast);
}
.why-card:hover { border-color: var(--border); }
.why-icon  { font-size: 2rem; color: var(--gold); margin-bottom: 1rem; display: block; }
.why-title { font-family: var(--ff-display); font-size: 1.3rem; margin-bottom: 0.6rem; color: var(--text); }
.why-desc  { color: var(--text-muted); font-size: 0.8rem; line-height: 1.8; }

/* ================================================================
   21. PARALLAX QUOTE
   ================================================================ */
.parallax-section {
  background: url('https://images.unsplash.com/photo-1519741497674-611481863552?w=1800&q=80') center/cover fixed no-repeat;
  padding: 130px 0;
  position: relative;
}
.parallax-section::before { content: ''; position: absolute; inset: 0; background: var(--overlay); }
.parallax-section .container { position: relative; z-index: 1; }

/* ================================================================
   22. TESTIMONIALS
   ================================================================ */
#testimonials { background: var(--bg); padding: var(--sec-pad) 0; }
.testi-card { padding: 2.2rem; border: 1px solid var(--gold-faint); background: var(--bg-2); height: 100%; }
.testi-stars { color: var(--gold); margin-bottom: 1rem; letter-spacing: 2px; }
.testi-text {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.testi-author { display: flex; align-items: center; gap: 1rem; }
.testi-avatar { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold-dim); }
.testi-name   { font-size: 0.82rem; font-weight: 600; color: var(--text); }
.testi-loc    { font-size: 0.6rem; letter-spacing: 1.5px; color: var(--gold); text-transform: uppercase; }

/* ================================================================
   23. CONTACT STRIP SECTION
   ================================================================ */
#contact-strip { background: var(--bg-1); padding: var(--sec-pad) 0 0; }

/* ================================================================
   24. GALLERY PAGE
   ================================================================ */
.filter-wrap {
  position: sticky;
  top: 0;                         /* sticks below the fixed navbar space */
  z-index: 100;
  background: rgba(8,8,8,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-soft);
}
.filter-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}
.filter-btn {
  font-size: 0.62rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid rgba(201,168,76,0.3);
  background: transparent;
  color: var(--text-muted);
  padding: 0.45rem 1.1rem;
  transition: all var(--t-fast);
  font-family: var(--ff-body);
  min-height: 36px;
}
.filter-btn:hover,
.filter-btn.active { background: var(--gold); color: var(--bg); border-color: var(--gold); }

.gallery-section { padding: 50px 0 var(--sec-pad); background: var(--bg); }
.gallery-grid    { columns: 3; column-gap: 10px; }
.g-item {
  break-inside: avoid;
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
}
.g-item img {
  width: 100%;
  display: block;
  filter: brightness(0.85);
  transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94), filter var(--t-mid);
  min-height: 180px;
  background: var(--bg-2);
}
.g-item:hover img { transform: scale(1.05); filter: brightness(1); }
.g-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.85), transparent 55%);
  opacity: 0;
  transition: opacity var(--t-mid);
  display: flex; align-items: flex-end;
  padding: 1.2rem;
}
.g-item:hover .g-item-overlay { opacity: 1; }
.g-item-cat     { font-size: 0.58rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); }
.g-item-caption { font-family: var(--ff-display); font-size: 1rem; color: var(--text); }
.g-item-icon {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  opacity: 0; transition: opacity var(--t-mid);
  font-size: 2rem; color: var(--gold);
}
.g-item:hover .g-item-icon { opacity: 1; }

.empty-state { text-align: center; padding: 5rem 1rem; color: var(--text-muted); }
.empty-state i { font-size: 3rem; color: var(--gold-dim); margin-bottom: 1rem; display: block; }

/* ================================================================
   25. LIGHTBOX
   ================================================================ */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.97);
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lb-img-wrap   { max-width: 90vw; max-height: 88vh; }
.lb-img-wrap img { max-width: 90vw; max-height: 85vh; object-fit: contain; display: block; }
.lb-caption    { text-align: center; padding: 0.8rem; }
.lb-caption-cat   { font-size: 0.6rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }
.lb-caption-title { font-family: var(--ff-display); font-size: 1.2rem; color: var(--text); }
.lb-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  font-size: 2rem; color: var(--text);
  background: none; border: none;
  transition: color var(--t-fast);
}
.lb-close:hover { color: var(--gold); }
.lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  font-size: 1.4rem; color: var(--text);
  background: rgba(0,0,0,0.5);
  border: none;
  width: 50px; height: 50px;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--t-fast);
}
.lb-nav:hover { background: var(--gold); color: var(--bg); }
.lb-prev { left: 1rem; }
.lb-next { right: 1rem; }

/* ================================================================
   26. ABOUT PAGE
   ================================================================ */
#about-main  { padding: var(--sec-pad) 0; background: var(--bg-1); }
#journey     { padding: var(--sec-pad) 0; background: var(--bg); }
#equipment   { padding: 80px 0;           background: var(--bg-2); }
#cta-about   { padding: var(--sec-pad) 0; background: var(--bg); }

.skill-item  { margin-bottom: 1.5rem; }
.skill-name  {
  font-size: 0.7rem; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 0.5rem;
  display: flex; justify-content: space-between;
}
.skill-bar   { height: 2px; background: rgba(201,168,76,0.15); }
.skill-fill  { height: 100%; background: var(--gold); width: 0; transition: width 1.5s ease; }

.journey-item { display: flex; gap: 2rem; margin-bottom: 3rem; }
.j-year {
  font-family: var(--ff-display); font-size: 1.35rem;
  font-style: italic; color: var(--gold);
  min-width: 80px; padding-top: 0.2rem;
}
.j-content {
  border-left: 1px solid rgba(201,168,76,0.2);
  padding-left: 2rem; padding-bottom: 2rem;
  position: relative;
}
.j-content::before {
  content: '';
  position: absolute; left: -5px; top: 8px;
  width: 9px; height: 9px;
  background: var(--gold); border-radius: 50%;
}
.j-title { font-family: var(--ff-display); font-size: 1.2rem; margin-bottom: 0.4rem; color: var(--text); }
.j-desc  { color: var(--text-muted); font-size: 0.82rem; line-height: 1.8; }

.eq-card {
  border: 1px solid var(--gold-faint);
  padding: 1.8rem;
  background: var(--bg-3);
}
.eq-icon { font-size: 1.8rem; color: var(--gold); margin-bottom: 1rem; }
.eq-name { font-family: var(--ff-display); font-size: 1.2rem; margin-bottom: 0.3rem; color: var(--text); }
.eq-desc { color: var(--text-muted); font-size: 0.78rem; line-height: 1.7; }

.cta-box {
  border: 1px solid var(--border);
  padding: 4rem;
  text-align: center;
  background: var(--bg-2);
  position: relative; overflow: hidden;
}
.cta-box::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.05), transparent 70%);
  pointer-events: none;
}

/* ================================================================
   27. CONTACT PAGE
   ================================================================ */
#contact-main { padding: var(--sec-pad) 0; background: var(--bg-1); }
#packages     { padding: var(--sec-pad) 0; background: var(--bg); }
#faq          { padding: 80px 0;           background: var(--bg-2); }

.pkg-card {
  border: 1px solid var(--gold-faint);
  background: var(--bg-2);
  overflow: hidden; height: 100%;
  transition: all var(--t-mid);
}
.pkg-card:hover { border-color: var(--gold-dim); transform: translateY(-4px); }
.pkg-header {
  padding: 2rem;
  background: var(--bg-3);
  border-bottom: 1px solid var(--gold-faint);
}
.pkg-name  { font-family: var(--ff-display); font-size: 1.5rem; margin-bottom: 0.3rem; color: var(--text); }
.pkg-tag   { font-size: 0.6rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }
.pkg-price { font-family: var(--ff-display); font-size: 2.2rem; color: var(--gold); margin-top: 0.8rem; }
.pkg-price span { font-size: 0.8rem; color: var(--text-muted); font-family: var(--ff-body); }
.pkg-body  { padding: 2rem; }
.pkg-feature {
  font-size: 0.8rem; color: var(--text-muted);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(201,168,76,0.07);
  display: flex; align-items: center; gap: 0.7rem;
}
.pkg-feature i { color: var(--gold); font-size: 0.8rem; flex-shrink: 0; }
.pkg-card.featured { border-color: var(--gold-dim); }
.pkg-card.featured .pkg-header { background: linear-gradient(135deg, var(--bg-3), rgba(201,168,76,0.07)); }
.featured-badge {
  font-size: 0.58rem; letter-spacing: 2px; text-transform: uppercase;
  background: var(--gold); color: var(--bg);
  padding: 0.25rem 0.7rem; font-weight: 600;
  display: inline-block; margin-top: 0.5rem;
}

.faq-item    { border-bottom: 1px solid var(--gold-faint); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.3rem 0; min-height: 56px;
  font-size: 0.88rem; font-weight: 500; color: var(--text);
  transition: color var(--t-fast);
}
.faq-q:hover      { color: var(--gold); }
.faq-icon         { color: var(--gold); font-size: 1rem; transition: transform var(--t-mid); flex-shrink: 0; }
.faq-a            { color: var(--text-muted); font-size: 0.82rem; line-height: 1.9; padding-bottom: 1.2rem; display: none; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-item.open .faq-a    { display: block; }

/* ================================================================
   28. 404 PAGE
   ================================================================ */
.page-404 {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 2rem;
}

/* ================================================================
   29. RESPONSIVE
   ================================================================ */

/* ── Tablet ── */
@media (max-width: 991px) {
  :root { --sec-pad: 80px; }
  .gallery-grid { columns: 2; }
  .strip-grid   { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3,200px); }
  .strip-item:first-child { grid-row: auto; }
  .hero-dots    { display: none; }
}

/* ── Mobile ── */
@media (max-width: 767px) {
  :root { --sec-pad: 60px; }

  /* Hero */
  .hero-title { font-size: clamp(2.4rem,11vw,4rem); }
  .hero-badge { font-size: 0.56rem; letter-spacing: 2.5px; padding: 0.32rem 1rem; }
  .hero-sub   { font-size: 0.62rem; letter-spacing: 2px; }
  .hero-cta   { gap: 0.7rem; }

  /* About image */
  .about-img-wrap img { height: 300px; }
  .about-frame        { display: none; }
  .about-exp          { bottom: -12px; right: 0; width: 80px; height: 80px; }
  .exp-num            { font-size: 1.8rem; }
  .exp-label          { font-size: 0.46rem; }

  /* Services */
  .svc-card  { padding: 1.4rem 1.2rem; }
  .svc-title { font-size: 1.15rem; }
  .svc-desc  { font-size: 0.76rem; }

  /* Gallery */
  .gallery-grid { columns: 1; }

  /* Filter — horizontal scroll on mobile */
  .filter-inner {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding: 0 1rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .filter-inner::-webkit-scrollbar { display: none; }
  .filter-btn { flex-shrink: 0; white-space: nowrap; }

  /* Gallery strip */
  .strip-grid { grid-template-columns: 1fr; grid-template-rows: repeat(5,220px); }
  .strip-item:first-child { grid-row: auto; }

  /* Contact */
  .cinfo, .cform { padding: 1.8rem 1.2rem; }

  /* Contact strip stacking */
  .contact-wrap .col-lg-4,
  .contact-wrap .col-lg-8 { width: 100%; }

  /* Packages */
  .pkg-header { padding: 1.4rem; }
  .pkg-body   { padding: 1.4rem; }

  /* Journey */
  .journey-item { flex-direction: column; gap: 0.5rem; }
  .j-year       { min-width: auto; }

  /* CTA box */
  .cta-box { padding: 2.5rem 1.5rem; }

  /* WA float */
  .wa-float { bottom: 1.2rem; right: 1.2rem; width: 48px; height: 48px; font-size: 1.4rem; }

  /* Lightbox nav */
  .lb-nav { width: 40px; height: 40px; font-size: 1.1rem; }
  .lb-prev { left: 0.3rem; }
  .lb-next { right: 0.3rem; }

  /* Page hero */
  .page-hero { height: 40vh; min-height: 300px; }
}

/* ── Small phones ── */
@media (max-width: 420px) {
  .hero-title { font-size: clamp(2rem,13vw,3rem); }
  .section-title { font-size: clamp(1.8rem,8vw,2.5rem); }
}
