/* ═══════════════════════════════════════════════════════
   VELA BATH CO — "Quiet Luxury, Expertly Installed."
   Design System: Premium Editorial — Black & Gold
   ═══════════════════════════════════════════════════════ */

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

:root {
  --black: #0A0A0A;
  --charcoal: #1A1A1A;
  --dark-grey: #2A2A2A;
  --mid-grey: #444444;
  --light-grey: #888888;
  --off-white: #F5F5F3;
  --white: #FFFFFF;
  --gold: #C9A84C;
  --gold-light: #D4B85C;
  --gold-dark: #B8943C;
  --cream: #FAF9F6;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1200px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; color: var(--charcoal); }
h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }

.section-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.gold-text { color: var(--gold); }
.white-text { color: var(--white); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-secondary:hover {
  background: var(--white);
  color: var(--black);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--black);
}

.btn-dark {
  background: var(--charcoal);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--dark-grey);
  transform: translateY(-2px);
}

/* ─── HEADER ─── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition);
}

.header.transparent { background: transparent; }
.header.solid {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  padding: 12px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.header-logo img {
  height: 70px;
  width: auto;
}

.header-nav { display: flex; align-items: center; gap: 32px; }
.header-nav a {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color var(--transition);
}
.header-nav a:hover { color: var(--gold); }

.header-cta .btn { padding: 10px 24px; font-size: 0.8rem; }

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}
.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 10, 0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.mobile-menu.active { display: flex; }
.mobile-menu a {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.5) 50%, rgba(10,10,10,0.3) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 24px;
  margin-left: 8%;
}
.hero-content .section-label { margin-bottom: 1.5rem; }
.hero-content h1 { color: var(--white); margin-bottom: 1rem; }
.hero-content h1 .gold-text { display: block; }
.hero-tagline {
  color: rgba(255,255,255,0.8);
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 0.5rem;
}
.hero-subtitle {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 500px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* ─── TRUST BAR ─── */
.trust-bar {
  background: var(--charcoal);
  padding: 40px 0;
}
.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.trust-item {}
.trust-value {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.trust-label {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ─── SECTIONS ─── */
.section { padding: 100px 0; }
.section-dark { background: var(--charcoal); color: var(--white); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-cream { background: var(--cream); }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.section-header p { color: var(--light-grey); font-size: 1.1rem; margin-top: 1rem; }

/* ─── IMAGE-LED TRUST PANELS ─── */
.why-choose-section {
  background: var(--cream);
}
.why-choose-section .section-header {
  max-width: 800px;
}
.why-choose-section .section-header p {
  color: var(--mid-grey);
  font-size: 1.1rem;
  line-height: 1.8;
}
.trust-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
}
.trust-panel:last-of-type {
  margin-bottom: 0;
}
.trust-panel-reverse {
  direction: rtl;
}
.trust-panel-reverse > * {
  direction: ltr;
}
.trust-panel-img {
  overflow: hidden;
  border-radius: 4px;
}
.trust-panel-img img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.trust-panel:hover .trust-panel-img img {
  transform: scale(1.03);
}
.trust-panel-text h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
  color: var(--charcoal);
  margin-bottom: 1rem;
}
.trust-panel-text p {
  color: var(--mid-grey);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* Trust Points Bar */
.trust-points-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 32px;
  margin-top: 64px;
  padding: 32px 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.trust-point-item {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.02em;
}

/* Trust CTA Row */
.trust-cta-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
}

@media (max-width: 768px) {
  .trust-panel {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .trust-panel-reverse {
    direction: ltr;
  }
  .trust-panel-img img {
    height: 280px;
  }
  .trust-points-bar {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .trust-cta-row {
    flex-direction: column;
    align-items: center;
  }
}

/* ─── SERVICES GRID ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.service-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.service-card-img {
  height: 300px;
  overflow: hidden;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-body { padding: 32px; }
.service-card-price {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 4px 12px;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}
.service-card-body h3 { margin-bottom: 12px; }
.service-card-body p { color: var(--light-grey); margin-bottom: 20px; }

/* ─── PROCESS STEPS ─── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.process-step { text-align: center; }
.process-number {
  width: 60px;
  height: 60px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--gold);
  margin: 0 auto 16px;
}
.process-step h4 { margin-bottom: 8px; }
.process-step p { color: var(--light-grey); font-size: 0.9rem; }

/* ─── TESTIMONIALS ─── */
.testimonials-section { overflow: hidden; }
.testimonial-carousel { position: relative; }
.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}
.testimonial-card {
  min-width: 100%;
  padding: 0 24px;
}
.testimonial-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.testimonial-stars { color: var(--gold); font-size: 1.5rem; margin-bottom: 20px; letter-spacing: 4px; }
.testimonial-quote {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 24px;
  color: var(--charcoal);
}
.section-dark .testimonial-quote { color: var(--charcoal); }
.testimonial-author { font-weight: 600; color: var(--gold); }
.testimonial-location { color: var(--mid-grey); font-size: 0.9rem; }
.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}
.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--mid-grey);
  border: none;
  cursor: pointer;
  transition: background var(--transition);
}
.testimonial-dot.active { background: var(--gold); }
.testimonial-arrows {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}
.testimonial-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid var(--mid-grey);
  background: transparent;
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.testimonial-arrow:hover { border-color: var(--gold); color: var(--gold); }

/* ─── ELFSIGHT REVIEWS ─── */
.reviews-section {
  padding: 80px 0;
  background: var(--cream);
}
.reviews-section .section-header { margin-bottom: 40px; }
.reviews-section,
#elfsightWidget {
  background-color: #FFFFFF !important;
  color: #1A1A1A !important;
}
.reviews-section h2,
.reviews-section h3,
.reviews-section h4 {
  color: #1A1A1A !important;
}
.reviews-section p,
.reviews-section .section-header p {
  color: #444444 !important;
}
.reviews-section .section-label {
  color: var(--gold) !important;
}
.reviews-section .gold-text {
  color: var(--gold) !important;
}

/* ─── CTA SECTION ─── */
.cta-section {
  position: relative;
  padding: 120px 0;
  text-align: center;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.85);
}
.cta-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}
.cta-content h2 { color: var(--white); margin-bottom: 1rem; }
.cta-content p { color: rgba(255,255,255,0.7); margin-bottom: 2rem; font-size: 1.1rem; }

/* ─── GALLERY ─── */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 8px 20px;
  background: transparent;
  border: 1px solid var(--mid-grey);
  color: var(--charcoal);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.7) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-title { color: var(--white); font-weight: 600; font-size: 0.9rem; }

/* ─── LIGHTBOX ─── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
}
.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  width: 50px;
  height: 50px;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover, .lightbox-next:hover { border-color: var(--gold); color: var(--gold); }

/* ─── FAQ ─── */
.faq-item {
  border-bottom: 1px solid #e0e0e0;
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal);
  cursor: pointer;
  text-align: left;
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  font-size: 1.5rem;
  color: var(--gold);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
}
.faq-answer p { color: var(--light-grey); line-height: 1.7; }

/* ─── CONTACT FORM ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
  color: var(--charcoal);
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ddd;
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--white);
  transition: border-color var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}
.form-checkbox input[type="checkbox"] { margin-top: 4px; accent-color: var(--gold); }
.form-checkbox label { font-size: 0.85rem; color: var(--light-grey); text-transform: none; letter-spacing: 0; }

.contact-info-card {
  background: var(--charcoal);
  padding: 40px;
  color: var(--white);
}
.contact-info-card h3 { color: var(--white); margin-bottom: 24px; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-info-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-info-text h4 { color: var(--gold); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }
.contact-info-text p { color: rgba(255,255,255,0.7); }
.contact-info-text a { color: rgba(255,255,255,0.7); }
.contact-info-text a:hover { color: var(--gold); }

/* ─── FEATURES GRID ─── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.feature-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--white);
  border: 1px solid #eee;
  transition: all var(--transition);
}
.feature-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.feature-card h4 { margin-bottom: 8px; }
.feature-card p { color: var(--light-grey); font-size: 0.9rem; }

/* ─── PRICING ─── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}
.pricing-card {
  border: 1px solid #eee;
  padding: 40px;
  text-align: center;
  position: relative;
  transition: all var(--transition);
}
.pricing-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.pricing-card.featured {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(201,168,76,0.15);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.pricing-price {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--gold);
  margin: 16px 0;
}
.pricing-card ul { margin: 20px 0; }
.pricing-card li {
  padding: 8px 0;
  color: var(--light-grey);
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.9rem;
}
.pricing-card li:last-child { border: none; }

/* ─── FOOTER ─── */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-brand img { height: 60px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; }
.footer h4 {
  color: var(--gold);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.footer ul li { margin-bottom: 10px; }
.footer ul a { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.footer ul a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 0.8rem; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.footer-bottom-links a:hover { color: var(--gold); }

.footer-legal {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 20px 0;
  text-align: center;
}
.footer-legal p { font-size: 0.7rem; color: rgba(255,255,255,0.35); line-height: 1.6; }

.footer-group-logo {
  display: flex;
  justify-content: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-group-logo img { height: 65px; opacity: 0.9; }

/* ─── WHATSAPP BUTTON ─── */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
}
.whatsapp-btn {
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: transform var(--transition);
  cursor: pointer;
  border: none;
}
.whatsapp-btn:hover { transform: scale(1.1); }
.whatsapp-btn svg { width: 32px; height: 32px; fill: var(--white); }

/* ─── COOKIE CONSENT ─── */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--charcoal);
  color: var(--white);
  padding: 20px 24px;
  z-index: 1100;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}
.cookie-banner.active { display: block; }
.cookie-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-inner p { font-size: 0.85rem; color: rgba(255,255,255,0.8); flex: 1; }
.cookie-inner p a { color: var(--gold); text-decoration: underline; }
.cookie-buttons { display: flex; gap: 12px; }
.cookie-buttons .btn { padding: 10px 20px; font-size: 0.75rem; }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  position: relative;
  padding: 160px 0 80px;
  text-align: center;
  overflow: hidden;
}
.page-hero .hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.page-hero .hero-overlay { position: absolute; inset: 0; background: rgba(10,10,10,0.8); }
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  .header-cta { display: none; }
  .mobile-toggle { display: flex; }
  
  .hero-content { margin-left: 0; padding: 0 24px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { text-align: center; justify-content: center; }
  
  .trust-bar-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .trust-bar-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .process-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
}

/* ─── HERO SLIDER ─── */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
}
.hero-slide.active { opacity: 1; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-trust {
  display: flex;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.hero-trust span {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  font-weight: 500;
}

/* ─── PAGE HERO (with bg image) ─── */
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.8);
  z-index: 1;
}
.page-hero-content {
  position: relative;
  z-index: 2;
}

/* ─── EDITORIAL ROWS ─── */
.editorial-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}
.editorial-row:last-child { margin-bottom: 0; }
.editorial-row-reverse { direction: rtl; }
.editorial-row-reverse > * { direction: ltr; }
.editorial-img {
  overflow: hidden;
  position: relative;
}
.editorial-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  transition: transform 0.6s ease;
}
.editorial-img:hover img { transform: scale(1.03); }
.editorial-text h2 { margin-bottom: 16px; }
.editorial-text h3 { margin-bottom: 12px; }
.editorial-text p { color: var(--light-grey); margin-bottom: 16px; line-height: 1.8; }

.feature-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 28px;
}
.feature-list li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: var(--mid-grey);
  font-size: 0.95rem;
}
.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.service-link {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color var(--transition);
}
.service-link:hover { color: var(--gold-light); }

/* ─── USP GRID ─── */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.usp-card {
  text-align: center;
  padding: 40px 24px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all var(--transition);
}
.usp-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.usp-icon { font-size: 2.5rem; margin-bottom: 16px; }
.usp-card h4 { color: var(--white); margin-bottom: 8px; }
.usp-card p { color: var(--light-grey); font-size: 0.9rem; }

/* ─── TRUST GRID ─── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

/* ─── TESTIMONIALS GRID ─── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.testimonial-card {
  background: var(--cream);
  padding: 40px;
  border: 1px solid #eee;
  transition: all var(--transition);
}
.testimonials-grid .testimonial-card { min-width: auto; }
.testimonial-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.testimonial-card .testimonial-stars {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testimonial-card p {
  font-style: italic;
  color: var(--charcoal) !important;
  line-height: 1.7;
  margin-bottom: 20px;
}
.testimonial-author strong {
  display: block;
  color: var(--charcoal);
  font-weight: 600;
}
.testimonial-author span {
  color: var(--light-grey);
  font-size: 0.85rem;
}

/* ─── CONTACT PAGE ─── */
.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { color: var(--light-grey); margin-bottom: 32px; line-height: 1.8; }
.contact-methods { display: flex; flex-direction: column; gap: 24px; }
.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-method-icon {
  font-size: 1.5rem;
  color: var(--gold);
  flex-shrink: 0;
  width: 40px;
  text-align: center;
}
.contact-method h4 { margin-bottom: 4px; color: var(--charcoal); }
.contact-method a { color: var(--gold); font-weight: 500; }
.contact-method a:hover { color: var(--gold-light); }

/* Social icons on contact page (light background override) */
.contact-info .footer-social a {
  border: 1px solid var(--charcoal);
  color: var(--charcoal);
}
.contact-info .footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.contact-form-card {
  background: var(--cream);
  padding: 40px;
  border: 1px solid #eee;
}
.contact-form-card h3 { margin-bottom: 8px; }

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

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--light-grey);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}
.checkbox-label input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--gold);
  flex-shrink: 0;
}
.checkbox-label a { color: var(--gold); text-decoration: underline; }

/* ─── PRICING (3-col) ─── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}
.pricing-value {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--gold);
  margin: 16px 0;
  line-height: 1.2;
}
.pricing-value span {
  font-size: 1rem;
  color: var(--light-grey);
}

/* ─── LEGAL CONTENT ─── */
.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 12px;
  font-size: 1.5rem;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p {
  color: var(--mid-grey);
  margin-bottom: 16px;
  line-height: 1.8;
}
.legal-content ul {
  margin: 12px 0 20px 20px;
  list-style: disc;
}
.legal-content ul li {
  color: var(--mid-grey);
  margin-bottom: 8px;
  line-height: 1.7;
}

.legal-disclaimer {
  background: var(--cream);
  padding: 40px;
  border: 1px solid #eee;
}
.legal-item {
  margin-bottom: 24px;
}
.legal-item:last-child { margin-bottom: 0; }
.legal-item h4 { margin-bottom: 8px; color: var(--charcoal); }
.legal-item p { color: var(--mid-grey); line-height: 1.8; }

/* ─── FAQ CATEGORY ─── */
.faq-category { margin-bottom: 40px; }
.faq-category-title {
  color: var(--gold);
  font-size: 1.25rem;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gold);
}
.faq-toggle {
  font-size: 1.5rem;
  color: var(--gold);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-item.active .faq-toggle { transform: rotate(45deg); }

/* ─── GALLERY FULL (gallery page) ─── */
.gallery-full {
  grid-template-columns: repeat(3, 1fr);
}
.filter-bar {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

/* ─── PROCESS NUMBER (Our Process page) ─── */
.editorial-text .process-number {
  margin: 0 0 16px 0;
}

/* ─── RESPONSIVE ADDITIONS ─── */
@media (max-width: 1024px) {
  .editorial-row { grid-template-columns: 1fr; gap: 32px; }
  .editorial-row-reverse { direction: ltr; }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero-trust { flex-direction: column; gap: 8px; }
  .form-row { grid-template-columns: 1fr; }
  .usp-grid { grid-template-columns: 1fr; }
  .gallery-full { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .gallery-full { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
}

/* ─── PRICING CARDS ─── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.pricing-card {
  background: var(--charcoal);
  border: 1px solid var(--dark-grey);
  border-radius: 12px;
  padding: 40px 32px;
  text-align: center;
  position: relative;
  transition: transform var(--transition), border-color var(--transition);
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}

.pricing-card-featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, var(--dark-grey) 0%, var(--charcoal) 100%);
  transform: scale(1.05);
}

.pricing-card-featured:hover {
  transform: scale(1.05) translateY(-4px);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 20px;
  border-radius: 20px;
}

.pricing-tier {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 24px;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
}

.pricing-features li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: var(--off-white);
  font-size: 0.95rem;
  padding-left: 24px;
  position: relative;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.pricing-features li:last-child {
  border-bottom: none;
}

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
  .pricing-card-featured {
    transform: scale(1);
    order: -1;
  }
  .pricing-card-featured:hover {
    transform: translateY(-4px);
  }
}
