/*
Theme Name: Shri Krishna Events
Theme URI: https://shrikrishnaevents.com/
Author: Antigravity
Author URI: https://antigravity.ai
Description: Luxury Wedding & Event Planners — Official WordPress theme for Shri Krishna Events, Jaipur. Pixel-perfect conversion from HTML including video hero, gallery lightbox, FAQ accordion, and all original CSS/JS.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: shrikrishna
Tags: custom-background, custom-logo, custom-menu, full-width-template, one-column, right-sidebar, wedding, luxury
*/

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

/* =====================================================
   CSS CUSTOM PROPERTIES
   ===================================================== */
:root {
  --gold: #C9A84C;
  --gold-light: #E8C96B;
  --gold-dark: #A8873A;
  --navy: #0D0D1A;
  --navy-mid: #1A1A2E;
  --cream: #FAF7F2;
  --white: #FFFFFF;
  --text: #1A1A1A;
  --muted: #6B6B6B;
  --platinum: #E8E4DC;
  --font-d: 'Cormorant Garamond', serif;
  --font-b: 'Montserrat', sans-serif;
  --font-h: 'Playfair Display', serif;
}

/* =====================================================
   RESET & BASE
   ===================================================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-b);
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5 { font-family: var(--font-d); line-height: 1.15; margin-bottom: 1rem; }
h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }
p { color: var(--muted); line-height: 1.75; margin-bottom: 0.75rem; }
a { text-decoration: none; transition: all 0.3s; }
img { max-width: 100%; height: auto; }
ul { list-style: none; }

/* =====================================================
   LAYOUT
   ===================================================== */
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }
.section-header { text-align: center; margin-bottom: 4rem; }
.eyebrow {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 0.75rem;
}
.gold-line {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.2rem auto;
}
/* REVEAL ANIMATION — No-JS Safe Pattern
   Content is VISIBLE BY DEFAULT. Animation only activates after
   JS adds 'js-ready' to <html>. If JS fails, everything stays visible. */
.reveal { transition: opacity 0.7s ease, transform 0.7s ease; }
html.js-ready .reveal { opacity: 0; transform: translateY(40px); }
html.js-ready .reveal.visible { opacity: 1; transform: translateY(0); }

/* =====================================================
   PRELOADER
   ===================================================== */
#preloader {
  position: fixed; inset: 0; z-index: 99999;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  transition: opacity 0.7s ease, visibility 0.7s ease;
  /* CSS-only fallback: auto-hide at 3.5s even if JS fails entirely */
  animation: preloaderAutoHide 0.7s ease 3.5s forwards;
}
@keyframes preloaderAutoHide {
  to { opacity: 0; visibility: hidden; pointer-events: none; }
}
#preloader.hidden {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  animation: none !important;
}
.preloader-inner { display: flex; flex-direction: column; align-items: center; gap: 0; animation: fadeIn 0.6s ease both; }
.preloader-logo { font-family: var(--font-d); font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 300; letter-spacing: 0.12em; color: var(--white); line-height: 1.1; }
.preloader-divider { width: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); margin: 0.9rem auto; animation: expandLine 1.2s 0.3s ease forwards; }
@keyframes expandLine { to { width: 220px; } }
.preloader-sub { font-family: var(--font-b); font-size: 0.62rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); opacity: 0; animation: fadeInUp 0.6s 0.8s ease forwards; }
.preloader-dots { display: flex; gap: 0.5rem; margin-top: 2.5rem; opacity: 0; animation: fadeInUp 0.4s 1s ease forwards; }
.preloader-dots span { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); animation: dotPulse 1.2s ease infinite; }
.preloader-dots span:nth-child(2) { animation-delay: 0.2s; }
.preloader-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes dotPulse { 0%, 100% { opacity: 0.2; transform: scale(0.8); } 50% { opacity: 1; transform: scale(1.2); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* =====================================================
   HEADER & NAV
   ===================================================== */
.site-header { position: fixed; top: 0; width: 100%; z-index: 9000; transition: all 0.4s; }
.site-header.transparent { background: transparent; }
.site-header.scrolled { background: rgba(13,13,26,0.96); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(201,168,76,0.2); }
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 1.2rem 0; }
.logo-link { text-decoration: none; }
.logo-text { font-family: var(--font-d); font-size: 1.5rem; color: #fff; line-height: 1.1; }
.logo-sub { display: block; font-family: var(--font-b); font-size: 0.58rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.nav-links { list-style: none; display: flex; align-items: center; gap: 2.2rem; }
.nav-links a { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.85); }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta { background: var(--gold); color: #fff !important; padding: 0.6rem 1.4rem; border-radius: 2px; }
.nav-cta:hover { background: var(--gold-dark) !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 0.5rem; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; transition: all 0.3s; }

/* =====================================================
   PAGE HERO (inner pages)
   ===================================================== */
.page-hero {
  padding: 160px 0 90px;
  background: var(--navy);
  position: relative; overflow: hidden; text-align: center;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-size: cover; background-position: center; opacity: 0.2;
}
.page-hero .container { position: relative; z-index: 1; }
.ph-tag { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 1rem; }
.page-hero h1 { color: #fff; }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 1.05rem; max-width: 600px; margin: 0.5rem auto; }
.breadcrumb { color: rgba(255,255,255,0.5); font-size: 0.85rem; margin-top: 1rem !important; }
.breadcrumb a { color: var(--gold); }

/* =====================================================
   HERO SECTION (home)
   ===================================================== */
.hero-section { position: relative; min-height: 100vh; display: flex; align-items: center; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(13,13,26,0.88) 0%, rgba(13,13,26,0.65) 55%, rgba(13,13,26,0.35) 100%); z-index: 1; }
.hero-content { position: relative; z-index: 2; max-width: 680px; padding: 140px 3rem 3rem; }
.hero-tag {
  display: inline-block; background: rgba(201,168,76,0.18); border: 1px solid rgba(201,168,76,0.5);
  color: var(--gold-light); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; padding: 0.4rem 1rem; margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease both; position: relative; overflow: hidden;
}
.hero-tag::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.15), transparent);
  animation: shimmer 2.5s infinite;
}
@keyframes shimmer { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }
.hero-content h1 { color: #fff; margin-bottom: 1.2rem; animation: fadeUp 0.8s 0.15s ease both; }
.hero-content h1 em { color: var(--gold-light); font-style: italic; }
.hero-sub { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 560px; margin-bottom: 2rem; animation: fadeUp 0.8s 0.3s ease both; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.5rem; animation: fadeUp 0.8s 0.45s ease both; }
.hero-phone { display: inline-block; color: rgba(255,255,255,0.7); font-size: 0.9rem; letter-spacing: 0.05em; animation: fadeUp 0.8s 0.6s ease both; }
.hero-phone:hover { color: var(--gold); }

/* Hero Form */
.hero-form-box {
  position: absolute; right: 4rem;
  top: clamp(90px, calc(50% - 200px), calc(50% + 40px));
  z-index: 3; background: rgba(255,255,255,0.97); backdrop-filter: blur(12px);
  padding: 2.2rem; width: 340px; border-top: 4px solid var(--gold);
  box-shadow: 0 30px 80px rgba(0,0,0,0.3); animation: fadeUp 0.8s 0.7s ease both;
  max-height: calc(100vh - 160px); overflow-y: auto; scrollbar-width: none;
}
.hero-form-box::-webkit-scrollbar { display: none; }
.hero-form-box h3 { font-size: 1.4rem; color: var(--text); margin-bottom: 1.5rem; text-align: center; }
.hero-form { display: flex; flex-direction: column; gap: 0.7rem; }
.hero-form input, .hero-form select {
  width: 100%; padding: 0.75rem 1rem; border: 1px solid var(--platinum);
  background: #fff; font-family: var(--font-b); font-size: 0.88rem; color: var(--text); outline: none; transition: border 0.3s;
}
.hero-form input:focus, .hero-form select:focus { border-color: var(--gold); }
.form-note { font-size: 0.73rem; color: var(--muted); text-align: center; margin: 0; }

/* =====================================================
   BUTTONS
   ===================================================== */
.btn-form-submit {
  background: var(--gold); color: #fff; border: none; padding: 1rem;
  font-family: var(--font-b); font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; transition: background 0.3s; width: 100%;
}
.btn-form-submit:hover { background: var(--gold-dark); }
.btn-hero-gold {
  background: var(--gold); color: #fff; padding: 0.9rem 2rem;
  font-family: var(--font-b); font-weight: 700; font-size: 0.82rem;
  letter-spacing: 0.12em; text-transform: uppercase; display: inline-block; transition: all 0.3s;
}
.btn-hero-gold:hover { background: var(--gold-dark); color: #fff; transform: translateY(-2px); }
.btn-hero-wa {
  background: #25D366; color: #fff; padding: 0.9rem 2rem;
  font-family: var(--font-b); font-weight: 700; font-size: 0.82rem;
  letter-spacing: 0.12em; text-transform: uppercase; display: inline-block; transition: all 0.3s;
}
.btn-hero-wa:hover { background: #1ea352; color: #fff; transform: translateY(-2px); }
.btn-hero-outline {
  background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.6);
  padding: 0.85rem 2rem; font-family: var(--font-b); font-weight: 600; font-size: 0.82rem;
  letter-spacing: 0.12em; text-transform: uppercase; display: inline-block; transition: all 0.3s;
}
.btn-hero-outline:hover { background: #fff; color: var(--navy); }
.btn-dark-outline {
  display: inline-block; border: 2px solid var(--navy); color: var(--navy);
  padding: 0.85rem 2.2rem; font-family: var(--font-b); font-weight: 700; font-size: 0.82rem;
  letter-spacing: 0.12em; text-transform: uppercase; transition: all 0.3s;
}
.btn-dark-outline:hover { background: var(--navy); color: #fff; }
.btn { display: inline-block; }

/* =====================================================
   TRUST BAR
   ===================================================== */
.trust-bar { background: var(--navy); padding: 2.5rem 0; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.trust-item { border-right: 1px solid rgba(255,255,255,0.08); padding: 0 1rem; }
.trust-item:last-child { border: none; }
.trust-num { display: block; font-family: var(--font-d); font-size: 2.8rem; color: var(--gold); line-height: 1; }
.trust-text { font-size: 2rem !important; }
.trust-label { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-top: 0.4rem; display: block; }

/* =====================================================
   SERVICES SECTION
   ===================================================== */
.services-section { background: #fff; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.svc-card { background: #fff; border: 1px solid var(--platinum); overflow: hidden; transition: all 0.4s; position: relative; }
.svc-card::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 3px; background: var(--gold); transition: width 0.4s ease; }
.svc-card:hover::after { width: 100%; }
.svc-card:hover { transform: translateY(-8px); box-shadow: 0 25px 60px rgba(0,0,0,0.12); border-color: var(--gold); }
.svc-img { overflow: hidden; height: 240px; }
.svc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.svc-card:hover .svc-img img { transform: scale(1.08); }
.svc-body { padding: 1.8rem; }
.svc-icon { font-size: 1.8rem; display: block; margin-bottom: 0.8rem; }
.svc-body h3 { font-size: 1.3rem; color: var(--text); margin-bottom: 0.6rem; }
.svc-body p { font-size: 0.9rem; }
.svc-cta {
  display: inline-block; margin-top: 1.2rem; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold);
  border-bottom: 1px solid var(--gold); padding-bottom: 2px; transition: all 0.3s;
}
.svc-cta:hover { color: var(--gold-dark); border-color: var(--gold-dark); letter-spacing: 0.18em; }

/* =====================================================
   ADD-ON SERVICES
   ===================================================== */
.addons-section { background: var(--navy); }
.addons-section .section-header h2 { color: #fff; }
.addons-section .section-header p { color: rgba(255,255,255,0.6); }
.addons-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.addon-item {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(201,168,76,0.15);
  padding: 2rem 1.5rem; text-align: center; transition: all 0.4s; cursor: default;
  position: relative; overflow: hidden;
}
.addon-item::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.08), transparent);
  opacity: 0; transition: opacity 0.4s;
}
.addon-item:hover::before { opacity: 1; }
.addon-item:hover { border-color: rgba(201,168,76,0.5); transform: translateY(-4px); }
.addon-icon { font-size: 2.2rem; margin-bottom: 0.8rem; display: block; }
.addon-item h4 { font-family: var(--font-d); font-size: 1.15rem; color: #fff; margin-bottom: 0.4rem; }
.addon-item p { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin: 0; }

/* =====================================================
   PROCESS / HOW WE WORK
   ===================================================== */
.process-section { background: var(--cream); }
.process-timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; align-items: start; }
.process-connector { display: none; }
.process-timeline::before {
  content: ''; position: absolute; top: 36px; left: 12.5%; right: 12.5%;
  height: 2px; background: linear-gradient(90deg, transparent, var(--gold), var(--gold), var(--gold), transparent);
  z-index: 0; opacity: 0.4;
}
.process-step { text-align: center; padding: 0 1.5rem; position: relative; }
.step-number {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff; font-family: var(--font-d); font-size: 1.8rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem; position: relative; z-index: 1;
  box-shadow: 0 8px 24px rgba(201,168,76,0.35); transition: transform 0.3s;
}
.process-step:hover .step-number { transform: scale(1.1); }
.step-icon { font-size: 1.6rem; margin-bottom: 0.8rem; display: block; }
.step-content h3 { font-size: 1.2rem; color: var(--text); margin-bottom: 0.5rem; }
.step-content p { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }

/* =====================================================
   GALLERY
   ===================================================== */
.gallery-section { background: #faf7f2; }
.gallery-tabs { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }
.gtab {
  background: transparent; border: 1px solid var(--platinum); color: var(--muted);
  padding: 0.5rem 1.4rem; font-family: var(--font-b); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; transition: all 0.3s;
}
.gtab.active, .gtab:hover { background: var(--gold); color: #fff; border-color: var(--gold); }
.gallery-masonry { columns: 4; gap: 1rem; column-gap: 1rem; }
.g-item { break-inside: avoid; position: relative; overflow: hidden; margin-bottom: 1rem; cursor: pointer; transition: transform 0.3s; }
.g-item:hover { transform: scale(1.02); }
.g-item img { width: 100%; display: block; transition: transform 0.6s; }
.g-item:hover img { transform: scale(1.06); }
.g-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,13,26,0.9), rgba(13,13,26,0.2) 60%, transparent);
  display: flex; align-items: flex-end; justify-content: center; padding: 1.5rem;
  opacity: 0; transition: opacity 0.4s;
}
.g-item:hover .g-overlay { opacity: 1; }
.g-cta {
  background: var(--gold); color: #fff; padding: 0.5rem 1.2rem;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; transition: background 0.3s;
}
.g-cta:hover { background: var(--gold-dark); color: #fff; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,0.95);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all 0.3s;
}
.lightbox.active { opacity: 1; visibility: visible; }
.lb-img-wrap { max-width: 90vw; max-height: 88vh; display: flex; align-items: center; justify-content: center; }
.lb-img-wrap img { max-width: 100%; max-height: 88vh; object-fit: contain; border: 2px solid rgba(201,168,76,0.3); transition: opacity 0.3s ease; }
.lb-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: var(--gold); color: #fff; border: none;
  width: 44px; height: 44px; font-size: 1.5rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; transition: background 0.3s; z-index: 9001;
}
.lb-close:hover { background: var(--gold-dark); }
.lb-prev, .lb-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(201,168,76,0.2); border: 1px solid rgba(201,168,76,0.4);
  color: #fff; font-size: 2.5rem; width: 52px; height: 52px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.3s; z-index: 9001; border-radius: 2px;
}
.lb-prev { left: 1.5rem; }
.lb-next { right: 1.5rem; }
.lb-prev:hover, .lb-next:hover { background: var(--gold); }
.lb-counter { position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.6); font-size: 0.8rem; letter-spacing: 0.15em; }

/* =====================================================
   WHY CHOOSE US
   ===================================================== */
.why-section { background: var(--navy); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.why-left h2 { color: #fff; margin: 1rem 0 1.5rem; }
.why-left h2 em { color: var(--gold-light); font-style: italic; }
.why-right { display: flex; flex-direction: column; gap: 1.5rem; }
.why-item { display: flex; align-items: flex-start; gap: 1.2rem; padding: 1.5rem; border: 1px solid rgba(201,168,76,0.12); transition: all 0.4s; }
.why-item:hover { border-color: rgba(201,168,76,0.5); background: rgba(201,168,76,0.04); }
.why-icon { font-size: 1.8rem; flex-shrink: 0; }
.why-item h4 { font-family: var(--font-d); font-size: 1.15rem; color: #fff; margin-bottom: 0.3rem; }
.why-item p { font-size: 0.88rem; color: rgba(255,255,255,0.5); margin: 0; }

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testi-section { background: #faf7f2; }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.testi-card { background: #fff; padding: 2.5rem; border: 1px solid var(--platinum); position: relative; transition: all 0.4s; }
.testi-card:hover { box-shadow: 0 20px 50px rgba(0,0,0,0.08); border-color: var(--gold); }
.testi-card::before { content: '\201C'; font-family: var(--font-d); font-size: 7rem; color: var(--gold); opacity: 0.1; position: absolute; top: -1.5rem; left: 1.5rem; line-height: 1; }
.stars { color: var(--gold); font-size: 1rem; margin-bottom: 1rem; }
.testi-card p { font-size: 0.95rem; font-style: italic; color: var(--muted); margin-bottom: 1.5rem; }
.testi-author { display: flex; align-items: center; gap: 0.9rem; }
.testi-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-d); font-size: 0.85rem; font-weight: 600; color: #fff;
  flex-shrink: 0; border: 2px solid rgba(201,168,76,0.3);
}
.testi-name { font-family: var(--font-d); font-size: 1.1rem; color: var(--text); font-weight: 600; }
.testi-loc { font-size: 0.78rem; color: var(--gold); letter-spacing: 0.08em; margin-top: 0.2rem; }

/* =====================================================
   CTA BAND
   ===================================================== */
.cta-section {
  position: relative;
  background: url('img/WhatsApp Image 2026-04-21 at 17.09.59 (12).jpeg') center/cover no-repeat;
  padding: 7rem 0; text-align: center;
}
.cta-overlay { position: absolute; inset: 0; background: rgba(13,13,26,0.82); }
.cta-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; padding: 0 2rem; }
.cta-content h2 { color: #fff; margin: 1rem 0 1rem; }
.cta-content p { color: rgba(255,255,255,0.7); font-size: 1.05rem; margin-bottom: 2rem; }
.cta-btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* =====================================================
   FAQ
   ===================================================== */
.faq-section { background: #fff; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--platinum); overflow: hidden; }
.faq-q {
  width: 100%; background: transparent; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.4rem 0; text-align: left;
  font-family: var(--font-d); font-size: 1.2rem; color: var(--text);
  gap: 1rem; transition: color 0.3s;
}
.faq-q:hover { color: var(--gold); }
.faq-q[aria-expanded="true"] { color: var(--gold); }
.faq-icon {
  width: 28px; height: 28px; min-width: 28px; border-radius: 50%;
  background: var(--platinum); color: var(--text);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 300; transition: all 0.3s; font-family: var(--font-b);
}
.faq-q[aria-expanded="true"] .faq-icon { background: var(--gold); color: #fff; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.faq-a.open { max-height: 300px; padding-bottom: 1.2rem; }
.faq-a p { font-size: 0.95rem; color: var(--muted); line-height: 1.8; margin: 0; }

/* =====================================================
   CONTACT SECTION (homepage)
   ===================================================== */
.contact-section { background: var(--cream); }
.contact-wrap { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: start; }
.contact-info h2 { color: var(--text); margin: 1rem 0 0.5rem; }
.cinfo-item { display: flex; align-items: flex-start; gap: 0.8rem; margin-top: 1rem; font-size: 0.92rem; color: var(--muted); }
.cinfo-item a { color: var(--gold); }
.cinfo-item a:hover { color: var(--gold-dark); }
.contact-form-box { background: #fff; padding: 3rem; border-top: 4px solid var(--gold); box-shadow: 0 20px 60px rgba(0,0,0,0.07); }
.cf-group { margin-bottom: 1.5rem; }
.cf-group label { display: block; font-weight: 600; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text); margin-bottom: 0.6rem; }
.cf-group input, .cf-group select, .cf-group textarea {
  width: 100%; padding: 0.9rem 1rem; border: 1px solid var(--platinum);
  background: var(--cream); font-family: var(--font-b); font-size: 0.95rem;
  color: var(--text); outline: none; transition: border 0.3s; resize: vertical;
}
.cf-group input:focus, .cf-group select:focus, .cf-group textarea:focus { border-color: var(--gold); }

/* =====================================================
   CONTACT PAGE — SPLIT HERO
   ===================================================== */
.contact-hero-split { display: grid; grid-template-columns: 1fr 1.2fr; min-height: 100vh; }
.chs-left { background: var(--navy); padding: 160px 4rem 4rem; position: relative; overflow: hidden; }
.chs-left::before { content: ''; position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.18; }
.chs-left-inner { position: relative; z-index: 1; }
.chs-right { background: var(--cream); display: flex; align-items: center; justify-content: center; padding: 8rem 4rem 4rem; }
.big-contact-form { width: 100%; max-width: 480px; }
.big-contact-form h2 { font-size: 2.2rem; margin-bottom: 0.5rem; }
.contact-method {
  display: flex; align-items: center; gap: 1rem; padding: 1.2rem;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(201,168,76,0.2);
  margin-bottom: 1rem; transition: border-color 0.3s; cursor: pointer; text-decoration: none;
}
.contact-method:hover { border-color: var(--gold); }
.cm-icon { width: 48px; height: 48px; background: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
.cm-label { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.5); display: block; margin-bottom: 0.2rem; }
.cm-value { font-size: 1rem; color: #fff; font-weight: 600; }

/* Services Page */
.svc-detail-img img { width: 100%; height: 420px; object-fit: cover; }

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer { background: var(--navy); padding: 5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 3rem; margin-bottom: 4rem; }
.footer-logo { font-family: var(--font-d); font-size: 1.8rem; color: #fff; margin-bottom: 0.4rem; }
.footer-tagline { font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); }
.footer-heading { color: var(--gold); font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase; font-weight: 700; margin-bottom: 1.2rem; font-family: var(--font-b); }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.7rem; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.88rem; transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }
.footer-socials { display: flex; gap: 0.8rem; margin-top: 1.5rem; }
.fsoc {
  width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); font-size: 0.78rem; font-weight: 700; transition: all 0.3s;
}
.fsoc:hover { border-color: var(--gold); color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07); padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.83rem; color: rgba(255,255,255,0.5); margin: 0; }

/* =====================================================
   WHATSAPP FAB
   ===================================================== */
.wa-fab {
  position: fixed; bottom: 5.5rem; right: 2rem; background: #25D366; border-radius: 50%;
  width: 64px; height: 64px; display: flex; align-items: center; justify-content: center;
  z-index: 9999; box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.3s, box-shadow 0.3s; text-decoration: none;
}
.wa-fab:hover { transform: scale(1.12); box-shadow: 0 8px 32px rgba(37,211,102,0.55); color: #fff; }

/* =====================================================
   MOBILE STICKY CTA BAR
   ===================================================== */
.mobile-cta-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 9997;
  background: var(--navy); border-top: 1px solid rgba(201,168,76,0.3);
  grid-template-columns: repeat(3, 1fr);
  transform: translateY(100%); transition: transform 0.3s ease;
}
.mcta-btn {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 0.75rem 0.5rem; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: #fff; transition: background 0.3s;
  gap: 0.2rem; border-right: 1px solid rgba(255,255,255,0.08);
}
.mcta-btn:last-child { border: none; }
.mcta-call { background: var(--navy-mid); }
.mcta-call:hover, .mcta-call:active { background: rgba(201,168,76,0.3); }
.mcta-wa { background: #25D366; }
.mcta-wa:hover, .mcta-wa:active { background: #1ea352; color: #fff; }
.mcta-quote { background: var(--gold); }
.mcta-quote:hover, .mcta-quote:active { background: var(--gold-dark); color: #fff; }

/* =====================================================
   GALLERY FULL PAGE
   ===================================================== */
.gfull-grid { columns: 4; gap: 12px; padding: 0; }
.gfull-item { break-inside: avoid; margin-bottom: 12px; position: relative; overflow: hidden; cursor: pointer; }
.gfull-item img { width: 100%; display: block; transition: transform 0.5s; }
.gfull-item:hover img { transform: scale(1.06); }
.gfull-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,13,26,0.85), transparent 55%);
  opacity: 0; transition: opacity 0.4s; display: flex; align-items: flex-end; justify-content: center; padding: 1.2rem;
}
.gfull-item:hover .gfull-overlay { opacity: 1; }
.gfull-cta { background: var(--gold); color: #fff; padding: 0.45rem 1rem; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.gfull-cta:hover { background: var(--gold-dark); color: #fff; }
.cat-label { position: absolute; top: 1rem; left: 1rem; background: rgba(13,13,26,0.7); color: var(--gold-light); font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.25rem 0.7rem; font-weight: 700; }

/* =====================================================
   ANIMATIONS
   ===================================================== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1200px) {
  .process-timeline { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
  .process-timeline::before { display: none; }
  .gallery-masonry { columns: 3; }
  .gfull-grid { columns: 3; }
}
@media (max-width: 1100px) {
  .hero-form-box { position: static; transform: none; width: 100%; margin-top: 2rem; border-top: 4px solid var(--gold); }
  .hero-section { flex-direction: column; padding-bottom: 3rem; }
  .hero-content { padding: 140px 2rem 2rem; }
  .why-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .addons-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-hero-split { grid-template-columns: 1fr; }
  .chs-left { padding: 120px 2rem 3rem; }
  .chs-right { padding: 3rem 2rem; }
}
@media (max-width: 768px) {
  .nav-links { display: none; position: fixed; inset: 0; background: var(--navy); flex-direction: column; justify-content: center; align-items: center; gap: 2rem; z-index: 999; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; z-index: 1000; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item { border: none; border-bottom: 1px solid rgba(255,255,255,0.07); padding-bottom: 1.5rem; }
  .trust-item:nth-child(3), .trust-item:nth-child(4) { border-bottom: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .addons-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-masonry { columns: 2; }
  .gfull-grid { columns: 2; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .why-right { gap: 1rem; }
  .mobile-cta-bar { display: grid; transform: translateY(0); }
  .wa-fab { bottom: 5rem; }
  .process-timeline { grid-template-columns: 1fr; gap: 2rem; }
  .process-timeline::before { display: none; }
  section .container > div[style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }
}
@media (max-width: 600px) {
  .addons-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .section { padding: 4rem 0; }
  .services-grid { grid-template-columns: 1fr; }
  .addons-grid { grid-template-columns: 1fr 1fr; }
  .gallery-masonry { columns: 1; }
  .gfull-grid { columns: 1; }
  .hero-btns { flex-direction: column; }
  .mcta-btn { font-size: 0.62rem; }
  .svc-detail-row { grid-template-columns: 1fr !important; }
  .svc-reverse .svc-detail-img { order: -1; }
}
