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

:root {
  --gold: #c9a227;
  --gold-light: #f5d26d;
  --gold-dark: #8b6914;
  --purple: #2d1b69;
  --purple-mid: #4a2d8b;
  --purple-light: #6a3de8;
  --dark: #07051a;
  --dark2: #0e0b2e;
  --dark3: #150f3a;
  --cream: #f0e6d3;
  --red-dark: #6b1515;
  --text: #e8dfc8;
  --text-muted: #a89878;
  --radius: 12px;
  --shadow: 0 8px 32px rgba(0,0,0,0.5);
  --transition: 0.3s ease;
}

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

body {
  font-family: 'Lato', sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
}

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

img { max-width: 100%; display: block; }

/* ===== PARTICLES ===== */
#particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
#particles::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 10% 20%, rgba(201,162,39,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 30% 70%, rgba(201,162,39,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 50% 40%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 70% 15%, rgba(201,162,39,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 85% 60%, rgba(255,255,255,0.2) 0%, transparent 100%),
    radial-gradient(1px 1px at 20% 90%, rgba(201,162,39,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 60% 85%, rgba(201,162,39,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 92% 35%, rgba(255,255,255,0.25) 0%, transparent 100%);
  background-size: 400px 400px;
  animation: twinkle 6s ease-in-out infinite alternate;
}
@keyframes twinkle {
  0%   { opacity: 0.4; transform: scale(1); }
  100% { opacity: 1;   transform: scale(1.05); }
}

/* ===== HEADER ===== */
#main-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 2rem;
  background: rgba(7,5,26,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,162,39,0.2);
  transition: background var(--transition), padding var(--transition);
}
#main-header.scrolled {
  background: rgba(7,5,26,0.97);
  padding: 0 2rem;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
}
.logo-link { display: flex; align-items: center; }
.site-logo { height: 88px; width: auto; }

#main-nav ul {
  display: flex;
  list-style: none;
  gap: 0.2rem;
}
#main-nav a {
  display: block;
  padding: 0.5rem 0.9rem;
  color: var(--text);
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 6px;
  transition: all var(--transition);
  position: relative;
}
#main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 2px;
  background: var(--gold);
  transition: left var(--transition), right var(--transition);
  border-radius: 2px;
}
#main-nav a:hover { color: var(--gold); }
#main-nav a:hover::after { left: 10%; right: 10%; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 1.3rem;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  cursor: pointer;
}

/* ===== LANGUAGE TOGGLE BUTTON ===== */
.lang-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-family: 'Cinzel', Georgia, serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.5rem 1.2rem;
  border-radius: 25px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.lang-btn:hover {
  background: var(--gold);
  color: var(--dark);
  box-shadow: 0 0 12px rgba(201,162,39,0.5);
}
.lang-btn .lang-flag {
  font-size: 1rem;
  line-height: 1;
}
.lang-btn .lang-active {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
/* Subtle glow when Kreyòl is active */
body.lang-ht .lang-btn {
  background: rgba(201,162,39,0.15);
  box-shadow: 0 0 8px rgba(201,162,39,0.3);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 10rem 2rem 4rem;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(106,61,232,0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(139,0,0,0.15) 0%, transparent 50%),
    url('https://images.unsplash.com/photo-1518241353330-0f7941c2d9b5?w=1600&q=80') center/cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(7,5,26,0.75) 0%,
    rgba(7,5,26,0.55) 40%,
    rgba(7,5,26,0.85) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}
.hero-eye {
  width: 120px;
  height: 80px;
  margin: 0 auto 1.5rem;
  animation: eyePulse 3s ease-in-out infinite;
  filter: drop-shadow(0 0 12px rgba(201,162,39,0.6));
}
.pupil-glow { animation: glowPulse 2s ease-in-out infinite; }
@keyframes eyePulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.06); }
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.7; }
  50%       { opacity: 1; }
}
.hero-subtitle {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.hero-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  text-shadow: 0 0 40px rgba(201,162,39,0.4), 0 2px 8px rgba(0,0,0,0.8);
  margin-bottom: 1.2rem;
}
.hero-desc {
  font-size: 1.1rem;
  color: var(--cream);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  opacity: 0.9;
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  opacity: 0.7;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: 'Cinzel', serif;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity var(--transition);
}
.btn:hover::before { opacity: 1; }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  color: var(--dark);
  box-shadow: 0 4px 20px rgba(201,162,39,0.4);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,162,39,0.6);
  color: var(--dark);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover {
  background: rgba(201,162,39,0.1);
  transform: translateY(-2px);
  color: var(--gold-light);
}
.btn-large { padding: 1rem 2.5rem; font-size: 0.9rem; }

/* ===== SECTIONS ===== */
.section {
  position: relative;
  z-index: 1;
  padding: 6rem 2rem;
}
.container { max-width: 1100px; margin: 0 auto; }

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-tag {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,162,39,0.08);
  border: 1px solid rgba(201,162,39,0.3);
  padding: 0.3rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.section-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--gold-light);
  text-shadow: 0 0 20px rgba(201,162,39,0.3);
  margin-bottom: 0.8rem;
}
.ornament {
  color: var(--gold);
  letter-spacing: 0.5em;
  font-size: 0.9rem;
  opacity: 0.6;
  margin-bottom: 0.8rem;
}
.section-sub { color: var(--text-muted); max-width: 560px; margin: 0 auto; }

/* ===== ABOUT ===== */
.about-section { background: linear-gradient(180deg, var(--dark) 0%, var(--dark2) 100%); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(201,162,39,0.2);
  aspect-ratio: 4/3;
  object-fit: cover;
}
.img-border-deco {
  position: absolute;
  inset: -12px;
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: var(--radius);
  pointer-events: none;
}
.img-border-deco::before, .img-border-deco::after {
  content: '✦';
  position: absolute;
  color: var(--gold);
  font-size: 1rem;
  opacity: 0.6;
}
.img-border-deco::before { top: -0.6rem; left: -0.6rem; }
.img-border-deco::after  { bottom: -0.6rem; right: -0.6rem; }

.img-credit {
  margin-top: 0.6rem;
  font-size: 0.7rem;
  color: var(--text-muted);
  opacity: 0.7;
  text-align: center;
}
.img-credit a { color: var(--gold); font-size: 0.7rem; }

.about-lead {
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 1rem;
}
.about-text p { color: var(--text-muted); margin-bottom: 0.8rem; }
.about-pillars {
  list-style: none;
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}
.about-pillars li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--cream);
  background: rgba(201,162,39,0.06);
  border: 1px solid rgba(201,162,39,0.15);
  border-radius: 8px;
  padding: 0.5rem 0.8rem;
}
.pillar-icon { font-size: 1.1rem; }

/* ===== SERVICES ===== */
.services-section {
  background: linear-gradient(180deg, var(--dark2) 0%, var(--dark3) 100%);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,162,39,0.15);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,162,39,0.05), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(201,162,39,0.4); box-shadow: 0 12px 40px rgba(0,0,0,0.4); }
.service-card:hover::before { opacity: 1; }
.service-icon-wrap { margin-bottom: 1rem; }
.service-svg { width: 60px; height: 60px; margin: 0 auto; }
.service-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  color: var(--gold-light);
  margin-bottom: 0.8rem;
}
.service-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }
.service-link {
  display: inline-block;
  margin-top: 1rem;
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}

/* ===== GALLERY STRIP ===== */
.gallery-strip {
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 200px;
  border-top: 1px solid rgba(201,162,39,0.1);
  border-bottom: 1px solid rgba(201,162,39,0.1);
}
.gallery-track {
  display: flex;
  gap: 0;
  height: 100%;
  animation: slideTrack 30s linear infinite;
  width: max-content;
}
.gallery-track img {
  height: 200px;
  width: 300px;
  object-fit: cover;
  opacity: 0.9;
  transition: opacity var(--transition), transform var(--transition);
  filter: saturate(1.6) contrast(1.15) brightness(1.05);
  flex-shrink: 0;
}
.gallery-track img:hover { opacity: 1; transform: scale(1.03); }

.veve-panel {
  height: 200px;
  width: 200px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at center, #1a0040 0%, #07051a 70%);
  border-left: 1px solid rgba(201,162,39,0.2);
  border-right: 1px solid rgba(201,162,39,0.2);
  transition: background var(--transition);
}
.veve-panel:hover {
  background: radial-gradient(ellipse at center, #2a0060 0%, #0e0b2e 70%);
}
.veve-panel svg {
  width: 200px;
  height: 200px;
  filter: drop-shadow(0 0 8px rgba(201,162,39,0.5));
  transition: filter var(--transition);
}
.veve-panel:hover svg {
  filter: drop-shadow(0 0 16px rgba(201,162,39,0.85));
}
@keyframes slideTrack {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== PRICING ===== */
.pricing-section { background: linear-gradient(180deg, var(--dark3) 0%, var(--dark) 100%); }
.pricing-tabs {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.tab-btn {
  background: transparent;
  border: 1px solid rgba(201,162,39,0.3);
  color: var(--text-muted);
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all var(--transition);
}
.tab-btn:hover { border-color: var(--gold); color: var(--gold); }
.tab-btn.active {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-color: var(--gold);
  color: var(--dark);
  box-shadow: 0 4px 16px rgba(201,162,39,0.35);
}
.pricing-panel { display: none; }
.pricing-panel.active { display: block; }
.pricing-cards {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.price-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,162,39,0.18);
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem;
  text-align: center;
  min-width: 260px;
  max-width: 320px;
  position: relative;
  transition: all 0.35s ease;
}
.price-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.5); border-color: rgba(201,162,39,0.4); }
.price-card.featured {
  border-color: var(--gold);
  background: linear-gradient(160deg, rgba(201,162,39,0.08), rgba(42,0,90,0.15));
  box-shadow: 0 0 40px rgba(201,162,39,0.15);
}
.price-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--dark);
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  padding: 0.2rem 1rem;
  border-radius: 50px;
  white-space: nowrap;
  font-weight: 700;
}
.price-icon { font-size: 2.5rem; margin-bottom: 0.8rem; }
.price-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 1rem;
}
.price-amount {
  font-family: 'Cinzel Decorative', serif;
  font-size: 2rem;
  color: var(--gold-light);
  text-shadow: 0 0 12px rgba(201,162,39,0.4);
  margin-bottom: 1.2rem;
}
.price-period { font-size: 1rem; }
.price-save {
  display: inline-block;
  font-size: 0.75rem;
  background: rgba(201,162,39,0.15);
  color: var(--gold);
  padding: 0.1rem 0.5rem;
  border-radius: 50px;
  margin-left: 0.3rem;
  vertical-align: middle;
}
.price-features {
  list-style: none;
  margin-bottom: 1.5rem;
  text-align: left;
}
.price-features li {
  padding: 0.4rem 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.price-features li::before { content: '✦'; color: var(--gold); font-size: 0.6rem; margin-top: 0.35rem; flex-shrink: 0; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: linear-gradient(180deg, var(--dark) 0%, var(--dark2) 100%); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.testimonial-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,162,39,0.15);
  border-radius: var(--radius);
  padding: 1.8rem;
  transition: all var(--transition);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 0.8rem; left: 1.2rem;
  font-size: 4rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.15;
  font-family: Georgia, serif;
}
.testimonial-card:hover { transform: translateY(-4px); border-color: rgba(201,162,39,0.35); }
.stars { color: var(--gold); font-size: 1rem; margin-bottom: 0.8rem; letter-spacing: 0.1em; }
.testimonial-text { font-size: 0.9rem; color: var(--text-muted); font-style: italic; line-height: 1.7; margin-bottom: 1.2rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.8rem; }
.author-avatar {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--gold-dark), var(--purple));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  color: var(--gold-light);
  flex-shrink: 0;
}
.testimonial-author strong { color: var(--cream); font-size: 0.9rem; }
.testimonial-author span { font-size: 0.78rem; color: var(--text-muted); }

/* ===== FORMS ===== */
.testimonial-form-wrap {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(201,162,39,0.15);
  border-radius: var(--radius);
  padding: 2.5rem;
  max-width: 720px;
  margin: 0 auto;
}
.testimonial-form-wrap h3 {
  font-family: 'Cinzel', serif;
  color: var(--gold-light);
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}
.testimonial-form-wrap p { color: var(--text-muted); margin-bottom: 1.5rem; font-size: 0.9rem; }

.register-section { background: linear-gradient(180deg, var(--dark2) 0%, var(--dark3) 100%); }
.register-form, .testimonial-form, #contactForm {
  max-width: 820px;
  margin: 0 auto;
}
.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.form-group label {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: var(--cream);
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  transition: border-color var(--transition), background var(--transition);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(201,162,39,0.05);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.1);
}
.form-group select option { background: var(--dark3); color: var(--cream); }
.form-group input[type="checkbox"] {
  width: auto; display: inline; margin-right: 0.5rem;
  accent-color: var(--gold);
}
.form-group label:has(input[type="checkbox"]) {
  flex-direction: row; align-items: flex-start;
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-muted);
  cursor: pointer;
}

/* Star rating */
.star-rating { display: flex; gap: 0.3rem; }
.star-rating span {
  font-size: 1.8rem;
  color: rgba(201,162,39,0.25);
  cursor: pointer;
  transition: color var(--transition), transform var(--transition);
}
.star-rating span:hover,
.star-rating span.active { color: var(--gold); transform: scale(1.15); }

.form-message {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.88rem;
  display: none;
}
.form-message.success { background: rgba(45,180,100,0.15); border: 1px solid rgba(45,180,100,0.4); color: #6dffaa; display: block; }
.form-message.error   { background: rgba(180,45,45,0.15);  border: 1px solid rgba(180,45,45,0.4);  color: #ff9999; display: block; }

/* ===== CONTACT ===== */
.contact-section { background: linear-gradient(180deg, var(--dark3) 0%, var(--dark) 100%); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}
.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1.2rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(201,162,39,0.1);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}
.contact-item:hover { border-color: rgba(201,162,39,0.3); }
.contact-icon { font-size: 1.5rem; flex-shrink: 0; }
.contact-item strong { font-family: 'Cinzel', serif; font-size: 0.85rem; color: var(--gold); display: block; margin-bottom: 0.2rem; }
.contact-item p { font-size: 0.82rem; color: var(--text-muted); }
.contact-item a { color: var(--cream); font-size: 0.9rem; }
.contact-form-wrap {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(201,162,39,0.15);
  border-radius: var(--radius);
  padding: 2rem;
}

/* ===== FOOTER ===== */
.site-footer {
  background: rgba(0,0,0,0.5);
  border-top: 1px solid rgba(201,162,39,0.15);
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}
.footer-inner { max-width: 900px; margin: 0 auto; }
.footer-logo { margin-bottom: 0.8rem; display: flex; justify-content: center; }
.footer-tagline {
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.footer-nav {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.footer-nav a {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--gold); }
.footer-copy { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; }
.footer-copy small { font-size: 0.72rem; opacity: 0.7; }
.footer-built-by {
  margin-top: 1rem;
  font-size: 0.72rem;
  color: var(--text-muted);
  opacity: 0.6;
  letter-spacing: 0.04em;
}
.footer-built-by a {
  color: var(--gold);
  font-weight: 600;
  transition: color var(--transition);
}
.footer-built-by a:hover { color: var(--gold-light); }

/* ===== BACK TO TOP ===== */
#backToTop {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 999;
  background: var(--gold);
  color: var(--dark);
  border: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(201,162,39,0.4);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
}
#backToTop.visible { opacity: 1; pointer-events: all; }
#backToTop:hover { background: var(--gold-light); transform: translateY(-3px); }

/* ===== LWA ROW ===== */
.lwa-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-bottom: 2.5rem;
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.lwa-label { color: var(--gold); font-weight: 600; }
.lwa-row span:not(.lwa-label) {
  color: var(--text-muted);
  padding: 0.2rem 0.6rem;
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: 50px;
}
.lwa-ref {
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  color: var(--gold);
  opacity: 0.75;
  margin-bottom: 0.6rem !important;
  font-style: italic;
}

/* ===== SPIN ANIMATION (hero veve) ===== */
@keyframes spinRing {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ===== SCROLL ANIMATION ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== iOS / Android BASE FIXES ===== */
/* Prevent iOS input zoom (must be ≥16px) */
input, select, textarea {
  font-size: 16px;
}
/* Remove iOS/Android tap highlight */
* { -webkit-tap-highlight-color: transparent; }
/* iOS Safari backdrop-filter prefix */
#main-header {
  -webkit-backdrop-filter: blur(12px);
}
/* Touch-friendly tap targets */
.btn, .tab-btn, .lang-btn, .nav-toggle, #backToTop, .service-link,
a, button, select, input[type="checkbox"] {
  touch-action: manipulation;
}
/* Gallery smooth touch scroll on iOS */
.gallery-strip {
  -webkit-overflow-scrolling: touch;
}
/* Smooth scroll on iOS */
html {
  -webkit-overflow-scrolling: touch;
}

/* ===== RESPONSIVE ===== */

/* --- Tablet (≤900px) --- */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap { order: -1; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .about-pillars { grid-template-columns: 1fr; }
  .pricing-cards { flex-wrap: wrap; justify-content: center; }
  .price-card { min-width: 280px; flex: 1 1 280px; }
}

/* --- Mobile (≤640px) --- */
@media (max-width: 640px) {
  /* Header — shrink for phones */
  #main-header { padding: 0 1rem; }
  .header-inner { height: 70px; }
  .site-logo { height: 56px; }

  /* Hamburger visible */
  .nav-toggle {
    display: block;
    min-width: 44px; min-height: 44px;
    font-size: 1.4rem;
  }

  /* Language button — shrink next to hamburger */
  .lang-btn {
    font-size: 0.72rem;
    padding: 0.35rem 0.7rem;
    gap: 0.3rem;
    border-width: 1.5px;
    min-height: 44px;
  }

  /* Nav dropdown */
  #main-nav {
    display: none;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: rgba(7,5,26,0.99);
    border-bottom: 1px solid rgba(201,162,39,0.25);
    padding: 0.5rem 1rem 1rem;
    z-index: 999;
  }
  #main-nav.open { display: block; }
  #main-nav ul { flex-direction: column; gap: 0; }
  #main-nav a {
    padding: 0.9rem 1rem;
    font-size: 0.88rem;
    border-bottom: 1px solid rgba(201,162,39,0.1);
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  /* Hero — fix 100vh iOS address bar & reduce padding */
  .hero {
    min-height: 100svh; /* small viewport height — Safari 15.4+ */
    min-height: 100vh;  /* fallback for older browsers */
    padding: 8rem 1.2rem 3rem;
  }
  .hero-title { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  .hero-desc { font-size: 0.95rem; }
  .hero-btns { flex-direction: column; align-items: center; gap: 0.75rem; }
  .hero-btns .btn { width: 100%; max-width: 320px; text-align: center; }
  .eye-anim svg { width: 100px !important; height: 100px !important; }

  /* Sections — reduce padding */
  .section { padding: 3.5rem 1.2rem; }
  .container { padding: 0; }

  /* Section headers */
  .section-title { font-size: clamp(1.35rem, 6vw, 1.8rem); }

  /* About */
  .about-grid { gap: 2rem; }
  .about-img { aspect-ratio: 3/4; }
  .mambo-svg { max-height: 380px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 1.2rem; }

  /* Gallery — hide scrollbar but keep swipe */
  .gallery-strip { padding: 1rem 0; }
  .gallery-track { gap: 0.75rem; padding: 0 1rem; }
  .gallery-track img { height: 160px; }
  .veve-panel { height: 160px !important; width: 160px !important; }

  /* Pricing */
  .pricing-tabs { gap: 0.4rem; flex-wrap: wrap; }
  .tab-btn {
    font-size: 0.72rem;
    padding: 0.5rem 0.8rem;
    min-height: 44px;
  }
  .pricing-cards { flex-direction: column; align-items: stretch; }
  .price-card { width: 100%; max-width: 100%; min-width: unset; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; gap: 1.2rem; }

  /* Forms — all rows go single column */
  .form-row {
    grid-template-columns: 1fr !important;
    display: flex !important;
    flex-direction: column;
    gap: 0;
  }
  .form-group { margin-bottom: 1rem; }
  select, input, textarea,
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px !important; /* critical — prevents iOS auto-zoom */
    min-height: 44px;
  }
  textarea { min-height: 100px; }

  /* Registration form city/state/zip row */
  .form-row .form-group:last-child { margin-bottom: 0; }

  /* Contact */
  .contact-grid { gap: 2rem; }
  .contact-item { gap: 0.75rem; }

  /* Footer */
  .footer-inner { padding: 2rem 1.2rem; text-align: center; }
  .footer-nav { gap: 0.5rem 1rem; justify-content: center; }
  .footer-logo svg { height: 50px !important; }

  /* Back to top — keep away from phone edge */
  #backToTop { bottom: 1.2rem; right: 1.2rem; }

  /* Lwa row — wrap tighter */
  .lwa-row { gap: 0.4rem 0.6rem; font-size: 0.6rem; margin-bottom: 1.5rem; }
}

/* --- Small phones (≤400px) --- */
@media (max-width: 400px) {
  /* Language button — show only flag + short label */
  .lang-btn { font-size: 0.65rem; padding: 0.3rem 0.6rem; }
  .hero-title { font-size: 1.5rem; }
  .section-title { font-size: 1.3rem; }
  .service-card { padding: 1.2rem; }
  .testimonial-card { padding: 1.2rem; }
}
