/* ═══════════════════════════════════════════════════════════
   THATHVAMASI CLICKS — Global Stylesheet
   Palette: Deep Navy #0d0d1a | Gold #d4af37 | Ivory #f5f0e8
            Charcoal #1c1c2e | Warm White #faf8f4
   ═══════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Montserrat:wght@300;400;500;600;700&family=Dancing+Script:wght@400;600;700&display=swap');

:root {
  --navy:   #0d0d1a;
  --navy2:  #1c1c2e;
  --gold:   #d4af37;
  --gold2:  #f0c040;
  --ivory:  #f5f0e8;
  --warm:   #faf8f4;
  --text:   #2a2a3e;
  --muted:  #6b6b80;
  --white:  #ffffff;
  --ff-display: 'Cormorant Garamond', serif;
  --ff-brand:   'Dancing Script', cursive;
  --ff-body:    'Montserrat', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  background: var(--warm);
  color: var(--text);
  overflow-x: hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ══════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
  background: rgba(13,13,26,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212,175,55,0.2);
  transition: all 0.3s;
}
.navbar.scrolled { height: 60px; background: rgba(13,13,26,0.99); }

.nav-brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.nav-brand .brand-icon { font-size: 1.6rem; }
.nav-brand .brand-text {
  font-family: var(--ff-brand);
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1;
}
.nav-brand .brand-sub {
  font-family: var(--ff-body);
  font-size: 0.55rem;
  color: rgba(212,175,55,0.6);
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
}

.nav-links {
  display: flex; align-items: center; gap: 4px;
  list-style: none;
}
.nav-links a {
  font-family: var(--ff-body);
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  padding: 8px 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: 0; left: 50%; right: 50%;
  height: 1px; background: var(--gold);
  transition: all 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { left: 12px; right: 12px; }

.nav-book {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 10px 20px !important;
  font-weight: 700 !important;
  border-radius: 2px;
  letter-spacing: 1px !important;
}
.nav-book::after { display: none !important; }
.nav-book:hover { background: var(--gold2) !important; color: var(--navy) !important; }

.hamburger {
  display: none; cursor: pointer; flex-direction: column;
  gap: 5px; background: none; border: none; padding: 5px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--gold); transition: all 0.3s;
}

/* ══════════════════════════════════════════
   HERO (index.html)
   ══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 50%, #2a1a00 100%);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  position: relative; overflow: hidden;
  padding-top: 70px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0, 0, 0, 0.45);
}
.hero-particles {
  position: absolute; inset: 0; pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 900px; padding: 0 20px;
}
.hero-eyebrow {
  font-family: var(--ff-body);
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
  opacity: 0; animation: fadeUp 0.8s 0.3s forwards;
}
.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 300; line-height: 1.1;
  color: var(--white); margin-bottom: 10px;
  opacity: 0; animation: fadeUp 0.8s 0.5s forwards;
}
.hero-title em {
  font-style: italic; color: var(--gold);
  font-weight: 600;
}
.hero-brand {
  font-family: var(--ff-brand);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--gold); display: block;
  opacity: 0; animation: fadeUp 0.8s 0.7s forwards;
}
.hero-sub {
  font-family: var(--ff-body);
  font-size: 0.95rem; font-weight: 300;
  color: rgba(255,255,255,0.7);
  max-width: 550px; margin: 20px auto 40px;
  line-height: 1.7; letter-spacing: 0.5px;
  opacity: 0; animation: fadeUp 0.8s 0.9s forwards;
}
.hero-btns {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.8s 1.1s forwards;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border: none; padding: 15px 36px;
  font-family: var(--ff-body);
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; transition: all 0.3s;
  text-decoration: none; border-radius: 2px;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(212,175,55,0.4); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
  padding: 15px 36px;
  font-family: var(--ff-body);
  font-size: 0.8rem; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; transition: all 0.3s;
  text-decoration: none; border-radius: 2px;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.hero-stats {
  position: absolute; bottom: 50px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 60px;
  opacity: 0; animation: fadeUp 0.8s 1.3s forwards;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--ff-display);
  font-size: 2rem; font-weight: 600; color: var(--gold);
}
.stat-label {
  font-size: 0.65rem; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
}

.scroll-hint {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  opacity: 0; animation: fadeIn 1s 2s forwards;
}
.scroll-hint span {
  display: block; width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 0 auto; animation: scrollPulse 2s infinite;
}

/* ══════════════════════════════════════════
   SECTION COMMONS
   ══════════════════════════════════════════ */
section { padding: 100px 40px; }

.section-label {
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
  display: block;
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400; line-height: 1.2;
  color: var(--navy);
}
.section-title em { font-style: italic; color: var(--gold); }
.section-title.light { color: var(--white); }
.section-title.light em { color: var(--gold); }

.section-divider {
  width: 60px; height: 1px;
  background: var(--gold); margin: 20px 0;
}
.section-divider.center { margin: 20px auto; }

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ══════════════════════════════════════════
   SERVICES PREVIEW (homepage)
   ══════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px; margin-top: 50px;
}
.service-card {
  position: relative; overflow: hidden;
  aspect-ratio: 3/4; border-radius: 4px;
  cursor: pointer;
  transition: transform 0.4s;
}
.service-card:hover { transform: translateY(-6px); }
.service-card img {
  width: 100%; height: 100%;
  object-fit: cover; transition: transform 0.6s;
}
.service-card:hover img { transform: scale(1.08); }
.service-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,13,26,0.9) 0%, transparent 60%);
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 20px;
}
.service-card-icon { font-size: 1.8rem; margin-bottom: 8px; }
.service-card-name {
  font-family: var(--ff-display);
  font-size: 1.1rem; color: var(--white); font-weight: 600;
}
.service-card-tag {
  font-size: 0.65rem; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold); margin-top: 4px;
}

/* ══════════════════════════════════════════
   PORTFOLIO GRID
   ══════════════════════════════════════════ */
.portfolio-filter {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center; margin: 40px 0;
}
.filter-btn {
  background: transparent;
  border: 1px solid rgba(212,175,55,0.3);
  color: var(--muted);
  padding: 8px 20px;
  font-family: var(--ff-body);
  font-size: 0.7rem; letter-spacing: 2px;
  text-transform: uppercase; cursor: pointer;
  transition: all 0.3s; border-radius: 2px;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--gold); color: var(--navy);
  border-color: var(--gold);
}
.portfolio-masonry {
  columns: 3; column-gap: 12px;
}
.portfolio-item {
  break-inside: avoid; margin-bottom: 12px;
  position: relative; overflow: hidden;
  border-radius: 4px; cursor: pointer;
}
.portfolio-item img {
  width: 100%; display: block;
  transition: transform 0.5s;
}
.portfolio-item:hover img { transform: scale(1.05); }
.portfolio-item-overlay {
  position: absolute; inset: 0;
  background: rgba(13,13,26,0.7);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: center; justify-content: center;
}
.portfolio-item:hover .portfolio-item-overlay { opacity: 1; }
.portfolio-item-overlay span {
  color: var(--gold); font-size: 1.8rem;
}

/* ══════════════════════════════════════════
   PRICING
   ══════════════════════════════════════════ */
.pricing-section { background: var(--navy); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px; margin-top: 50px; max-width: 1100px; margin-inline: auto;
}
.pricing-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: 8px; padding: 36px 30px;
  position: relative; transition: all 0.4s;
}
.pricing-card:hover, .pricing-card.featured {
  border-color: var(--gold);
  background: rgba(212,175,55,0.06);
  transform: translateY(-4px);
}
.pricing-card.featured { border-width: 2px; }
.pkg-badge {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--navy);
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 4px 16px; border-radius: 0 0 6px 6px;
}
.pkg-name {
  font-family: var(--ff-display);
  font-size: 1.8rem; font-weight: 600;
  color: var(--white); margin-bottom: 6px;
}
.pkg-price {
  font-family: var(--ff-display);
  font-size: 3rem; font-weight: 700;
  color: var(--gold); line-height: 1;
  margin: 16px 0;
}
.pkg-price sup { font-size: 1.2rem; vertical-align: super; }
.pkg-features {
  list-style: none; margin: 20px 0;
}
.pkg-features li {
  display: flex; align-items: flex-start; gap: 10px;
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem; line-height: 1.5;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.pkg-features li::before { content: '✦'; color: var(--gold); flex-shrink: 0; }

/* ══════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════ */
.testimonials-section { background: var(--ivory); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px; margin-top: 50px;
}
.testimonial-card {
  background: var(--white);
  border-radius: 8px; padding: 32px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
  border-left: 3px solid var(--gold);
  transition: transform 0.3s;
}
.testimonial-card:hover { transform: translateY(-4px); }
.stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text {
  font-family: var(--ff-display);
  font-size: 1.05rem; font-style: italic;
  color: var(--text); line-height: 1.7;
  margin-bottom: 20px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--navy));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: 1rem;
}
.author-name { font-weight: 600; font-size: 0.85rem; color: var(--navy); }
.author-loc { font-size: 0.72rem; color: var(--muted); }

/* ══════════════════════════════════════════
   CONTACT & BOOK NOW FORMS
   ══════════════════════════════════════════ */
.form-section { background: var(--navy); }
.form-container {
  max-width: 800px; margin: 0 auto;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: 12px; padding: 50px;
}
.form-step {
  display: none;
}
.form-step.active { display: block; }
.step-indicator {
  display: flex; align-items: center; gap: 0;
  margin-bottom: 40px; justify-content: center;
}
.step-dot {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(212,175,55,0.3);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem; font-weight: 700;
  transition: all 0.3s; position: relative;
}
.step-dot.active {
  background: var(--gold); border-color: var(--gold);
  color: var(--navy);
}
.step-dot.done {
  background: rgba(212,175,55,0.2); border-color: var(--gold);
  color: var(--gold);
}
.step-line {
  flex: 1; max-width: 80px; height: 1px;
  background: rgba(212,175,55,0.2);
}
.step-line.done { background: var(--gold); }
.step-label {
  position: absolute; top: 42px; left: 50%; transform: translateX(-50%);
  font-size: 0.55rem; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.4); white-space: nowrap;
}
.step-dot.active .step-label { color: var(--gold); }

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.6); margin-bottom: 8px;
}
.form-control {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 4px; padding: 13px 16px;
  color: var(--white);
  font-family: var(--ff-body); font-size: 0.88rem;
  transition: border-color 0.3s;
  -webkit-appearance: none;
}
.form-control:focus {
  outline: none; border-color: var(--gold);
  background: rgba(212,175,55,0.05);
}
.form-control::placeholder { color: rgba(255,255,255,0.25); }
.form-control option { background: var(--navy2); color: var(--white); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.pkg-cards { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 10px; }
.pkg-select-card {
  border: 2px solid rgba(212,175,55,0.15);
  border-radius: 8px; padding: 20px;
  cursor: pointer; transition: all 0.3s;
  background: rgba(255,255,255,0.02);
}
.pkg-select-card:hover, .pkg-select-card.selected {
  border-color: var(--gold);
  background: rgba(212,175,55,0.08);
}
.pkg-select-card input[type="radio"] { display: none; }
.pkg-select-name {
  font-family: var(--ff-display); font-size: 1.4rem;
  color: var(--white); font-weight: 600; margin-bottom: 4px;
}
.pkg-select-price { color: var(--gold); font-size: 1.3rem; font-weight: 700; margin-bottom: 10px; }
.pkg-select-features { font-size: 0.78rem; color: rgba(255,255,255,0.6); line-height: 1.6; }

.form-actions { display: flex; gap: 12px; justify-content: flex-end; margin-top: 30px; }
.btn-next, .btn-prev, .btn-submit {
  padding: 13px 30px; border: none; cursor: pointer;
  font-family: var(--ff-body); font-size: 0.8rem;
  font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  border-radius: 4px; transition: all 0.3s;
}
.btn-next, .btn-submit { background: var(--gold); color: var(--navy); }
.btn-next:hover, .btn-submit:hover { background: var(--gold2); transform: translateY(-1px); }
.btn-prev { background: rgba(255,255,255,0.1); color: var(--white); }
.btn-prev:hover { background: rgba(255,255,255,0.15); }

/* ══════════════════════════════════════════
   PAGE HERO (inner pages)
   ══════════════════════════════════════════ */
.page-hero {
  height: 40vh; min-height: 280px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding-top: 70px; position: relative;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--warm));
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero .section-label { justify-content: center; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  justify-content: center; margin-top: 12px;
}
.breadcrumb a { color: rgba(255,255,255,0.5); font-size: 0.75rem; text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.3); font-size: 0.75rem; }

/* ══════════════════════════════════════════
   ABOUT PAGE
   ══════════════════════════════════════════ */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center; max-width: 1100px; margin: 0 auto;
}
.about-image-wrap {
  position: relative;
}
.about-image-wrap img {
  width: 100%; border-radius: 4px;
  filter: grayscale(10%);
}
.about-image-wrap::before {
  content: '';
  position: absolute; top: -15px; left: -15px;
  right: 15px; bottom: 15px;
  border: 1px solid var(--gold);
  border-radius: 4px; z-index: -1;
}
.about-text p {
  color: var(--muted); line-height: 1.8;
  margin-bottom: 16px; font-size: 0.9rem;
}
.about-values {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin-top: 30px;
}
.value-item {
  display: flex; gap: 12px; align-items: flex-start;
}
.value-icon { font-size: 1.4rem; flex-shrink: 0; }
.value-title { font-weight: 600; font-size: 0.85rem; color: var(--navy); }
.value-desc { font-size: 0.78rem; color: var(--muted); line-height: 1.5; }

/* ══════════════════════════════════════════
   SERVICES PAGE
   ══════════════════════════════════════════ */
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px; margin-top: 50px;
}
.service-full-card {
  background: var(--white);
  border-radius: 8px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: all 0.4s;
  text-decoration: none;
}
.service-full-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.14); }
.service-full-card img {
  width: 100%; height: 220px; object-fit: cover;
  transition: transform 0.5s;
}
.service-full-card:hover img { transform: scale(1.06); }
.service-card-body { padding: 22px; }
.service-card-emoji { font-size: 1.6rem; margin-bottom: 8px; }
.service-card-title {
  font-family: var(--ff-display);
  font-size: 1.3rem; font-weight: 600;
  color: var(--navy); margin-bottom: 8px;
}
.service-card-desc { font-size: 0.8rem; color: var(--muted); line-height: 1.6; }

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
footer {
  background: var(--navy);
  padding: 60px 40px 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px; margin-bottom: 40px;
}
.footer-brand .brand-text { color: var(--gold); font-size: 1.8rem; }
.footer-tagline { font-size: 0.8rem; color: rgba(255,255,255,0.4); margin-top: 10px; line-height: 1.6; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.social-link {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.3);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); font-size: 0.9rem;
  text-decoration: none; transition: all 0.3s;
}
.social-link:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.footer-col h4 {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.5); text-decoration: none;
  font-size: 0.82rem; transition: color 0.3s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex; gap: 10px; align-items: flex-start;
  color: rgba(255,255,255,0.5); font-size: 0.82rem;
  margin-bottom: 10px;
}
.footer-contact-item span:first-child { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 20px; text-align: center;
  color: rgba(255,255,255,0.3); font-size: 0.75rem;
}

/* ══════════════════════════════════════════
   TOAST / ALERT
   ══════════════════════════════════════════ */
.toast {
  position: fixed; bottom: 30px; right: 30px; z-index: 9999;
  background: var(--navy2);
  border: 1px solid var(--gold);
  border-radius: 8px; padding: 16px 24px;
  color: var(--white); font-size: 0.85rem;
  max-width: 340px;
  transform: translateY(100px); opacity: 0;
  transition: all 0.4s; pointer-events: none;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { border-left: 4px solid #4caf50; }
.toast.error { border-left: 4px solid #f44336; }

/* ══════════════════════════════════════════
   LIGHTBOX
   ══════════════════════════════════════════ */
.lightbox {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,0.95);
  display: none; align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw; max-height: 90vh;
  border-radius: 4px;
}
.lightbox-close {
  position: absolute; top: 20px; right: 30px;
  color: var(--gold); font-size: 2rem;
  cursor: pointer; background: none; border: none;
}
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(212,175,55,0.2); border: 1px solid var(--gold);
  color: var(--gold); width: 44px; height: 44px;
  border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; transition: background 0.3s;
}
.lightbox-nav:hover { background: var(--gold); color: var(--navy); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ══════════════════════════════════════════
   WHY CHOOSE US STRIP
   ══════════════════════════════════════════ */
.why-strip { background: var(--navy2); padding: 70px 40px; }
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px; max-width: 1000px; margin: 40px auto 0;
  text-align: center;
}
.why-item { }
.why-icon { font-size: 2.2rem; margin-bottom: 12px; }
.why-title { font-weight: 700; font-size: 0.85rem; color: var(--white); margin-bottom: 6px; }
.why-desc { font-size: 0.75rem; color: rgba(255,255,255,0.4); line-height: 1.5; }

/* ══════════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes scrollPulse {
  0%,100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.4; }
}

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

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 900px) {
  .nav-links { display: none; position: absolute; top: 70px; left: 0; right: 0;
    flex-direction: column; background: var(--navy); padding: 20px;
    border-top: 1px solid rgba(212,175,55,0.2); gap: 4px; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 30px; }
  .portfolio-masonry { columns: 2; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  section { padding: 70px 20px; }
  .navbar { padding: 0 20px; }
  footer { padding: 40px 20px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .portfolio-masonry { columns: 1; }
  .hero-stats { flex-wrap: wrap; gap: 20px; bottom: 30px; }
  .form-container { padding: 30px 20px; }
  .pricing-grid { grid-template-columns: 1fr; }
}
