/* ===== Call4All - Common Stylesheet =====
   Theme inspired by luxury resort sites — earth tones, elegant typography,
   image-rich storytelling, generous whitespace. Admin can override the
   palette from "Theme & Festival" settings; below are the runtime defaults. */

/* Fonts: load only on tablet/desktop — skips ~100KB+ on mobile Lighthouse */
@media (min-width: 769px) {
  @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Inter:wght@400;500;600;700&display=optional');
}

:root {
  /* Clean service-marketplace palette: ink, white and restrained violet. */
  --primary: #181818;
  --primary-dark: #0f0f0f;
  --accent: #6c4ee3;
  --accent-dark: #5538c7;
  --success: #25d366;
  --danger: #b3261e;
  --text: #171717;
  --text-light: #666;
  --bg-light: #f6f6f6;
  --bg-cream: #f8f8f8;
  --white: #fff;
  --shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 16px 42px rgba(0, 0, 0, 0.14);
  --radius: 12px;
  --transition: all 0.3s ease;

  /* Typography */
  --font-heading: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
}

h1, h2, h3, h4, h5, .brand-name, .section-title, .hero h1 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.25;
  color: var(--primary);
}

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
img { max-width: 100%; display: block; height: auto; }

/* ===== Layout stability (prevents CLS from JS-injected header/slider/gallery) ===== */
#site-header { min-height: 79px; contain: layout style; }
#site-footer { min-height: 200px; contain: layout style; }
#sliderMount {
  min-height: 480px;
  background: var(--primary-dark);
  contain: layout style;
}
#serviceGrid { min-height: 680px; }
#galleryMount { min-height: 280px; contain: layout style; }
.about-2col-image { aspect-ratio: 4 / 3; min-height: 0; }
.service-card .service-image { aspect-ratio: 16 / 10; min-height: 0; }

/* ===== Header ===== */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 50px;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--primary);
}
.site-header .logo:hover { color: var(--primary-dark); }
.site-header .logo img { height: 55px; flex-shrink: 0; }
.site-header .brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.site-header .brand-name {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.3px;
  color: var(--primary);
}
.site-header .brand-tagline {
  font-size: 11px;
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  margin-top: 2px;
}
.site-nav ul {
  display: flex;
  list-style: none;
  gap: 28px;
  align-items: center;
}
.site-nav a {
  color: var(--primary);
  font-weight: 600;
  font-size: 15px;
  padding: 8px 4px;
  position: relative;
}
.site-nav a:hover { color: var(--accent-dark); }
.site-nav a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  border-radius: 3px;
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--primary);
  cursor: pointer;
}

/* ===== Hero (luxury, full-bleed image with overlay) ===== */
.hero {
  position: relative;
  min-height: 70vh;
  padding: 72px 22px 56px;
  text-align: center;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(15,30,20,0.72) 0%, rgba(31,58,46,0.55) 60%, rgba(0,0,0,0.62) 100%),
    url('https://images.unsplash.com/photo-1521737711867-e3b97375f902?w=1900&q=80&auto=format&fit=crop') center/cover no-repeat;
  background-attachment: scroll;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
}
.hero > * { position: relative; z-index: 2; }
.hero .hero-eyebrow {
  display: inline-block;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 18px;
  padding: 6px 18px;
  border: 1px solid rgba(201,163,106,0.5);
  border-radius: 30px;
}
.hero h1 {
  color: #fff;
  font-size: clamp(30px, 5vw, 54px);
  margin-bottom: 16px;
  font-weight: 700;
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0,0,0,0.4);
  max-width: 980px;
}
.hero h1 em {
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
}
.hero p {
  font-size: clamp(15px, 1.5vw, 18px);
  max-width: 740px;
  margin: 0 auto 22px;
  opacity: 0.95;
  line-height: 1.7;
  font-weight: 300;
}
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== Hero Manifesto quote (top banner emotional hook) ===== */
.hero-manifesto-quote {
  max-width: 920px;
  margin: 0 auto 20px;
  font-family: var(--font-heading);
  font-size: clamp(18px, 2.4vw, 26px);
  font-weight: 500;
  line-height: 1.55;
  color: #f3ebd9;
  font-style: italic;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
  position: relative;
  padding: 0 20px;
}
.hero-manifesto-quote::before {
  content: '"';
  display: block;
  font-size: clamp(60px, 8vw, 90px);
  line-height: 0.4;
  color: var(--accent);
  opacity: 0.85;
  margin-bottom: 14px;
  font-weight: 700;
  font-style: normal;
}
.hero-manifesto-quote em {
  font-style: italic;
  color: var(--accent);
  font-weight: 600;
  position: relative;
}
.hero-manifesto-quote em::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
  opacity: 0.6;
}
.hero-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
  margin: 18px auto 18px;
  opacity: 0.7;
}
.hero-tag-strong {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(201,163,106,0.15);
  border: 1px solid rgba(201,163,106,0.4);
  border-radius: 24px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
@media (max-width: 768px) {
  .hero-manifesto-quote { font-size: 16px; padding: 0 10px; }
  .hero-manifesto-quote::before { font-size: 50px; }
}

/* ===== Areas We Serve (SEO + local discovery) ===== */
.areas-served {
  padding: 50px 22px 56px;
  background: linear-gradient(180deg, #fff 0%, var(--bg-cream) 100%);
  text-align: center;
}
.areas-served .areas-grid {
  max-width: 1100px;
  margin: 24px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.area-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  background: #fff;
  border: 1px solid rgba(201,163,106,0.45);
  border-radius: 30px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-body);
  box-shadow: 0 2px 8px rgba(31,58,46,0.06);
  transition: all .25s ease;
  text-decoration: none;
}
.area-chip:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(201,163,106,0.35);
}
.area-chip .area-pin { color: var(--accent-dark); }
.area-chip:hover .area-pin { color: #fff; }
.area-chip .area-city { font-weight: 700; }
.areas-served .areas-note {
  margin-top: 22px;
  font-size: 14px;
  color: var(--text-light);
  font-style: italic;
}
.areas-served .areas-note strong { color: var(--accent-dark); font-style: normal; }
@media (max-width: 768px) {
  .areas-served { padding: 40px 16px 44px; }
  .area-chip { padding: 7px 14px; font-size: 13px; }
}

/* ===== FAQ Section (AEO / AI-friendly Q&A) ===== */
.faq-section {
  padding: 56px 22px;
  background: #fff;
}
.faq-list {
  max-width: 880px;
  margin: 28px auto 0;
}
.faq-item {
  background: var(--bg-cream);
  border: 1px solid rgba(31,58,46,0.08);
  border-radius: 14px;
  margin-bottom: 14px;
  overflow: hidden;
  transition: box-shadow .25s ease, border-color .25s ease;
}
.faq-item:hover {
  border-color: rgba(201,163,106,0.45);
  box-shadow: 0 6px 18px rgba(31,58,46,0.08);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 24px;
  color: var(--accent-dark);
  font-weight: 400;
  line-height: 1;
  transition: transform .3s ease;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] summary { color: var(--accent-dark); }
.faq-item .faq-answer {
  padding: 0 22px 18px;
  color: var(--text-light);
  line-height: 1.75;
  font-size: 15px;
}
.faq-item .faq-answer a {
  color: var(--accent-dark);
  font-weight: 600;
  text-decoration: underline;
}
@media (max-width: 768px) {
  .faq-section { padding: 44px 16px; }
  .faq-item summary { padding: 14px 16px; font-size: 15px; }
  .faq-item .faq-answer { padding: 0 16px 14px; font-size: 14px; }
}

/* ===== Slider (image-driven by default, dark gradient overlay) ===== */
.slider {
  position: relative;
  width: 100%;
  height: 480px;
  overflow: hidden;
  background: var(--primary-dark);
}
.slides { display: flex; height: 100%; transition: transform 0.7s ease; }
.slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 44px);
  text-shadow: 0 4px 18px rgba(0,0,0,0.55);
  padding: 30px 20px;
  text-align: center;
  background-size: cover;
  background-position: center;
  position: relative;
}
.slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(15,30,20,0.65) 100%);
  pointer-events: none;
}
.slide > * { position: relative; z-index: 2; }
.slide-sub {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.4vw, 18px);
  font-weight: 300;
  margin-top: 14px;
  opacity: 0.95;
  letter-spacing: 0.3px;
  max-width: 720px;
}
/* Resort-tone fallbacks when no background_url is set */
.slide:nth-child(1) { background-image: linear-gradient(135deg, #1f3a2e, #2c4a3e); }
.slide:nth-child(2) { background-image: linear-gradient(135deg, #4a3528, #6b4d36); }
.slide:nth-child(3) { background-image: linear-gradient(135deg, #2c4a3e, #3d5b4d); }
.slide:nth-child(4) { background-image: linear-gradient(135deg, #6b4d36, #8a6a3d); }
.slide:nth-child(5) { background-image: linear-gradient(135deg, #1f3a2e, #134d3a); }
.slide:nth-child(6) { background-image: linear-gradient(135deg, #5e2c2c, #8a4a4a); }
.slide:nth-child(7) { background-image: linear-gradient(135deg, #6b4d36, #a17f47); }
.slide:nth-child(8) { background-image: linear-gradient(135deg, #2c4a3e, #1f3a2e); }

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.3);
  color: white;
  border: none;
  font-size: 26px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
}
.arrow:hover { background: rgba(255,255,255,0.55); }
.arrow.left { left: 18px; }
.arrow.right { right: 18px; }
.dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}
.dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: var(--transition);
}
.dot.active { background: white; transform: scale(1.2); }

/* ===== Buttons (refined for luxury feel) ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  position: relative;
}
.btn-primary { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(31,58,46,0.25); }
.btn-accent { background: var(--accent); color: var(--primary-dark); border-color: var(--accent); }
.btn-accent:hover { background: var(--accent-dark); border-color: var(--accent-dark); transform: translateY(-2px); color: #fff; box-shadow: 0 8px 20px rgba(161,127,71,0.3); }
.btn-success { background: var(--success); color: var(--white); border-color: var(--success); }
.btn-success:hover { background: #1ea952; border-color: #1ea952; transform: translateY(-2px); }
.btn-danger { background: var(--danger); color: var(--white); border-color: var(--danger); }
.btn-danger:hover { background: #921a14; border-color: #921a14; transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--primary); }
.btn-outline-dark { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline-dark:hover { background: var(--primary); color: var(--white); }
.btn-block { width: 100%; justify-content: center; }
.btn-sm { padding: 8px 18px; font-size: 12px; letter-spacing: 0.5px; }
.btn-lg { padding: 18px 40px; font-size: 15px; }

/* ===== Section Heading ===== */
.section { padding: 56px 50px; }
.section-light { background: var(--bg-cream); }
.section-dark { background: var(--primary-dark); color: var(--white); }
.section-dark .section-title,
.section-dark .section-subtitle,
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--white); }
.section-eyebrow {
  display: block;
  text-align: center;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-dark);
  margin-bottom: 12px;
}
.section-title {
  text-align: center;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--primary);
  margin-bottom: 14px;
  font-weight: 600;
}
.section-title .accent { color: var(--accent-dark); font-style: italic; }
.section-subtitle {
  text-align: center;
  color: var(--text-light);
  max-width: 740px;
  margin: 0 auto 28px;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
}
.title-divider {
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 40px;
}

/* ===== Service Cards (image + text, luxury card style) ===== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1240px;
  margin: 0 auto;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}
.service-card .service-image {
  position: relative;
  height: 200px;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-light);
  overflow: hidden;
}
.service-card .service-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(20,35,24,0.35) 100%);
  transition: var(--transition);
}
.service-card:hover .service-image::after {
  background: linear-gradient(180deg, transparent 30%, rgba(20,35,24,0.55) 100%);
}
.service-card .service-icon-overlay {
  position: absolute;
  bottom: 14px;
  right: 14px;
  font-size: 30px;
  z-index: 2;
  background: rgba(255,255,255,0.92);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
}
.service-card .service-body {
  padding: 28px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-icon { font-size: 48px; margin-bottom: 12px; }
.service-card h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--primary);
  font-weight: 600;
}
.service-card p {
  color: var(--text-light);
  font-size: 15px;
  margin-bottom: 22px;
  flex: 1;
  line-height: 1.7;
}

/* ===== Booking Form ===== */
.booking-section {
  padding: 60px 30px;
  background:
    linear-gradient(135deg, rgba(15,30,20,0.92), rgba(31,58,46,0.92)),
    url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?w=1900&q=80&auto=format&fit=crop') center/cover no-repeat fixed;
}
.booking-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  padding: 38px 34px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.booking-card h2 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 8px;
  font-size: 30px;
}
.booking-card .subtitle {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 28px;
  font-size: 15px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
  font-size: 14px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid #e1e5eb;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  transition: var(--transition);
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(30,60,114,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note { font-size: 13px; color: var(--text-light); margin-top: 10px; text-align: center; }
.form-message {
  margin-top: 14px;
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  font-weight: 500;
  display: none;
}
.form-message.success { background: #d1f7dd; color: #0a6b2c; display: block; }
.form-message.error { background: #fde2e4; color: #93181f; display: block; }
.form-message.info { background: #e0eefd; color: #134c8b; display: block; }

/* ===== Why Choose Us (refined feature blocks) ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.feature-box {
  text-align: center;
  padding: 40px 26px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}
.feature-box:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--accent);
}
.feature-icon {
  font-size: 42px;
  margin-bottom: 16px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-cream);
  color: var(--accent-dark);
}
.feature-box h4 {
  font-family: var(--font-heading);
  color: var(--primary);
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 600;
}
.feature-box p { color: var(--text-light); font-size: 15px; line-height: 1.7; }

/* ===== About: 2-column image+text ===== */
.about-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.about-2col-text h2 {
  font-size: clamp(28px, 4vw, 40px);
  color: var(--primary);
  margin-bottom: 22px;
  font-weight: 600;
}
.about-2col-text p {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 18px;
  line-height: 1.85;
}
.about-2col-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 420px;
  background-size: cover;
  background-position: center;
}
.about-2col-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(20,35,24,0.25) 100%);
}
.about-2col.reverse .about-2col-image { order: -1; }

.about-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.85;
}
.about-content p { margin-bottom: 18px; }
.about-content ul {
  text-align: left;
  display: inline-block;
  margin: 16px auto;
  line-height: 2;
}

/* ===== Testimonials ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}
.testimonial-card {
  background: var(--white);
  padding: 36px 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  border-top: 3px solid var(--accent);
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testimonial-card .quote-mark {
  position: absolute;
  top: -10px;
  left: 26px;
  font-family: var(--font-heading);
  font-size: 70px;
  color: var(--accent);
  line-height: 1;
  font-weight: 700;
}
.testimonial-card .stars {
  color: var(--accent-dark);
  font-size: 16px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.testimonial-card .testimonial-text {
  font-style: italic;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 22px;
  font-size: 15px;
}
.testimonial-card .testimonial-author {
  font-weight: 600;
  color: var(--primary);
  font-size: 15px;
}
.testimonial-card .testimonial-meta {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== Quote Pillar (short aspirational slogan) ===== */
.quote-pillar {
  text-align: center;
  padding: 52px 22px;
  background: var(--bg-cream);
  position: relative;
}
.quote-pillar::before,
.quote-pillar::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
}
.quote-pillar::before { left: max(40px, 8vw); }
.quote-pillar::after  { right: max(40px, 8vw); }
.quote-pillar .quote-pillar-text {
  font-family: var(--font-heading);
  font-size: clamp(26px, 4.2vw, 46px);
  font-weight: 500;
  color: var(--primary);
  line-height: 1.35;
  max-width: 900px;
  margin: 14px auto 0;
  letter-spacing: -0.01em;
}
.quote-pillar .quote-pillar-text em {
  font-style: italic;
  color: var(--accent-dark);
  font-weight: 600;
}
.quote-pillar .title-divider { margin-top: 28px; }
@media (max-width: 768px) {
  .quote-pillar { padding: 60px 18px; }
  .quote-pillar::before,
  .quote-pillar::after { display: none; }
}

/* ===== Manifesto Block (longer emotional slogan, full-bleed dark) ===== */
.manifesto-block {
  position: relative;
  padding: 110px 22px;
  color: #fff;
  text-align: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(10,18,12,0.94) 0%, rgba(18,35,24,0.86) 100%),
    url('https://images.unsplash.com/photo-1502134249126-9f3755a50d78?w=1900&q=80&auto=format&fit=crop') center/cover no-repeat;
}
.manifesto-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,163,106,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.manifesto-inner {
  position: relative;
  z-index: 2;
  max-width: 960px;
  margin: 0 auto;
}
.manifesto-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  padding: 8px 22px;
  border: 1px solid rgba(201,163,106,0.45);
  border-radius: 30px;
}
.manifesto-block .quote-mark-decorative {
  display: block;
  font-family: var(--font-heading);
  font-size: 120px;
  line-height: 0.6;
  color: var(--accent);
  opacity: 0.85;
  margin-bottom: 10px;
  font-weight: 700;
}
.manifesto-text {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3.4vw, 36px);
  font-weight: 500;
  line-height: 1.5;
  color: #f3ebd9;
  margin: 0 auto 36px;
  max-width: 880px;
  letter-spacing: -0.005em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.manifesto-text em {
  font-style: italic;
  color: var(--accent);
  font-weight: 600;
  position: relative;
}
.manifesto-text em::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
  opacity: 0.7;
}
.manifesto-signature {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 22px;
  font-weight: 500;
}
.manifesto-cta { margin-top: 16px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
@media (max-width: 768px) {
  .manifesto-block { padding: 70px 18px; background-attachment: scroll; }
  .manifesto-block .quote-mark-decorative { font-size: 80px; }
  .manifesto-eyebrow { letter-spacing: 3px; padding: 6px 16px; margin-bottom: 18px; }
}

/* ===== Premium CTA strip ===== */
.cta-strip {
  position: relative;
  padding: 56px 30px;
  text-align: center;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(15,30,20,0.86), rgba(31,58,46,0.86)),
    url('https://images.unsplash.com/photo-1431540015161-0bf868a2d407?w=1900&q=80&auto=format&fit=crop') center/cover no-repeat;
}
.cta-strip h2 {
  color: var(--white);
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 14px;
  font-weight: 600;
}
.cta-strip h2 em { color: var(--accent); font-style: italic; font-weight: 500; }
.cta-strip p {
  font-size: 17px;
  opacity: 0.92;
  max-width: 680px;
  margin: 0 auto 30px;
  line-height: 1.7;
  font-weight: 300;
}
.cta-strip .cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== Service Detail Page ===== */
.service-hero {
  position: relative;
  min-height: 56vh;
  padding: 100px 22px 80px;
  text-align: center;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-position: center;
}
.service-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,30,20,0.78), rgba(31,58,46,0.6));
}
.service-hero > * { position: relative; z-index: 2; }
.service-hero .hero-eyebrow { color: var(--accent); }
.service-hero h1 { color: #fff; font-size: clamp(32px, 5vw, 52px); margin-bottom: 14px; }
.service-hero p { font-size: 17px; max-width: 700px; margin: 0 auto 28px; opacity: 0.92; font-weight: 300; }

.service-detail {
  max-width: 1000px;
  margin: 0 auto;
  padding: 70px 30px;
}
.service-detail h1 {
  color: var(--primary);
  font-size: 38px;
  margin-bottom: 20px;
  text-align: center;
}
.service-detail .lead {
  font-size: 19px;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.7;
}
.service-detail h2 {
  color: var(--primary);
  font-size: 28px;
  margin: 36px 0 16px;
  font-family: var(--font-heading);
  font-weight: 600;
}
.service-detail p { color: var(--text); margin-bottom: 16px; font-size: 16px; line-height: 1.8; }
.service-detail ul { margin-left: 22px; line-height: 2; color: var(--text); }
.service-detail .highlight {
  background: var(--bg-cream);
  padding: 24px 28px;
  border-radius: var(--radius);
  border-left: 4px solid var(--accent);
  margin: 26px 0;
}

/* ===== Contact Info Boxes ===== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  max-width: 1000px;
  margin: 0 auto 30px;
}
.contact-info-box {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-top: 4px solid var(--accent);
}
.contact-info-box h3 { color: var(--primary); margin-bottom: 12px; }
.contact-info-box p { font-size: 16px; color: var(--text-light); margin-bottom: 8px; }
.contact-info-box a { font-weight: 600; }

/* ===== Footer (premium dark, accent gold links) ===== */
.site-footer {
  background: linear-gradient(180deg, var(--primary-dark) 0%, #0a1810 100%);
  color: var(--white);
  padding: 70px 50px 24px;
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 40px;
  max-width: 1240px;
  margin: 0 auto 36px;
}
.footer-section h3 {
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 16px;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.5px;
}
.footer-section ul { list-style: none; }
.footer-section a { color: rgba(255,255,255,0.78); line-height: 2.2; font-size: 14px; transition: var(--transition); }
.footer-section a:hover { color: var(--accent); padding-left: 4px; }
.footer-section p { color: rgba(255,255,255,0.78); line-height: 1.85; font-size: 14px; }
.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(201,163,106,0.18);
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  max-width: 1240px;
  margin: 0 auto;
}
.footer-bottom a { color: var(--accent); }

/* ===== Floating Buttons ===== */
.floating-buttons {
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}
.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--white);
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
}
.float-btn:hover { transform: scale(1.1); }
.float-btn.whatsapp { background: var(--success); }
.float-btn.call { background: var(--primary); }
.float-btn.call::after {
  content: '';
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.5;
  animation: pulse 1.5s infinite;
  z-index: -1;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ===== Admin Panel ===== */
.admin-wrap {
  max-width: 1300px;
  margin: 30px auto;
  padding: 0 20px;
}
.admin-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
  margin-bottom: 20px;
}
.admin-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}
.stat-card {
  background: var(--white);
  padding: 22px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--primary);
}
.stat-card.warn { border-left-color: var(--accent-dark); }
.stat-card.ok { border-left-color: var(--success); }
.stat-card.danger { border-left-color: var(--danger); }
.stat-card .label { font-size: 13px; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; }
.stat-card .value { font-size: 30px; font-weight: 700; color: var(--primary); margin-top: 4px; }

.admin-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}
.admin-toolbar input[type="text"],
.admin-toolbar select {
  padding: 10px 14px;
  border: 2px solid #e1e5eb;
  border-radius: 8px;
  font-size: 14px;
  flex: 1;
  min-width: 180px;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.admin-table th,
.admin-table td {
  padding: 12px 10px;
  text-align: left;
  border-bottom: 1px solid #e1e5eb;
  vertical-align: top;
}
.admin-table th {
  background: var(--bg-light);
  color: var(--primary);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.admin-table tbody tr:hover { background: #fafbfc; }
.admin-table .actions { display: flex; gap: 6px; flex-wrap: wrap; }
.admin-table .msg-cell { max-width: 280px; word-wrap: break-word; }

.status-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 14px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}
.status-new { background: #ffe7ad; color: #6b4d00; }
.status-pending { background: #ffe7ad; color: #6b4d00; }
.status-contacted { background: #cfe5ff; color: #134c8b; }
.status-processing { background: #cfe5ff; color: #134c8b; }
.status-completed { background: #d1f7dd; color: #0a6b2c; }
.status-complete { background: #d1f7dd; color: #0a6b2c; }
.status-cancelled { background: #fde2e4; color: #93181f; }

/* Inline status select inside table cell */
.inline-status-select {
  font-size: 12px;
  padding: 4px 6px;
  border: 1px solid #d4d8e0;
  border-radius: 6px;
  background: white;
  cursor: pointer;
  font-weight: 600;
}
.inline-status-select.is-pending { background: #fff5d4; color: #6b4d00; }
.inline-status-select.is-processing { background: #e6f0ff; color: #134c8b; }
.inline-status-select.is-complete { background: #defbe7; color: #0a6b2c; }
.inline-status-select.is-cancelled { background: #ffe5e7; color: #93181f; }

.assigned-cell {
  font-size: 12px;
  color: var(--text-light);
}
.assigned-cell .name { display: block; color: var(--primary); font-weight: 600; }

/* Alert banner (used for warnings on top of sections) */
.alert-banner {
  background: linear-gradient(90deg, #fff8e1, #fff3c4);
  border: 1px solid #ffd54f;
  border-left: 5px solid #ff9800;
  color: #5f4300;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 18px;
  font-size: 14px;
  line-height: 1.5;
}
.alert-banner a { color: #b15300; font-weight: 700; text-decoration: underline; }

/* Big status pill block (used in Settings → Auto-save status) */
.status-pill-block {
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: var(--shadow);
  margin-bottom: 18px;
  border-left: 6px solid #ff9800;
  transition: var(--transition);
}
.status-pill-block.is-on { border-left-color: #2e7d32; }
.status-pill-block .pill-header {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 8px;
}
.status-pill-block .pill-emoji { font-size: 32px; }
.status-pill-block h3 { color: var(--primary); margin: 0; }
.status-pill-block #autoSaveLabel {
  padding: 3px 10px;
  border-radius: 14px;
  font-size: 14px;
  background: #ff9800;
  color: white;
}
.status-pill-block.is-on #autoSaveLabel {
  background: #2e7d32;
}

.empty-state {
  text-align: center;
  padding: 50px 20px;
  color: var(--text-light);
}
.empty-state .icon { font-size: 50px; margin-bottom: 12px; }

/* ===== Admin Sidebar Layout ===== */
.admin-shell {
  display: flex;
  min-height: calc(100vh - 60px);
}
.admin-sidebar {
  width: 240px;
  background: var(--primary-dark);
  color: var(--white);
  padding: 20px 0;
  flex-shrink: 0;
  position: sticky;
  top: 0;
  align-self: flex-start;
  height: 100vh;
  overflow-y: auto;
  transition: var(--transition);
}
.admin-sidebar .sidebar-brand {
  padding: 0 22px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 14px;
}
.admin-sidebar .sidebar-brand h2 { font-size: 18px; color: var(--white); }
.admin-sidebar .sidebar-brand .subtle { font-size: 12px; color: rgba(255,255,255,0.65); margin-top: 4px; }
.admin-nav { display: flex; flex-direction: column; }
.admin-nav .nav-section {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.45);
  padding: 16px 22px 6px;
}
.admin-tab {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  background: transparent;
  border: none;
  border-left: 3px solid transparent;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
  width: 100%;
}
.admin-tab:hover {
  background: rgba(255,255,255,0.06);
  color: var(--white);
}
.admin-tab.active {
  background: rgba(255,204,0,0.12);
  border-left-color: var(--accent);
  color: var(--accent);
}
.admin-tab .icon { font-size: 18px; width: 22px; text-align: center; }
.admin-tab .badge {
  background: var(--accent);
  color: var(--primary-dark);
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 700;
  margin-left: auto;
}

.admin-content {
  flex: 1;
  padding: 22px 28px;
  background: var(--bg-light);
  min-width: 0;
}
.tab-pane { display: none; }
.tab-pane.active { display: block; }

.sidebar-toggle-btn {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
  padding: 6px 10px;
  margin-right: 10px;
}

/* ===== Festival Overlays ===== */
body.festival-diwali {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'><text x='10' y='28' font-size='22' opacity='0.07'>🪔</text><text x='42' y='62' font-size='18' opacity='0.06'>✨</text></svg>");
  background-attachment: fixed;
}
body.festival-holi {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'><circle cx='15' cy='20' r='5' fill='%23ff6b9d' opacity='0.12'/><circle cx='55' cy='40' r='4' fill='%23ffcc00' opacity='0.12'/><circle cx='25' cy='65' r='6' fill='%2356ab2f' opacity='0.1'/><circle cx='65' cy='12' r='3' fill='%2312c2e9' opacity='0.12'/></svg>");
  background-attachment: fixed;
}
body.festival-christmas {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'><text x='10' y='25' font-size='18' opacity='0.07'>❄</text><text x='52' y='55' font-size='20' opacity='0.07'>🎄</text></svg>");
  background-attachment: fixed;
}
body.festival-eid {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'><text x='14' y='30' font-size='20' opacity='0.07'>🌙</text><text x='48' y='62' font-size='18' opacity='0.07'>⭐</text></svg>");
  background-attachment: fixed;
}
body.festival-independence {
  background-image: linear-gradient(180deg, rgba(255,153,51,0.05) 0%, rgba(255,255,255,0) 33%, rgba(255,255,255,0) 66%, rgba(19,136,8,0.05) 100%);
  background-attachment: fixed;
}

.festival-banner {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--primary-dark);
  text-align: center;
  padding: 8px 16px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
}

/* ===== Gallery ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}
.gallery-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}
.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.gallery-card .thumb {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  background: var(--bg-light);
}
.gallery-card .info {
  padding: 12px 14px;
}
.gallery-card .info h4 {
  color: var(--primary);
  font-size: 15px;
  margin-bottom: 4px;
}
.gallery-card .info p {
  color: var(--text-light);
  font-size: 13px;
  line-height: 1.4;
}
.gallery-card .cat-pill {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0,0,0,0.65);
  color: var(--white);
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
}
.gallery-thumb-link {
  display: block;
  cursor: zoom-in;
  outline: none;
}
.gallery-thumb-link:focus-visible {
  box-shadow: 0 0 0 3px var(--accent, #ffb400);
  border-radius: 8px;
}

/* ===== Gallery Lightbox ===== */
.gallery-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  animation: lbFade 0.18s ease-out;
}
.gallery-lightbox.show { display: flex; }
@keyframes lbFade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.gallery-lightbox .lightbox-figure {
  position: relative;
  max-width: min(1100px, 95vw);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
}
.gallery-lightbox .lightbox-image {
  max-width: 100%;
  max-height: 75vh;
  width: auto;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  background: #111;
  object-fit: contain;
}
.gallery-lightbox .lightbox-caption {
  margin-top: 16px;
  text-align: center;
  color: #fff;
  max-width: 720px;
  padding: 0 12px;
}
.gallery-lightbox .lightbox-cat {
  display: inline-block;
  background: var(--accent, #ffb400);
  color: #1a1a1a;
  padding: 3px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 8px;
}
.gallery-lightbox .lightbox-title {
  margin: 6px 0 6px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}
.gallery-lightbox .lightbox-desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.82);
}
.gallery-lightbox .lightbox-close,
.gallery-lightbox .lightbox-nav {
  position: absolute;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
  transition: background 0.15s ease, transform 0.15s ease;
  z-index: 2;
}
.gallery-lightbox .lightbox-close:hover,
.gallery-lightbox .lightbox-nav:hover {
  background: rgba(255,255,255,0.25);
  transform: scale(1.05);
}
.gallery-lightbox .lightbox-close {
  top: 18px;
  right: 18px;
  font-size: 28px;
}
.gallery-lightbox .lightbox-prev { left: 18px; top: 50%; transform: translateY(-50%); }
.gallery-lightbox .lightbox-next { right: 18px; top: 50%; transform: translateY(-50%); }
.gallery-lightbox .lightbox-prev:hover { transform: translateY(-50%) scale(1.05); }
.gallery-lightbox .lightbox-next:hover { transform: translateY(-50%) scale(1.05); }
@media (max-width: 640px) {
  .gallery-lightbox { padding: 16px 8px; }
  .gallery-lightbox .lightbox-image { max-height: 60vh; }
  .gallery-lightbox .lightbox-close { top: 10px; right: 10px; width: 38px; height: 38px; font-size: 24px; }
  .gallery-lightbox .lightbox-nav { width: 38px; height: 38px; font-size: 18px; }
  .gallery-lightbox .lightbox-prev { left: 8px; }
  .gallery-lightbox .lightbox-next { right: 8px; }
  .gallery-lightbox .lightbox-title { font-size: 16px; }
  .gallery-lightbox .lightbox-desc { font-size: 13px; }
}

/* Image upload preview */
.image-preview {
  margin-top: 10px;
  max-width: 100%;
  max-height: 200px;
  border-radius: 8px;
  border: 2px dashed #ddd;
  padding: 4px;
  background: var(--bg-light);
  display: none;
}
.image-preview.show { display: block; }
.upload-progress {
  margin-top: 8px;
  font-size: 13px;
  color: var(--primary);
  display: none;
}
.upload-progress.show { display: block; }

/* Color picker row */
.color-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.color-row label {
  flex: 1;
  font-weight: 600;
  font-size: 14px;
}
.color-row input[type="color"] {
  width: 60px;
  height: 38px;
  padding: 0;
  border: 2px solid #e1e5eb;
  border-radius: 6px;
  cursor: pointer;
  background: white;
}
.color-row input[type="text"] {
  width: 110px;
  padding: 8px 10px;
  font-family: monospace;
  font-size: 13px;
  text-align: center;
  border: 2px solid #e1e5eb;
  border-radius: 6px;
}

/* Festival preset cards */
.preset-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 8px;
}
.preset-card {
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 14px 12px;
  cursor: pointer;
  text-align: center;
  transition: var(--transition);
  background: var(--white);
}
.preset-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.preset-card.active { border-color: var(--primary); background: #f3f7ff; }
.preset-card .preset-emoji { font-size: 28px; margin-bottom: 4px; }
.preset-card .preset-name { font-weight: 600; color: var(--primary); font-size: 14px; }
.preset-card .preset-swatches {
  display: flex;
  gap: 4px;
  justify-content: center;
  margin-top: 8px;
}
.preset-card .swatch {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1px solid rgba(0,0,0,0.1);
}

/* ===== Modal ===== */
.modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1000;
  justify-content: center;
  align-items: flex-start;
  overflow-y: auto;
  padding: 30px 16px;
}
.modal-backdrop.show { display: flex; }
.modal {
  background: var(--white);
  border-radius: var(--radius);
  width: 100%;
  max-width: 560px;
  padding: 28px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.modal h2 { color: var(--primary); margin-bottom: 16px; font-size: 22px; }
.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
  color: var(--text-light);
  line-height: 1;
}
.modal-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 20px;
}

/* ===== Login Card ===== */
.login-wrap {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
  background: var(--bg-light);
}
.login-card {
  background: var(--white);
  padding: 38px 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 460px;
}
.login-card h2 {
  color: var(--primary);
  text-align: center;
  margin-bottom: 8px;
}
.login-card .lead {
  color: var(--text-light);
  text-align: center;
  margin-bottom: 24px;
  font-size: 14px;
}
.login-card .help-text {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 4px;
  line-height: 1.5;
}
.login-card .help-text a { font-weight: 600; }

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .site-header { padding: 12px 18px; flex-wrap: wrap; }
  .site-header .logo img { height: 42px; }
  .site-header .brand-name { font-size: 18px; }
  .site-header .brand-tagline { display: none; }
  .menu-toggle { display: block; }
  .site-nav {
    width: 100%;
    display: none;
    margin-top: 12px;
  }
  .site-nav.open { display: block; }
  .site-nav ul {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }
  .site-nav li {
    border-bottom: 1px solid #eef0f4;
  }
  .site-nav a {
    display: block;
    padding: 12px 4px;
  }

  .hero {
    padding: 64px 22px 48px;
    min-height: 52vh;
    background: linear-gradient(135deg, #0f1e14 0%, #1f3a2e 55%, #122318 100%);
  }
  .hero h1 { font-size: 32px; }
  .hero p { font-size: 15px; }
  .slider { height: 300px; }
  #sliderMount { min-height: 300px; }
  #serviceGrid { min-height: 720px; }
  .slide { font-size: 22px; }
  .slide-sub { font-size: 14px; }
  .arrow { font-size: 20px; width: 38px; height: 38px; }
  .arrow.left { left: 8px; }
  .arrow.right { right: 8px; }

  .section { padding: 56px 22px; }
  .section-title { font-size: 26px; }
  .booking-section {
    padding: 56px 16px;
    background: linear-gradient(135deg, #0f1e14, #1f3a2e);
    background-attachment: scroll;
  }
  .booking-card { padding: 28px 22px; }
  .booking-card h2 { font-size: 24px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  /* About 2-col stacks */
  .about-2col { grid-template-columns: 1fr; gap: 30px; }
  .about-2col-image { min-height: 280px; }
  .about-2col.reverse .about-2col-image { order: 0; }

  .service-hero { min-height: 44vh; padding: 70px 22px 50px; }
  .service-detail { padding: 50px 18px; }
  .service-detail h1 { font-size: 28px; }

  .cta-strip {
    padding: 60px 20px;
    background: linear-gradient(135deg, #122318, #1f3a2e);
    background-attachment: scroll;
  }
  .manifesto-block {
    background: linear-gradient(135deg, rgba(10,18,12,0.98) 0%, rgba(18,35,24,0.94) 100%);
  }
  .section-below-fold {
    content-visibility: auto;
    contain-intrinsic-size: auto 480px;
  }

  .site-footer { padding: 50px 22px 18px; }
  .footer-content { gap: 28px; }

  .float-btn { width: 50px; height: 50px; font-size: 22px; }

  .admin-table { font-size: 13px; }
  .admin-table th, .admin-table td { padding: 10px 6px; }
  .admin-table .msg-cell { max-width: 160px; }

  /* Sidebar collapses on mobile */
  .admin-shell { flex-direction: column; }
  .admin-sidebar {
    position: fixed;
    top: 0;
    left: -260px;
    width: 240px;
    height: 100vh;
    z-index: 1100;
    box-shadow: var(--shadow-lg);
  }
  .admin-sidebar.open { left: 0; }
  .admin-content { padding: 18px 16px; }
  .sidebar-toggle-btn { display: inline-block; }
  .sidebar-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1090;
  }
  .sidebar-backdrop.show { display: block; }

  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
  .gallery-card .thumb { height: 130px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 26px; }
  .section-title { font-size: 22px; }
  .service-card { padding: 22px 18px; }
}

/* =====================================================================
   3D LOOK LAYER (icons, cards, buttons, sections, images)
   Adds depth/embossed feel without heavy 3D libraries — pure CSS
   gradients, layered shadows, perspective tilts.
   ===================================================================== */

/* ---------- SVG icon (.c4a-icon) ---------- */
.c4a-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width:  var(--c4a-icon-size, 24px);
  height: var(--c4a-icon-size, 24px);
  flex-shrink: 0;
  vertical-align: middle;
  line-height: 0;
  color: currentColor;
}
.c4a-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  stroke: currentColor;
  fill: none;
}
.c4a-icon-inline {
  width:  var(--c4a-icon-size, 1.05em);
  height: var(--c4a-icon-size, 1.05em);
  margin: 0 .15em -0.18em;
  color: currentColor;
}

/* ---------- 3D icon badges (gold / dark / glass) ---------- */
.c4a-icon-3d,
.c4a-icon-3d-gold,
.c4a-icon-3d-dark,
.c4a-icon-3d-glass {
  --pad: 14px;
  width:  calc(var(--c4a-icon-size, 28px) + var(--pad) * 2);
  height: calc(var(--c4a-icon-size, 28px) + var(--pad) * 2);
  border-radius: 50%;
  position: relative;
  isolation: isolate;
  transform: translateZ(0);
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease;
}
.c4a-icon-3d > svg,
.c4a-icon-3d-gold > svg,
.c4a-icon-3d-dark > svg,
.c4a-icon-3d-glass > svg {
  width: var(--c4a-icon-size, 28px);
  height: var(--c4a-icon-size, 28px);
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 2px 1.5px rgba(0,0,0,0.18));
  stroke-width: 2;
}

/* Gold (default 3D) — primary brand badge */
.c4a-icon-3d,
.c4a-icon-3d-gold {
  background:
    radial-gradient(circle at 32% 28%, #fff7e2 0%, #f0d99a 28%, #c9a36a 65%, #8a6630 100%);
  color: #4a3416;
  box-shadow:
    inset 0 2px 3px rgba(255,255,255,0.85),
    inset 0 -3px 5px rgba(74,52,22,0.35),
    inset 0 0 0 1px rgba(255,255,255,0.25),
    0 6px 14px rgba(74,52,22,0.30),
    0 14px 28px rgba(74,52,22,0.22);
}
.c4a-icon-3d::after,
.c4a-icon-3d-gold::after {
  content: '';
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 32% 22%, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0) 45%);
  z-index: 1;
  pointer-events: none;
}

/* Dark forest 3D badge */
.c4a-icon-3d-dark {
  background:
    radial-gradient(circle at 30% 28%, #4d6c5b 0%, #2c4a3e 35%, #122318 100%);
  color: #f3ebd9;
  box-shadow:
    inset 0 2px 3px rgba(255,255,255,0.18),
    inset 0 -3px 6px rgba(0,0,0,0.55),
    inset 0 0 0 1px rgba(255,255,255,0.06),
    0 6px 14px rgba(15,30,20,0.45),
    0 14px 28px rgba(15,30,20,0.30);
}
.c4a-icon-3d-dark::after {
  content: '';
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 32% 22%, rgba(255,255,255,0.32) 0%, rgba(255,255,255,0) 45%);
  z-index: 1;
  pointer-events: none;
}

/* Glass / frosted */
.c4a-icon-3d-glass {
  background:
    linear-gradient(145deg, rgba(255,255,255,0.85), rgba(255,255,255,0.45));
  backdrop-filter: blur(8px);
  color: var(--accent-dark);
  box-shadow:
    inset 0 2px 2px rgba(255,255,255,0.95),
    inset 0 -2px 4px rgba(20,35,24,0.10),
    inset 0 0 0 1px rgba(255,255,255,0.65),
    0 8px 20px rgba(20,35,24,0.12);
}

/* Hover lift on badged icons inside cards */
.feature-box:hover .c4a-icon-3d,
.feature-box:hover .c4a-icon-3d-gold,
.feature-box:hover .c4a-icon-3d-dark,
.service-card:hover .c4a-icon-3d-gold,
.service-card:hover .c4a-icon-3d-glass {
  transform: translateY(-4px) scale(1.04);
}

/* ---------- Override emoji-style .feature-icon to use 3D badge ---------- */
.feature-box .feature-icon {
  width: 96px;
  height: 96px;
  --c4a-icon-size: 36px;
  background:
    radial-gradient(circle at 32% 28%, #fff7e2 0%, #f0d99a 28%, #c9a36a 65%, #8a6630 100%);
  color: #4a3416;
  box-shadow:
    inset 0 2px 3px rgba(255,255,255,0.85),
    inset 0 -3px 5px rgba(74,52,22,0.35),
    inset 0 0 0 1px rgba(255,255,255,0.25),
    0 8px 18px rgba(74,52,22,0.28),
    0 18px 36px rgba(74,52,22,0.20);
  position: relative;
  isolation: isolate;
  font-size: 38px;
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.feature-box .feature-icon::after {
  content: '';
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 32% 22%, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0) 45%);
  pointer-events: none;
  z-index: 0;
}
.feature-box .feature-icon > * { position: relative; z-index: 1; }
.feature-box:hover .feature-icon { transform: translateY(-4px) scale(1.06); }

/* "How it works" numbered icons should look like dark embossed coins */
.feature-box .feature-icon[style*="background:var(--primary)"],
.feature-box .feature-icon.feature-num {
  background:
    radial-gradient(circle at 30% 28%, #4d6c5b 0%, #2c4a3e 35%, #122318 100%) !important;
  color: #fff !important;
  box-shadow:
    inset 0 2px 3px rgba(255,255,255,0.20),
    inset 0 -3px 6px rgba(0,0,0,0.55),
    inset 0 0 0 1px rgba(255,255,255,0.06),
    0 8px 18px rgba(15,30,20,0.45),
    0 18px 36px rgba(15,30,20,0.30) !important;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 32px;
}

/* ---------- 3D buttons ---------- */
.btn {
  position: relative;
  border-radius: 8px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  isolation: isolate;
  overflow: hidden;
  transform: translateZ(0);
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0) 50%);
  pointer-events: none;
  z-index: 0;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0) 60%, rgba(0,0,0,0.10) 100%);
  pointer-events: none;
  z-index: 0;
}
.btn > * { position: relative; z-index: 1; }

.btn-accent {
  background: linear-gradient(180deg, #d8b67d 0%, #c9a36a 50%, #a17f47 100%);
  border-color: #a17f47;
  color: #2c1d09;
  text-shadow: 0 1px 0 rgba(255,255,255,0.35);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.55),
    inset 0 -1.5px 0 rgba(0,0,0,0.18),
    0 4px 0 #6f5226,
    0 10px 22px rgba(74,52,22,0.35);
}
.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.55),
    inset 0 -1.5px 0 rgba(0,0,0,0.18),
    0 6px 0 #6f5226,
    0 14px 28px rgba(74,52,22,0.40);
}
.btn-accent:active {
  transform: translateY(2px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.55),
    inset 0 -1.5px 0 rgba(0,0,0,0.18),
    0 1px 0 #6f5226,
    0 4px 10px rgba(74,52,22,0.35);
}

.btn-primary {
  background: linear-gradient(180deg, #2f5444 0%, #1f3a2e 55%, #122318 100%);
  border-color: #122318;
  color: #fff;
  text-shadow: 0 1px 0 rgba(0,0,0,0.4);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    inset 0 -1.5px 0 rgba(0,0,0,0.35),
    0 4px 0 #07120c,
    0 10px 22px rgba(15,30,20,0.40);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    inset 0 -1.5px 0 rgba(0,0,0,0.35),
    0 6px 0 #07120c,
    0 14px 28px rgba(15,30,20,0.45);
}
.btn-primary:active {
  transform: translateY(2px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    inset 0 -1.5px 0 rgba(0,0,0,0.35),
    0 1px 0 #07120c,
    0 4px 10px rgba(15,30,20,0.40);
}

.btn-outline {
  background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0));
  backdrop-filter: blur(6px);
  border-color: rgba(255,255,255,0.85);
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.35),
    0 8px 18px rgba(0,0,0,0.25);
}
.btn-outline:hover {
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(241,234,219,0.95));
  color: var(--primary);
  border-color: #fff;
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.65),
    0 12px 26px rgba(0,0,0,0.30);
}

.btn-outline-dark {
  background: linear-gradient(180deg, #fff, #f5efe2);
  border-color: var(--primary);
  color: var(--primary);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.95),
    inset 0 -1.5px 0 rgba(31,58,46,0.10),
    0 4px 0 rgba(31,58,46,0.18),
    0 8px 18px rgba(31,58,46,0.10);
}
.btn-outline-dark:hover {
  background: linear-gradient(180deg, #2f5444, #1f3a2e);
  color: #fff;
  border-color: #1f3a2e;
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    0 6px 0 #07120c,
    0 14px 28px rgba(15,30,20,0.35);
}

/* ---------- Service cards: 3D depth + tilt-on-hover ---------- */
.service-grid { perspective: 1400px; }
.service-card {
  background: linear-gradient(180deg, #ffffff 0%, #faf6ef 100%);
  border-radius: 18px;
  border: 1px solid rgba(31,58,46,0.06);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 -1px 0 rgba(31,58,46,0.04) inset,
    0 4px 8px rgba(20,35,24,0.06),
    0 18px 30px -10px rgba(20,35,24,0.18),
    0 30px 60px -20px rgba(20,35,24,0.18);
  transform-style: preserve-3d;
  transition:
    transform .55s cubic-bezier(.2,.7,.2,1),
    box-shadow .45s ease;
  will-change: transform;
}
.service-card:hover {
  transform: translateY(-12px) rotateX(4deg) rotateY(-3deg);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 6px 12px rgba(20,35,24,0.08),
    0 30px 50px -10px rgba(20,35,24,0.28),
    0 60px 100px -30px rgba(20,35,24,0.30);
}
.service-card .service-image {
  height: 220px;
  border-radius: 18px 18px 0 0;
  position: relative;
  overflow: hidden;
}
.service-card .service-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0) 50%),
    linear-gradient(160deg, rgba(20,35,24,0) 30%, rgba(20,35,24,0.30) 100%);
  z-index: 1;
  pointer-events: none;
  transition: var(--transition);
}
.service-card:hover .service-image::before {
  background:
    radial-gradient(ellipse at top, rgba(255,255,255,0.28) 0%, rgba(255,255,255,0) 55%),
    linear-gradient(160deg, rgba(20,35,24,0) 25%, rgba(20,35,24,0.45) 100%);
}
.service-card .service-icon-overlay {
  --c4a-icon-size: 30px;
  width: 64px;
  height: 64px;
  background:
    radial-gradient(circle at 32% 28%, #fff7e2 0%, #f0d99a 28%, #c9a36a 65%, #8a6630 100%);
  color: #4a3416;
  font-size: 30px;
  box-shadow:
    inset 0 2px 3px rgba(255,255,255,0.85),
    inset 0 -3px 5px rgba(74,52,22,0.35),
    inset 0 0 0 1px rgba(255,255,255,0.25),
    0 6px 14px rgba(74,52,22,0.35),
    0 14px 28px rgba(74,52,22,0.25);
  z-index: 3;
  transform: translateZ(40px);
  transition: transform .45s cubic-bezier(.2,.7,.2,1);
}
.service-card .service-icon-overlay::after {
  content: '';
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 32% 22%, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0) 45%);
  pointer-events: none;
}
.service-card:hover .service-icon-overlay {
  transform: translateZ(50px) translateY(-4px) scale(1.08);
}

/* ---------- Feature box 3D ---------- */
.feature-box {
  background: linear-gradient(180deg, #ffffff 0%, #faf6ef 100%);
  border-radius: 18px;
  border: 1px solid rgba(31,58,46,0.06);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 -1px 0 rgba(31,58,46,0.04) inset,
    0 4px 8px rgba(20,35,24,0.06),
    0 16px 28px -8px rgba(20,35,24,0.18),
    0 30px 56px -22px rgba(20,35,24,0.20);
  transition: transform .45s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease, border-color .35s ease;
}
.feature-box:hover {
  transform: translateY(-8px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 8px 16px rgba(20,35,24,0.08),
    0 24px 40px -10px rgba(20,35,24,0.24),
    0 50px 90px -30px rgba(20,35,24,0.30);
  border-bottom-color: var(--accent);
}

/* ---------- Hero CTA buttons get a deeper 3D shadow ---------- */
.hero .btn-lg { font-size: 14px; padding: 18px 36px; }
.hero-cta { gap: 18px; }

/* ---------- Slider 3D arrows + slide depth ---------- */
.slider {
  border-radius: 0;
  box-shadow:
    inset 0 -2px 30px rgba(0,0,0,0.35),
    0 30px 60px -20px rgba(15,30,20,0.45);
}
.slide {
  transform-style: preserve-3d;
}
.slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0) 55%);
  pointer-events: none;
  z-index: 1;
}
.arrow {
  background: linear-gradient(180deg, rgba(255,255,255,0.30), rgba(255,255,255,0.15));
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.4);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.35),
    0 8px 18px rgba(0,0,0,0.30);
}
.arrow:hover {
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.7));
  color: var(--primary);
  transform: translateY(-50%) scale(1.06);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.85),
    0 12px 26px rgba(0,0,0,0.35);
}

/* ---------- About / image frames get 3D treatment ---------- */
.about-2col-image {
  border-radius: 22px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.6) inset,
    0 4px 8px rgba(20,35,24,0.10),
    0 20px 40px -8px rgba(20,35,24,0.30),
    0 50px 90px -30px rgba(20,35,24,0.35);
  transform: perspective(1200px) rotateY(-3deg) rotateX(2deg);
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
}
.about-2col-image:hover {
  transform: perspective(1200px) rotateY(-1deg) rotateX(1deg) translateY(-6px);
}
@media (max-width: 768px) {
  .about-2col-image { transform: none; }
  .about-2col-image:hover { transform: none; }
}

/* ---------- Hero — 3D depth glow + gold rim divider ---------- */
.hero {
  box-shadow: inset 0 -40px 60px -30px rgba(0,0,0,0.55);
}
.hero h1 {
  text-shadow:
    0 1px 0 rgba(0,0,0,0.5),
    0 6px 22px rgba(0,0,0,0.55);
}
.hero-tag-strong {
  background: linear-gradient(180deg, rgba(201,163,106,0.28), rgba(201,163,106,0.12));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.2),
    0 6px 14px rgba(0,0,0,0.30);
}

/* ---------- CTA strip / Booking card depth ---------- */
.cta-strip {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    inset 0 -1px 0 rgba(0,0,0,0.25),
    0 30px 60px -20px rgba(15,30,20,0.45);
}
.booking-card {
  border-radius: 22px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 6px 12px rgba(20,35,24,0.08),
    0 30px 50px -10px rgba(20,35,24,0.30),
    0 60px 110px -30px rgba(20,35,24,0.32);
}

/* ---------- Testimonial cards 3D ---------- */
.testimonial-card {
  background: linear-gradient(180deg, #ffffff 0%, #faf6ef 100%);
  border-radius: 18px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 4px 8px rgba(20,35,24,0.06),
    0 14px 28px -8px rgba(20,35,24,0.18),
    0 28px 50px -22px rgba(20,35,24,0.18);
}
.testimonial-card:hover {
  transform: translateY(-6px) rotateX(2deg);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 24px 40px -10px rgba(20,35,24,0.24),
    0 50px 90px -30px rgba(20,35,24,0.30);
}

/* ---------- Areas chips become little 3D pills ---------- */
.area-chip {
  background: linear-gradient(180deg, #ffffff 0%, #f5efe2 100%);
  border: 1px solid rgba(201,163,106,0.45);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.95),
    inset 0 -1.5px 0 rgba(74,52,22,0.10),
    0 4px 10px rgba(74,52,22,0.10),
    0 1px 0 rgba(74,52,22,0.20);
}
.area-chip:hover {
  background: linear-gradient(180deg, #d8b67d 0%, #c9a36a 50%, #a17f47 100%);
  color: #2c1d09;
  border-color: #a17f47;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.55),
    inset 0 -1.5px 0 rgba(0,0,0,0.18),
    0 6px 0 #6f5226,
    0 12px 22px rgba(74,52,22,0.35);
}
.area-chip .area-pin { display: inline-flex; }
.area-chip .area-pin .c4a-icon,
.area-chip .area-pin svg { width: 16px; height: 16px; color: var(--accent-dark); }
.area-chip:hover .area-pin .c4a-icon,
.area-chip:hover .area-pin svg { color: #2c1d09; }

/* ---------- FAQ pieces ---------- */
.faq-item {
  background: linear-gradient(180deg, #ffffff 0%, #faf6ef 100%);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 4px 8px rgba(20,35,24,0.04),
    0 14px 24px -10px rgba(20,35,24,0.14);
}
.faq-item summary::after {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, #fff7e2 0%, #f0d99a 28%, #c9a36a 65%, #8a6630 100%);
  color: #4a3416;
  font-size: 18px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.65),
    0 4px 10px rgba(74,52,22,0.30);
}

/* ---------- Floating buttons 3D spheres ---------- */
.floating-buttons { gap: 14px; }
.float-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  position: relative;
  isolation: isolate;
  overflow: visible;
  --c4a-icon-size: 26px;
  font-size: 26px;
  border: none;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease;
}
.float-btn::before {
  content: '';
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 32% 22%, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0) 50%);
  z-index: 1;
  pointer-events: none;
}
.float-btn > * { position: relative; z-index: 2; }
.float-btn.whatsapp {
  background:
    radial-gradient(circle at 32% 28%, #6cf08a 0%, #25d366 35%, #0e9e3f 100%);
  box-shadow:
    inset 0 2px 3px rgba(255,255,255,0.45),
    inset 0 -3px 6px rgba(0,0,0,0.25),
    0 6px 14px rgba(14,90,40,0.35),
    0 16px 28px rgba(14,90,40,0.25);
  color: #fff;
}
.float-btn.call {
  background:
    radial-gradient(circle at 32% 28%, #4d6c5b 0%, #2c4a3e 35%, #122318 100%);
  box-shadow:
    inset 0 2px 3px rgba(255,255,255,0.20),
    inset 0 -3px 6px rgba(0,0,0,0.45),
    0 6px 14px rgba(15,30,20,0.40),
    0 16px 28px rgba(15,30,20,0.30);
  color: #fff;
}
.float-btn.install {
  background:
    radial-gradient(circle at 32% 28%, #fff7c0 0%, #ffd54f 35%, #c79b1f 100%) !important;
  color: #4a3416 !important;
  box-shadow:
    inset 0 2px 3px rgba(255,255,255,0.55),
    inset 0 -3px 6px rgba(0,0,0,0.18),
    0 6px 14px rgba(199,155,31,0.35),
    0 16px 28px rgba(199,155,31,0.25);
}
.float-btn:hover { transform: translateY(-4px) scale(1.08); }
.float-btn.call::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(31,58,46,0.55);
  animation: c4a-pulse 1.6s ease-out infinite;
  z-index: 0;
}
@keyframes c4a-pulse {
  0%   { transform: scale(1);   opacity: .7; }
  100% { transform: scale(1.7); opacity: 0;  }
}

/* ---------- Header logo + nav: subtle 3D refresh ---------- */
.site-header {
  background: linear-gradient(180deg, #ffffff 0%, #faf6ef 100%);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.6) inset,
    0 6px 20px rgba(20,35,24,0.08);
}
.site-header .logo img {
  filter: drop-shadow(0 4px 8px rgba(20,35,24,0.18));
}
.site-header .logo .c4a-auto-logo,
.site-header .logo .c4a-brand-logo {
  filter: drop-shadow(0 4px 8px rgba(20,35,24,0.18));
}
/* Auto-themed inline SVG logo: takes its gold/accent color from the theme,
   not from the surrounding link color. */
.c4a-auto-logo {
  color: var(--accent, #c9a36a);
  transition: color .35s ease;
}

/* ---------- Footer 3D contact icons ---------- */
.footer-section ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.78);
  line-height: 2.2;
  font-size: 14px;
}
.footer-section ul li .c4a-icon {
  --c4a-icon-size: 16px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, #fff7e2 0%, #f0d99a 28%, #c9a36a 65%, #8a6630 100%);
  color: #4a3416;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.65),
    inset 0 -1px 2px rgba(74,52,22,0.30),
    0 3px 6px rgba(0,0,0,0.30);
  flex-shrink: 0;
}
.footer-section ul li .c4a-icon svg { width: 16px; height: 16px; }

/* Quick links / services lists keep their normal layout */
.footer-section ul.flat li,
.footer-section.no-icon-list ul li { display: list-item; gap: 0; }
.footer-section ul li a {
  padding-left: 0;
}

/* ---------- Quote mark, gallery cards small lifts ---------- */
.gallery-card {
  border-radius: 14px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 4px 8px rgba(20,35,24,0.06),
    0 14px 24px -10px rgba(20,35,24,0.18);
}
.gallery-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 18px 30px -10px rgba(20,35,24,0.28),
    0 40px 70px -30px rgba(20,35,24,0.30);
}

/* ---------- Section eyebrow gets a tiny gold rim ---------- */
.section-eyebrow {
  position: relative;
  padding: 4px 14px;
  border-radius: 999px;
  display: inline-block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(180deg, rgba(201,163,106,0.10), rgba(201,163,106,0.02));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.75),
    inset 0 -1px 0 rgba(74,52,22,0.10),
    0 1px 2px rgba(74,52,22,0.10);
}

/* ---------- "Service hero" eyebrow becomes premium pill ---------- */
.service-hero .hero-eyebrow {
  background: linear-gradient(180deg, rgba(201,163,106,0.22), rgba(201,163,106,0.10));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.20),
    0 6px 14px rgba(0,0,0,0.30);
}

/* ---------- Slider icon badge (used in title row) ---------- */
.slide .slide-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, #fff7e2 0%, #f0d99a 28%, #c9a36a 65%, #8a6630 100%);
  color: #4a3416;
  --c4a-icon-size: 30px;
  box-shadow:
    inset 0 2px 3px rgba(255,255,255,0.85),
    inset 0 -3px 5px rgba(74,52,22,0.35),
    0 6px 14px rgba(0,0,0,0.35),
    0 14px 28px rgba(0,0,0,0.25);
  margin-bottom: 14px;
  position: relative;
}
.slide .slide-icon::after {
  content: '';
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 32% 22%, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0) 45%);
  pointer-events: none;
}

/* ---------- emoji-swap span: don't wrap or affect line-height ---------- */
.c4a-emoji-swap {
  display: inline;
  line-height: inherit;
}
.c4a-emoji-swap .c4a-icon { vertical-align: -0.18em; }

/* ---------- Admin: 3D Logo Style picker grid ---------- */
.logo-style-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
}
.logo-style-card {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #faf6ef 100%);
  border: 2px solid transparent;
  border-radius: 14px;
  padding: 14px 12px 12px;
  text-align: center;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 4px 8px rgba(20,35,24,0.06),
    0 12px 22px -8px rgba(20,35,24,0.18);
}
.logo-style-card:hover {
  transform: translateY(-3px);
  border-color: rgba(201,163,106,0.55);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 18px 30px -10px rgba(20,35,24,0.24),
    0 30px 60px -22px rgba(20,35,24,0.30);
}
.logo-style-card.active {
  border-color: var(--accent-dark);
  background: linear-gradient(180deg, #fffbf2 0%, #f5e9cd 100%);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    inset 0 0 0 1px rgba(74,52,22,0.20),
    0 6px 12px rgba(74,52,22,0.18),
    0 18px 36px -10px rgba(74,52,22,0.30);
}
.logo-style-card.active::after {
  content: '';
  position: absolute;
  top: 8px; right: 8px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent-dark);
  background-image:
    linear-gradient(180deg, var(--accent), var(--accent-dark)),
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0) 50%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.7),
    0 2px 5px rgba(0,0,0,0.25);
}
.logo-style-card.active::before {
  content: '✓';
  position: absolute;
  top: 8px; right: 8px;
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  z-index: 2;
  text-shadow: 0 1px 1px rgba(0,0,0,0.35);
}
.logo-style-card .lsc-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 10px;
  margin-bottom: 8px;
  border: 1px solid rgba(31,58,46,0.06);
  overflow: hidden;
  padding: 8px;
}
.logo-style-card .lsc-thumb img,
.logo-style-card .lsc-thumb svg {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}
.logo-style-card .lsc-thumb.lsc-thumb-auto {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}
.logo-style-card .lsc-name {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--primary);
  font-size: 13px;
  margin-bottom: 2px;
}
.logo-style-card .lsc-meta {
  font-size: 10px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
}
.logo-style-card .lsc-badge {
  display: inline-block;
  margin-top: 6px;
  padding: 2px 8px;
  background: linear-gradient(180deg, var(--accent), var(--accent-dark));
  color: #2c1d09;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 10px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.5);
}

/* ---------- Reduced motion: disable tilts and pulses ---------- */
@media (prefers-reduced-motion: reduce) {
  .service-card,
  .feature-box,
  .testimonial-card,
  .gallery-card,
  .about-2col-image,
  .float-btn,
  .arrow,
  .btn,
  .area-chip {
    transition: none !important;
  }
  .service-card:hover,
  .feature-box:hover,
  .testimonial-card:hover,
  .about-2col-image:hover,
  .gallery-card:hover {
    transform: none !important;
  }
  .float-btn.call::after { animation: none !important; }
}

/* ===== SEO Local Blocks (seo-local.js) ===== */
.seo-block {
  padding: 48px 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.seo-block.seo-local-content {
  padding-top: 0;
}
.seo-local-section {
  margin: 28px 0;
}
.seo-local-section h2 {
  font-size: 1.35rem;
  color: var(--primary);
  margin-bottom: 10px;
}
.seo-areas-list {
  columns: 2;
  column-gap: 32px;
  line-height: 2;
  margin: 16px 0 0;
  padding-left: 20px;
}
.seo-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 20px;
}
.seo-benefit-card {
  background: var(--white);
  border: 1px solid #e8ecf2;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}
.seo-benefit-card h3 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 8px;
}
.seo-benefit-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.55;
}
.seo-table-wrap {
  overflow-x: auto;
  margin: 20px 0;
  border-radius: var(--radius);
  border: 1px solid #e8ecf2;
}
.seo-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  background: var(--white);
}
.seo-table th,
.seo-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid #eef0f4;
}
.seo-table th {
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
}
.seo-table tr:last-child td { border-bottom: none; }
.seo-table tr:nth-child(even) td { background: #fafbfc; }
.seo-note {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 12px;
}
.seo-local-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
  margin-top: 20px;
}
.seo-contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  line-height: 1.9;
}
.seo-contact-list li { font-size: 0.95rem; }
.seo-local-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.seo-local-map iframe {
  width: 100%;
  min-height: 280px;
}
.seo-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}
.seo-links-grid a {
  display: block;
  padding: 12px 16px;
  background: var(--bg-light);
  border-radius: 8px;
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  border: 1px solid #e8ecf2;
  transition: background 0.15s, border-color 0.15s;
}
.seo-links-grid a:hover {
  background: var(--white);
  border-color: var(--accent);
}
@media (max-width: 768px) {
  .seo-local-grid { grid-template-columns: 1fr; }
  .seo-areas-list { columns: 1; }
  .seo-block { padding: 36px 16px; }
}

/* Unified public brand system: neutral surfaces with one violet accent. */
body{background:#fff;color:#171717}
.btn,.pa-btn{border-radius:10px;box-shadow:none;background-image:none}
.btn-primary,.pa-btn{background:#181818!important;border-color:#181818!important;color:#fff!important}
.btn-primary:hover,.pa-btn:hover{background:#333!important;border-color:#333!important;color:#fff!important}
.btn-accent,.btn-property-call,.btn-whatsapp{background:#6c4ee3!important;border-color:#6c4ee3!important;color:#fff!important;background-image:none!important;box-shadow:none!important}
.btn-accent:hover,.btn-property-call:hover,.btn-whatsapp:hover{background:#5538c7!important;border-color:#5538c7!important;color:#fff!important}
.btn-outline,.btn-outline-dark{background:#fff!important;border-color:#d8d8d8!important;color:#181818!important}
.btn-outline:hover,.btn-outline-dark:hover{background:#f5f3ff!important;border-color:#6c4ee3!important;color:#5538c7!important}
.section-eyebrow{background:#f3f0ff;border-color:#ded6ff;color:#6042d5}
.section-title .accent{color:#6c4ee3;font-style:normal}
.service-card,.testimonial-card,.faq-item,.property-list-card,.market-card{border-color:#e7e7e7;box-shadow:0 5px 18px rgba(0,0,0,.06)}
.area-chip:hover{background:#6c4ee3;border-color:#6c4ee3;color:#fff}
.btn::before,.btn::after{display:none}
.float-btn.whatsapp{background:#6c4ee3!important;box-shadow:0 6px 18px rgba(108,78,227,.28)!important}
.float-btn.call{background:#181818!important;box-shadow:0 6px 18px rgba(0,0,0,.24)!important}
.float-btn::before{display:none}
