/* ======================================================
   LUXIA HARMONY HAVAN — WORDPRESS THEME CSS
   ====================================================== */

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

:root {
  --purple-deep: #1a0a2e;
  --purple-dark: #2d1052;
  --purple-mid: #4a1a7a;
  --purple-accent: #6b2fa0;
  --purple-light: #8b5fbf;
  --gold: #d4a843;
  --gold-light: #f0d080;
  --gold-dark: #b8922a;
  --cream: #faf5eb;
  --white: #ffffff;
  --text-light: #e8ddf5;
  --text-dark: #2a1a3a;
}

html { scroll-behavior: smooth; }

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

img { max-width: 100%; height: auto; }
a { transition: all 0.3s; }

/* ======================== UTILITY ======================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section-tag {
  font-family: 'Great Vibes', cursive;
  color: var(--gold);
  font-size: 1.35rem;
  display: block;
  margin-bottom: 6px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: var(--purple-dark);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-title.light { color: var(--white); }

.gold-line {
  width: 80px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin-bottom: 24px;
}
.gold-line.center { margin-left: auto; margin-right: auto; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--purple-deep);
  padding: 16px 36px; border-radius: 40px;
  font-weight: 700; font-size: 0.95rem;
  text-decoration: none; display: inline-block;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  border: none; cursor: pointer;
  font-family: 'Lato', sans-serif;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 168, 67, 0.4);
  color: var(--purple-deep);
}

.btn-outline {
  border: 2px solid var(--gold);
  color: var(--gold);
  padding: 14px 36px; border-radius: 40px;
  font-weight: 700; font-size: 0.95rem;
  text-decoration: none; display: inline-block;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  background: transparent;
}
.btn-outline:hover { background: var(--gold); color: var(--purple-deep); }

/* ======================== SPARKLE PARTICLES ======================== */
.sparkle-canvas {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  overflow: hidden;
}
.sparkle {
  position: absolute;
  width: 4px; height: 4px;
  background: var(--gold-light);
  border-radius: 50%;
  animation: sparkleFloat 4s ease-in-out infinite;
  opacity: 0;
  box-shadow: 0 0 6px var(--gold-light);
}
@keyframes sparkleFloat {
  0%, 100% { opacity: 0; transform: translateY(0) scale(0.5); }
  50% { opacity: 1; transform: translateY(-40px) scale(1); }
}

/* ======================== HEADER / NAV ======================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(26, 10, 46, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212, 168, 67, 0.25);
  transition: all 0.35s;
}
.site-header.scrolled { background: rgba(26, 10, 46, 0.98); }

.site-header nav {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto; padding: 14px 24px;
}

.site-logo { display: flex; align-items: center; text-decoration: none; }
.site-logo img { height: 48px; width: auto; object-fit: contain; }

/* WordPress nav menu overrides */
.primary-menu { display: flex; gap: 32px; list-style: none; margin: 0; padding: 0; }
.primary-menu li { list-style: none; }
.primary-menu a {
  color: var(--text-light); text-decoration: none;
  font-size: 0.92rem; font-weight: 400;
  letter-spacing: 0.5px;
  transition: color 0.3s;
  position: relative;
}
.primary-menu a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}
.primary-menu a:hover { color: var(--gold); }
.primary-menu a:hover::after { width: 100%; }

.primary-menu .menu-cta a {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--purple-deep) !important;
  padding: 10px 24px; border-radius: 30px;
  font-weight: 700 !important; font-size: 0.88rem !important;
}
.primary-menu .menu-cta a::after { display: none !important; }
.primary-menu .menu-cta a:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(212, 168, 67, 0.4);
}

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

/* ======================== HERO ======================== */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--purple-deep) 0%, var(--purple-dark) 40%, var(--purple-mid) 100%);
  display: flex; align-items: center;
  overflow: hidden;
  padding-top: 80px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(107, 47, 160, 0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(212, 168, 67, 0.08) 0%, transparent 50%);
}

.hero-content {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  padding: 60px 0;
}

.hero-tag {
  font-family: 'Great Vibes', cursive;
  color: var(--gold-light);
  font-size: 1.5rem;
  margin-bottom: 8px;
  opacity: 0; animation: fadeUp 0.8s 0.3s forwards;
}
.hero-heading {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
  opacity: 0; animation: fadeUp 0.8s 0.5s forwards;
}
.hero-heading em {
  font-style: normal;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  color: var(--text-light);
  font-size: 1.1rem; line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
  opacity: 0; animation: fadeUp 0.8s 0.7s forwards;
}
.hero-buttons {
  display: flex; gap: 16px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.8s 0.9s forwards;
}

.hero-right {
  position: relative;
  display: flex; justify-content: center; align-items: center;
  opacity: 0; animation: fadeUp 0.8s 0.6s forwards;
}
.hero-image-frame {
  position: relative;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold));
  padding: 5px;
  box-shadow: 0 0 60px rgba(212, 168, 67, 0.2), 0 0 120px rgba(107, 47, 160, 0.15);
}
.hero-image-inner {
  width: 100%; height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-mid), var(--purple-accent));
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  position: relative;
}
.hero-image-inner .hero-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  position: relative; z-index: 2;
}
.hero-lotus {
  font-size: 6rem;
  opacity: 0.15;
  position: absolute;
}

.hero-float-card {
  position: absolute;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 168, 67, 0.3);
  border-radius: 16px;
  padding: 16px 20px;
  color: var(--white);
  font-size: 0.88rem;
  display: flex; align-items: center; gap: 10px;
  animation: floatBob 3s ease-in-out infinite;
}
.hero-float-card.card-1 { bottom: 20px; left: -40px; animation-delay: 0s; }
.hero-float-card.card-2 { top: 20px; right: -30px; animation-delay: 1.5s; }
.float-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes floatBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ======================== ABOUT ======================== */
.about {
  padding: 100px 0;
  background: var(--cream);
  position: relative;
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.about-image-stack {
  position: relative;
  height: 500px;
}
.about-img-main {
  width: 340px; height: 400px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--purple-mid), var(--purple-accent));
  position: relative;
  box-shadow: 0 20px 60px rgba(45, 16, 82, 0.2);
  overflow: hidden;
}
.about-img-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.about-img-small {
  position: absolute; bottom: 0; right: 0;
  width: 220px; height: 220px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  overflow: hidden;
  border: 5px solid var(--cream);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}
.about-img-small img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.about-stats {
  position: absolute; top: 20px; right: 60px;
  background: var(--white);
  border-radius: 16px;
  padding: 20px 28px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  text-align: center;
  border: 1px solid rgba(212, 168, 67, 0.2);
}
.about-stats-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem; font-weight: 700;
  color: var(--purple-mid);
  line-height: 1;
}
.about-stats-label {
  font-size: 0.8rem; color: #888;
  margin-top: 4px;
}
.about-text p {
  font-size: 1.05rem; line-height: 1.8;
  color: #555; margin-bottom: 20px;
}
.about-features {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-top: 28px;
}
.about-feature {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.95rem; font-weight: 600;
  color: var(--purple-dark);
}
.about-feature-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(74, 26, 122, 0.1), rgba(74, 26, 122, 0.05));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}

/* ======================== VALUES ======================== */
.values {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--purple-deep), var(--purple-dark));
  position: relative;
  overflow: hidden;
}
.values::before {
  content: '';
  position: absolute; top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.06), transparent 70%);
  border-radius: 50%;
}
.values-header { text-align: center; margin-bottom: 60px; position: relative; z-index: 2; }
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 30px; position: relative; z-index: 2;
}
.value-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 168, 67, 0.15);
  border-radius: 24px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.value-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 168, 67, 0.35);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.value-icon {
  width: 72px; height: 72px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 8px 25px rgba(212, 168, 67, 0.25);
}
.value-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.value-card p {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem; line-height: 1.7;
}

/* ======================== SERVICES ======================== */
.services {
  padding: 100px 0;
  background: var(--white);
  position: relative;
}
.services-header { text-align: center; margin-bottom: 60px; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  position: relative;
  padding: 36px 28px;
  border-radius: 20px;
  border: 1px solid rgba(74, 26, 122, 0.08);
  background: var(--white);
  transition: all 0.4s;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--purple-mid), var(--gold));
  opacity: 0; transition: opacity 0.4s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(45, 16, 82, 0.1);
  border-color: rgba(212, 168, 67, 0.3);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(74, 26, 122, 0.08), rgba(74, 26, 122, 0.03));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-weight: 700;
  color: var(--purple-dark);
  margin-bottom: 10px;
}
.service-card p {
  color: #666; font-size: 0.92rem; line-height: 1.7;
}

/* ======================== CTA BANNER ======================== */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--purple-mid), var(--purple-accent));
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(212, 168, 67, 0.1), transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(255,255,255,0.03), transparent 50%);
}
.cta-banner .container { position: relative; z-index: 2; }
.cta-banner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700; color: var(--white);
  margin-bottom: 12px;
}
.cta-banner p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem; margin-bottom: 32px;
  max-width: 560px; margin-left: auto; margin-right: auto;
}

/* ======================== TESTIMONIALS ======================== */
.testimonials {
  padding: 100px 0;
  background: var(--cream);
}
.testimonials-header { text-align: center; margin-bottom: 60px; }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  border: 1px solid rgba(74, 26, 122, 0.06);
  transition: all 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.testimonial-stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 16px;
}
.testimonial-card blockquote {
  font-size: 0.95rem; line-height: 1.7;
  color: #555; font-style: italic;
  margin-bottom: 20px;
}
.testimonial-author {
  display: flex; align-items: center; gap: 12px;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-light), var(--purple-mid));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: 1rem;
}
.testimonial-avatar-img {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  box-shadow: 0 2px 10px rgba(212, 168, 67, 0.2);
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 0.92rem; color: var(--purple-dark); }
.testimonial-role { font-size: 0.8rem; color: #999; }

/* ======================== FAQ ======================== */
.faq {
  padding: 100px 0;
  background: var(--white);
}
.faq-layout {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 60px; align-items: start;
}
.faq-item {
  border-bottom: 1px solid rgba(74, 26, 122, 0.08);
  padding: 20px 0;
}
.faq-question {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-weight: 700;
  color: var(--purple-dark);
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  transition: color 0.3s;
  background: none; border: none; width: 100%;
  text-align: left; padding: 0;
}
.faq-question:hover { color: var(--gold-dark); }
.faq-chevron {
  font-size: 1.2rem; color: var(--gold);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  font-size: 0.95rem; line-height: 1.7;
  color: #666;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding-top: 14px;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }

/* ======================== CONTACT ======================== */
.contact {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--purple-deep), var(--purple-dark));
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute; bottom: -30%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.06), transparent 70%);
  border-radius: 50%;
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; position: relative; z-index: 2;
}
.contact-info h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem; font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.contact-info > p {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem; line-height: 1.7;
  margin-bottom: 36px;
}
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-detail { display: flex; align-items: center; gap: 16px; }
.contact-detail-icon {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(212, 168, 67, 0.12);
  border: 1px solid rgba(212, 168, 67, 0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.contact-detail-text { color: var(--white); }
.contact-detail-text small { display: block; color: rgba(255,255,255,0.5); font-size: 0.8rem; margin-bottom: 2px; }
.contact-detail-text a { color: var(--gold-light); text-decoration: none; }
.contact-detail-text a:hover { text-decoration: underline; }

.contact-form-wrapper {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 168, 67, 0.15);
  border-radius: 24px;
  padding: 40px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 0.85rem; font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 14px 18px;
  color: var(--white);
  font-size: 0.95rem;
  font-family: 'Lato', sans-serif;
  transition: border-color 0.3s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group select option { background: var(--purple-dark); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* WordPress Contact Form 7 overrides */
.wpcf7 .wpcf7-form-control-wrap { display: block; }
.wpcf7 input.wpcf7-form-control,
.wpcf7 textarea.wpcf7-form-control,
.wpcf7 select.wpcf7-form-control {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 14px 18px;
  color: var(--white);
  font-size: 0.95rem;
  font-family: 'Lato', sans-serif;
}
.wpcf7 input.wpcf7-submit {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--purple-deep);
  padding: 16px 36px;
  border-radius: 40px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  width: 100%;
}

/* ======================== FOOTER ======================== */
.site-footer {
  background: #0e0618;
  padding: 60px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand img {
  height: 60px; width: auto;
  margin-bottom: 16px;
}
.footer-brand p {
  color: rgba(255,255,255,0.45);
  font-size: 0.9rem; line-height: 1.7;
  margin-bottom: 20px;
}
.footer-socials { display: flex; gap: 12px; }
.footer-social {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: all 0.3s;
  font-size: 0.9rem;
}
.footer-social:hover {
  background: var(--gold); color: var(--purple-deep);
  border-color: var(--gold);
}
.footer-col h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 700;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: rgba(255,255,255,0.45);
  text-decoration: none; font-size: 0.9rem;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--gold-light); }

/* WordPress footer menu overrides */
.footer-col .menu { list-style: none; margin: 0; padding: 0; }

.footer-bottom {
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p {
  color: rgba(255,255,255,0.3);
  font-size: 0.82rem;
}
.footer-bottom a { color: var(--gold); text-decoration: none; }

/* ======================== SCROLL ANIMATIONS ======================== */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ======================== WORDPRESS DEFAULTS ======================== */
.wp-block-image img { border-radius: 12px; }
.aligncenter { text-align: center; }
.alignleft { float: left; margin-right: 20px; }
.alignright { float: right; margin-left: 20px; }
.screen-reader-text {
  clip: rect(1px,1px,1px,1px);
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
}

/* ======================== RESPONSIVE ======================== */
@media (max-width: 992px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-right { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image-stack { height: 400px; margin-bottom: 20px; }
  .values-grid, .services-grid, .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .faq-layout { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .primary-menu { display: none; }
  .mobile-toggle { display: flex; }
  .primary-menu.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--purple-deep);
    padding: 24px;
    border-top: 1px solid rgba(212, 168, 67, 0.15);
    gap: 16px;
  }
  .values-grid, .services-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .about-features { grid-template-columns: 1fr; }
}
