/* ================================================
   SKIN DEEP TAMPA — MAIN STYLESHEET
   Luxury Organic Spa Aesthetic
   ================================================ */

/* ---- DESIGN TOKENS ---- */
:root {
  --cream: #F7F3EE;
  --warm-white: #FDFCFA;
  --sand: #E8E0D5;
  --taupe: #C4B5A4;
  --warm-gray: #8A7E73;
  --espresso: #3D3329;
  --deep-brown: #2A231C;
  --gold: #B8956A;
  --gold-light: #D4B896;
  --sage: #8B9A7E;
  --sage-light: #C5CEBD;
  --blush: #D4A9A0;
  --blush-light: #E8CCC6;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', 'Helvetica Neue', sans-serif;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  color: var(--espresso);
  background: var(--warm-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: inherit; }

/* ---- SELECTION ---- */
::selection {
  background: var(--gold-light);
  color: var(--deep-brown);
}

/* ================================================
   NAVIGATION
   ================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.75rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.5s var(--ease-out);
}

.nav.scrolled {
  background: rgba(253, 252, 250, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 1rem 4rem;
  box-shadow: 0 1px 0 rgba(61, 51, 41, 0.06);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--espresso);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.nav-logo:hover { opacity: 0.7; }

.nav-logo span {
  font-weight: 600;
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--espresso);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease-out);
}

.nav-links a:hover::after { width: 100%; }

.nav-cta {
  padding: 0.7rem 1.75rem !important;
  border: 1px solid var(--espresso) !important;
  transition: all 0.4s ease !important;
}

.nav-cta:hover {
  background: var(--espresso) !important;
  color: var(--warm-white) !important;
}

.nav-cta::after { display: none !important; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  z-index: 1100;
}

.nav-toggle span {
  width: 26px;
  height: 1.5px;
  background: var(--espresso);
  transition: all 0.3s ease;
  display: block;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--warm-white);
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-links {
  list-style: none;
  text-align: center;
}

.mobile-menu-links li {
  margin-bottom: 2rem;
}

.mobile-menu-links a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--espresso);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.mobile-menu-links a:hover { color: var(--gold); }

.mobile-cta {
  display: inline-block;
  padding: 1rem 2.5rem;
  border: 1px solid var(--espresso);
  font-family: var(--font-body) !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 1rem;
}

/* ================================================
   HERO
   ================================================ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 6rem 6rem;
  position: relative;
  z-index: 2;
}

.hero-badge {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  font-weight: 400;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.3s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4.5vw, 4rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--deep-brown);
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s 0.5s forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-desc {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--warm-gray);
  max-width: 440px;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.7s forwards;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.9s forwards;
}

.hero-image {
  position: relative;
  overflow: hidden;
  background: var(--sand);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--sand) 0%, var(--taupe) 35%, var(--blush) 65%, var(--sage-light) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  opacity: 0;
  animation: fadeIn 1.2s 0.3s forwards;
}

.hero-line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 120px;
  background: linear-gradient(to bottom, var(--gold-light), transparent);
  z-index: 3;
  opacity: 0;
  animation: fadeIn 1s 1.2s forwards;
}

/* ================================================
   BUTTONS
   ================================================ */
.btn-primary {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--espresso);
  color: var(--warm-white);
  font-family: var(--font-body);
  font-size: 0.73rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--espresso);
  transition: all 0.4s var(--ease-out);
  cursor: pointer;
}

.btn-primary:hover {
  background: transparent;
  color: var(--espresso);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-gray);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s ease;
}

.btn-secondary:hover { color: var(--espresso); }

.btn-secondary svg {
  width: 32px;
  height: 32px;
  stroke: var(--gold);
  transition: transform 0.3s ease;
}

.btn-secondary:hover svg { transform: translateX(4px); }

.btn-white {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--warm-white);
  color: var(--espresso);
  font-family: var(--font-body);
  font-size: 0.73rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--warm-white);
  transition: all 0.4s var(--ease-out);
}

.btn-white:hover {
  background: transparent;
  color: var(--warm-white);
}

.btn-white-outline {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: transparent;
  color: var(--warm-white);
  font-family: var(--font-body);
  font-size: 0.73rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(253, 252, 250, 0.5);
  transition: all 0.4s var(--ease-out);
}

.btn-white-outline:hover {
  background: var(--warm-white);
  color: var(--espresso);
  border-color: var(--warm-white);
}

.btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-gray);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s ease;
}

.btn-instagram:hover { color: var(--gold); }

/* ================================================
   TRUST BAR
   ================================================ */
.trust-bar {
  background: var(--cream);
  padding: 2.5rem 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  border-top: 1px solid rgba(196, 181, 164, 0.25);
  border-bottom: 1px solid rgba(196, 181, 164, 0.25);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-gray);
  font-weight: 400;
  white-space: nowrap;
}

.trust-icon {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  stroke-width: 1.5;
  fill: none;
  flex-shrink: 0;
}

/* ================================================
   SECTIONS — SHARED
   ================================================ */
.section {
  padding: 7rem 4rem;
}

.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--deep-brown);
  margin-bottom: 1.5rem;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-subtitle {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--warm-gray);
  max-width: 560px;
}

/* ================================================
   SERVICES
   ================================================ */
.services { background: var(--warm-white); }

.services-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 5rem;
}

.services-header .section-subtitle { margin: 0 auto; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  position: relative;
  text-decoration: none;
  color: inherit;
  display: block;
}

.service-card-image {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.service-card:hover .service-card-image img,
.service-card:hover .placeholder {
  transform: scale(1.05);
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(42, 35, 28, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.5s var(--ease-out);
}

.service-card:hover .service-card-overlay {
  background: rgba(42, 35, 28, 0.25);
}

.service-card-overlay-text {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-white);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s var(--ease-out);
}

.service-card:hover .service-card-overlay-text {
  opacity: 1;
  transform: translateY(0);
}

.service-card-content { padding: 1.75rem 0.25rem; }

.service-card-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--deep-brown);
  margin-bottom: 0.75rem;
}

.service-card-desc {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--warm-gray);
  margin-bottom: 1.25rem;
}

.service-card-link {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}

.service-card:hover .service-card-link { gap: 0.85rem; }

/* Placeholder gradients for each service */
.service-facial .placeholder {
  background: linear-gradient(160deg, var(--sage-light), var(--sage), #6B7A5E);
}

.service-microneedling .placeholder {
  background: linear-gradient(160deg, var(--blush), #C4908A, #A67872);
}

.service-peels .placeholder {
  background: linear-gradient(160deg, var(--gold-light), var(--gold), #9A7A56);
}

/* ================================================
   ABOUT
   ================================================ */
.about {
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
}

.about-image {
  position: relative;
  min-height: 650px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 6rem;
}

.about-text {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--warm-gray);
  margin-bottom: 1.5rem;
}

.about-cta {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.about-signature {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-style: italic;
  color: var(--gold);
  margin-top: 1.5rem;
}

/* ================================================
   EXPERIENCE / PROCESS
   ================================================ */
.experience {
  background: var(--deep-brown);
  color: var(--cream);
}

.experience .section-label { color: var(--gold-light); }
.experience .section-title { color: var(--cream); }
.experience .section-subtitle { color: var(--taupe); }

.experience-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 5rem;
}

.experience-header .section-subtitle { margin: 0 auto; }

.experience-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.35;
  margin-bottom: 1.5rem;
  line-height: 1;
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 1rem;
}

.step-desc {
  font-size: 0.85rem;
  line-height: 1.75;
  color: var(--taupe);
}

.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 1.6rem;
  right: -1.5rem;
  width: 3rem;
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  opacity: 0.25;
}

/* ================================================
   TESTIMONIALS
   ================================================ */
.testimonials {
  background: var(--warm-white);
  text-align: center;
}

.testimonials-header {
  max-width: 640px;
  margin: 0 auto 4rem;
}

.testimonials-header .section-subtitle { margin: 0 auto; }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--cream);
  padding: 2.5rem;
  text-align: left;
  position: relative;
  border: 1px solid rgba(196, 181, 164, 0.15);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(61, 51, 41, 0.08);
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 4.5rem;
  color: var(--gold-light);
  position: absolute;
  top: 0.75rem;
  left: 1.5rem;
  line-height: 1;
  opacity: 0.4;
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1.25rem;
  color: var(--gold);
}

.testimonial-stars svg {
  width: 14px;
  height: 14px;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--warm-gray);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  font-size: 0.73rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--espresso);
  font-weight: 500;
}

.testimonial-source {
  font-size: 0.68rem;
  color: var(--taupe);
  margin-top: 0.3rem;
}

/* ================================================
   CTA BANNER
   ================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-light) 40%, var(--blush) 80%, var(--blush-light) 100%);
  padding: 7rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-texture {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  opacity: 0.5;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-banner .section-title {
  color: var(--warm-white);
  max-width: 500px;
  margin: 0 auto 1.25rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.cta-banner .section-subtitle {
  color: rgba(253, 252, 250, 0.88);
  margin: 0 auto 2.5rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.cta-actions {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: var(--deep-brown);
  color: var(--taupe);
  padding: 5rem 4rem 3rem;
}

.footer .nav-logo {
  color: var(--cream);
  display: inline-block;
  margin-bottom: 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto 4rem;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--warm-gray);
  max-width: 320px;
  margin-bottom: 1.5rem;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.footer-link {
  display: block;
  font-size: 0.85rem;
  color: var(--warm-gray);
  text-decoration: none;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.footer-link:hover { color: var(--gold-light); }

.footer-socials {
  display: flex;
  gap: 1.25rem;
}

.footer-socials a {
  color: var(--warm-gray);
  transition: color 0.3s ease;
}

.footer-socials a:hover { color: var(--gold-light); }

.footer-socials svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.service-areas {
  max-width: 900px;
  margin: 3rem auto 2.5rem;
  padding: 2.5rem 2rem;
  border-top: 1px solid rgba(196, 181, 164, 0.12);
  border-bottom: 1px solid rgba(196, 181, 164, 0.12);
}

.footer-bottom {
  border-top: 1px solid rgba(196, 181, 164, 0.12);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--warm-gray);
}

/* ================================================
   PLACEHOLDER IMAGES (remove once real images added)
   ================================================ */
.placeholder,
.hero-image-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  height: 100%;
  transition: transform 0.8s var(--ease-out);
}

.img-label {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: rgba(253, 252, 250, 0.7);
  font-style: italic;
}

.img-note {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(253, 252, 250, 0.4);
}

.about-image .placeholder {
  background: linear-gradient(135deg, var(--taupe) 0%, var(--blush) 50%, var(--sage-light) 100%);
}

/* ================================================
   SERVICE PAGE — SHARED LAYOUT
   ================================================ */
.service-hero {
  min-height: 60vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  margin-top: 0;
}

.service-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 6rem 5rem;
}

.service-hero-image {
  position: relative;
  overflow: hidden;
  background: var(--sand);
}

.service-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 5rem 4rem;
}

.service-body h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--deep-brown);
  margin: 3rem 0 1.25rem;
}

.service-body h2:first-child { margin-top: 0; }

.service-body p {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--warm-gray);
  margin-bottom: 1.25rem;
}

.service-body ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.service-body ul li {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--warm-gray);
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
}

.service-body ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.65rem;
  top: 0.35rem;
}

/* FAQ Accordion */
.faq-item {
  border-bottom: 1px solid var(--sand);
  padding: 1.5rem 0;
}

.faq-question {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--espresso);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 0;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-question.open::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.4s var(--ease-out);
  padding-top: 0;
}

.faq-answer.open {
  max-height: 300px;
  padding-top: 1rem;
}

.faq-answer p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--warm-gray);
}

/* ================================================
   CONTACT PAGE
   ================================================ */
.contact-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  margin-top: 0;
  background: var(--cream);
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 8rem 3rem 5rem;
  max-width: 700px;
  width: 100%;
}

.contact-detail {
  margin-bottom: 2.5rem;
}

.contact-detail-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.contact-detail-value {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--espresso);
}

.contact-detail-value a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-detail-value a:hover { color: var(--gold); }

.contact-form-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 6rem 5rem;
  background: var(--warm-white);
}

.contact-form { max-width: 450px; }

.form-group { margin-bottom: 1.75rem; }

.form-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.85rem 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: var(--espresso);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--sand);
  outline: none;
  transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--gold);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

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

@keyframes fadeIn {
  to { opacity: 1; }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
  .nav { padding: 1.25rem 2.5rem; }
  .nav.scrolled { padding: 1rem 2.5rem; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding: 8rem 3.5rem 4rem; }
  .hero-image { min-height: 450px; }
  .hero-line { display: none; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }

  .about { grid-template-columns: 1fr; }
  .about-image { min-height: 450px; }
  .about-content { padding: 4rem 3.5rem; }

  .experience-steps { grid-template-columns: repeat(2, 1fr); }
  .step::after { display: none; }

  .testimonial-grid { grid-template-columns: 1fr; max-width: 520px; }

  .footer-grid { grid-template-columns: 1fr 1fr; }

  .section { padding: 5rem 2.5rem; }

  .service-hero { grid-template-columns: 1fr; }
  .service-hero-content { padding: 8rem 3.5rem 4rem; }
  .service-hero-image { min-height: 400px; }

  .contact-info { padding: 6rem 2.5rem 4rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav { padding: 1.25rem 1.5rem; }
  .nav.scrolled { padding: 1rem 1.5rem; }

  .hero-content { padding: 7rem 1.75rem 3rem; }
  .hero-title { font-size: 2.4rem; }
  .hero-image { min-height: 350px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }

  .services-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }

  .about-content { padding: 3.5rem 1.75rem; }
  .about-image { min-height: 380px; }

  .experience-steps { grid-template-columns: 1fr 1fr; max-width: 500px; margin: 0 auto; }

  .trust-bar { flex-wrap: wrap; gap: 1.5rem 2.5rem; padding: 2rem 1.5rem; justify-content: center; }

  .section { padding: 4rem 1.75rem; }
  .cta-banner { padding: 5rem 1.75rem; }
  .cta-actions { flex-direction: column; }

  .footer { padding: 4rem 1.75rem 2.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-areas { padding: 2rem 1.25rem; margin: 2.5rem auto 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }

  .service-hero-content { padding: 7rem 1.75rem 3rem; }
  .contact-info { padding: 5rem 1.75rem 3rem; }
  .service-body { padding: 3.5rem 1.75rem; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .section-title { font-size: 1.8rem; }
  .experience-steps { grid-template-columns: 1fr; max-width: 300px; }
  .trust-bar { gap: 1.25rem; }
  .trust-item { font-size: 0.65rem; }
}
