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

:root {
  --gold: #c9a86c;
  --gold-light: #e8d5b0;
  --gold-dark: #a8854a;
  --dark: #1a1a1a;
  --dark-2: #2d2d2d;
  --medium: #555;
  --light: #f9f7f4;
  --white: #ffffff;
  --border: #e8e0d5;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
  --radius: 12px;
  --radius-sm: 6px;
  --transition: 0.25s ease;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  font-size: 15px;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 { font-family: var(--font-serif); line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); font-weight: 300; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 400; }
h3 { font-size: 1.25rem; font-weight: 600; }

.container { max-width: 1380px; margin: 0 auto; padding: 0 24px; }
.section { padding: 90px 0; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px; border-radius: 40px;
  font-family: var(--font-sans); font-size: 0.875rem; font-weight: 500;
  letter-spacing: 0.04em; cursor: pointer; border: 2px solid transparent;
  transition: all var(--transition); white-space: nowrap;
}
.btn-primary {
  background: var(--gold); color: var(--white); border-color: var(--gold);
}
.btn-primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(201,168,108,0.4); }
.btn-outline {
  background: transparent; color: var(--white); border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover { background: rgba(255,255,255,0.15); }
.btn-lg { padding: 16px 38px; font-size: 0.95rem; }
.btn-full { width: 100%; justify-content: center; }

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; margin-bottom: 56px; }
.section-eyebrow {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
}
.section-title { margin-bottom: 14px; color: var(--dark); }
.section-sub { color: var(--medium); max-width: 520px; margin: 0 auto; }
.section-cta { text-align: center; margin-top: 48px; }

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: var(--dark); color: var(--gold-light);
  text-align: center; padding: 10px 16px;
  font-size: 0.82rem; letter-spacing: 0.02em;
}
.announcement-bar a { color: var(--gold); font-weight: 600; margin-left: 6px; }
.announcement-bar a:hover { text-decoration: underline; }

/* ===== HEADER / NAV ===== */
.header {
  position: sticky; top: 0; z-index: 1000;
  background-color: #ffffff; border-bottom: 2px solid var(--gold-light);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: box-shadow var(--transition);
}
.nav-container {
  display: grid; grid-template-columns: 1fr auto 1fr;
  grid-template-rows: auto auto;
  padding: 0 0 12px 0;
}
/* Rounded cream ribbon spanning the entire row 2 */
.nav-container::before {
  content: '';
  grid-column: 1 / -1; grid-row: 2;
  background-color: #faf3e8;
  border: 1px solid var(--gold-light);
  border-radius: 30px;
  margin-left: -24px; margin-right: -24px;
  padding: 10px 0;
}

/* Row 1 — white background (inherited from header) */
.logo { display: flex; flex-direction: row; align-items: center; gap: 10px; line-height: 1.1; grid-column: 2; grid-row: 1; justify-self: center; padding: 12px 0; }
.logo-img { height: 110px; width: auto; display: block; }
.logo-light { display: none; }
.logo-sub { display: none; }

/* Row 2 — sits on top of the ::before cream ribbon */
.nav {
  grid-column: 1 / 3; grid-row: 2;
  display: flex; align-items: center;
  padding: 0;
}
.nav-links { display: flex; gap: 6px; align-items: center; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: flex; align-items: center; gap: 5px;
  padding: 8px 14px; border-radius: var(--radius-sm);
  font-size: 0.875rem; font-weight: 500; color: var(--dark-2);
  transition: color var(--transition), background var(--transition);
}
.nav-links > li > a:hover { color: var(--gold); background: rgba(201,168,108,0.12); }
.nav-links > li > a .fa { font-size: 0.65rem; transition: transform var(--transition); }
.nav-links > li:hover > a .fa { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  display: none; position: absolute; top: 100%; left: 0;
  padding-top: 8px;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 24px; gap: 32px;
  grid-template-columns: repeat(3, 1fr); width: 680px; z-index: 100;
}
.has-dropdown { position: relative; }
.has-dropdown::after {
  content: ''; position: absolute; top: 100%; left: 0;
  width: 100%; height: 12px;
}
.has-dropdown:hover .dropdown,
.has-dropdown.dropdown-open .dropdown { display: grid; }
.dropdown-col h4 {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
}
.dropdown-col a {
  display: block; padding: 5px 0; font-size: 0.85rem; color: var(--medium);
  transition: color var(--transition); border-bottom: none;
}
.dropdown-col a:hover { color: var(--gold); }

.nav-actions { display: flex; align-items: center; gap: 14px; grid-column: 3; grid-row: 2; justify-self: end; align-self: center; padding: 6px 0; }
.nav-phone { font-size: 0.82rem; color: var(--medium); font-weight: 500; white-space: nowrap; }
.nav-phone:hover { color: var(--gold); }
.nav-phone .fa { color: var(--gold); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: all 0.3s; display: block; }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 55vh;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #1a1209 0%, #2d2010 40%, #3d2a14 70%, #1a1209 100%);
  overflow: hidden;
  text-align: center;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(201,168,108,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 80% 30%, rgba(201,168,108,0.08) 0%, transparent 70%);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a86c' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content { position: relative; z-index: 2; max-width: 780px; padding: 40px 24px; }
.hero-eyebrow {
  font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 20px;
}
.hero-title { color: var(--white); margin-bottom: 22px; }
.hero-title span { color: var(--gold); font-style: italic; }
.hero-subtitle { color: rgba(255,255,255,0.72); font-size: 1.05rem; max-width: 520px; margin: 0 auto 36px; }
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.4); font-size: 0.7rem; letter-spacing: 0.14em;
  text-transform: uppercase; animation: bounce 2s infinite;
}
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

/* ===== STATS BAR ===== */
.stats-bar { background: var(--dark); padding: 36px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; }
.stat-num {
  display: block; font-family: var(--font-serif); font-size: 2.2rem;
  color: var(--gold); font-weight: 400; line-height: 1;
}
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.55); letter-spacing: 0.06em; margin-top: 6px; display: block; }

/* ===== SERVICES ===== */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.services-grid--3 { grid-template-columns: repeat(3, 1fr); }
.about-specialty { font-family: var(--font-serif); font-size: 1.05rem; color: var(--gold); font-style: italic; margin-top: -10px; }
.service-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  height: 440px;
  border: none;
}
.service-card-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card-img { transform: scale(1.07); }
.service-card-body {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 22px 20px 20px;
  background: linear-gradient(to bottom, rgba(15,12,8,0.72) 0%, rgba(15,12,8,0.1) 45%, rgba(15,12,8,0.75) 100%);
  transition: background 0.4s ease;
}
.service-card:hover .service-card-body {
  background: linear-gradient(to bottom, rgba(15,12,8,0.82) 0%, rgba(15,12,8,0.3) 45%, rgba(15,12,8,0.92) 100%);
}
.service-icon { display: none; }
.service-card h3 {
  font-size: 1.75rem; font-weight: 800; color: var(--white);
  line-height: 1.25; margin-bottom: 0; align-self: flex-start;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.service-card p {
  color: rgba(255,255,255,0.85); font-size: 0.82rem; line-height: 1.55;
  margin-top: 8px;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.service-card:hover p { opacity: 1; transform: translateY(0); }
.service-link {
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold); color: var(--white); font-size: 1.1rem;
  opacity: 1; transform: none;
  transition: background var(--transition);
}
.service-card:hover .service-link { opacity: 1; transform: none; }
.service-link:hover { background: var(--gold-dark); }
.service-card-top {
  display: flex; flex-direction: column; gap: 8px;
}
.service-card-bottom {
  display: flex; justify-content: flex-end;
}

/* ===== CATEGORY NAV ===== */
.category-nav-wrap {
  position: sticky; top: 96px; z-index: 90;
  background: var(--white); border-bottom: 1px solid var(--border);
  border-top: 1px solid var(--border);
  padding: 14px 0; margin-bottom: 0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.category-nav {
  display: flex; gap: 8px; flex-wrap: wrap;
  justify-content: center;
}
.cat-btn {
  padding: 9px 20px; border-radius: 40px;
  border: 1.5px solid var(--border); background: var(--white);
  font-size: 0.8rem; font-weight: 500; color: var(--medium);
  cursor: pointer; transition: all var(--transition); white-space: nowrap;
  text-decoration: none; flex-shrink: 0;
}
.cat-btn:hover { border-color: var(--gold); color: var(--gold); }
.cat-btn.active { background: var(--gold); border-color: var(--gold); color: var(--white); }

/* ===== TREATMENT SECTIONS ===== */
.treatment-sections { padding-top: 48px; }
.treatment-section {
  margin-bottom: 72px; scroll-margin-top: 180px;
}
.treatment-section:last-child { margin-bottom: 0; }
.treatment-section-title {
  font-family: var(--font-serif); font-size: 1.6rem; font-weight: 400;
  color: var(--dark); margin-bottom: 28px; padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 12px;
}
.treatment-section-title::before {
  content: ''; width: 4px; height: 22px; background: var(--gold);
  border-radius: 2px; flex-shrink: 0;
}
.treatment-section .services-grid {
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

/* ===== CONCERNS ===== */
.concerns-section { background: var(--dark); }
.concerns-section .section-eyebrow { color: var(--gold); }
.concerns-section .section-title { color: var(--white); }
.concerns-section .section-sub { color: rgba(255,255,255,0.6); }
.concerns-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.concern-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(201,168,108,0.2);
  border-radius: var(--radius); padding: 28px 16px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  color: rgba(255,255,255,0.8); font-size: 0.85rem; font-weight: 500;
  transition: all var(--transition);
}
.concern-card i { font-size: 1.6rem; color: var(--gold); }
.concern-card:hover { background: rgba(201,168,108,0.12); border-color: var(--gold); color: var(--white); transform: translateY(-3px); }

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-images { position: relative; }
.about-img-main {
  border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(135deg, var(--gold-light) 0%, #d4b896 100%);
  min-height: 480px;
}
.about-img-main img {
  width: 100%; height: 100%; min-height: 480px;
  object-fit: cover; object-position: center top; display: block;
}
.about-img-placeholder {
  width: 100%; height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  color: var(--gold-dark); font-size: 0.85rem;
}
.about-img-placeholder i { font-size: 3rem; opacity: 0.5; }
.about-img-grid {
  width: 100%; height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 6px;
  box-sizing: border-box;
}
.aig-left { overflow: hidden; border-radius: 10px; }
.aig-left img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; transition: transform 0.4s ease; }
.aig-right { display: flex; flex-direction: column; gap: 6px; }
.aig-top, .aig-bottom { overflow: hidden; border-radius: 10px; flex: 1; }
.aig-top img, .aig-bottom img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; transition: transform 0.4s ease; }
.aig-left:hover img, .aig-top:hover img, .aig-bottom:hover img { transform: scale(1.05); }
.about-img-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--dark); color: var(--gold-light); border-radius: var(--radius);
  padding: 20px 24px; display: flex; align-items: center; gap: 12px;
  font-size: 0.82rem; line-height: 1.4; font-weight: 500;
  box-shadow: var(--shadow-lg);
}
.about-img-badge i { font-size: 1.8rem; color: var(--gold); }
.about-content { display: flex; flex-direction: column; gap: 18px; }
.about-content .section-title { margin-bottom: 0; }
.about-content p { color: var(--medium); font-size: 0.95rem; }
.about-team { display: flex; flex-direction: column; gap: 14px; margin: 6px 0; }
.team-member {
  display: flex; align-items: center; gap: 14px;
  padding: 14px; background: var(--light); border-radius: var(--radius-sm);
}
.team-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold-light); display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--gold-dark); flex-shrink: 0;
}
.team-member strong { display: block; font-size: 0.92rem; font-weight: 600; }
.team-member span { font-size: 0.78rem; color: var(--medium); }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--light); }
.star-row { display: flex; align-items: center; gap: 6px; justify-content: center; color: var(--gold); margin-top: 8px; }
.star-row span { font-size: 0.85rem; color: var(--medium); font-weight: 500; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--white); border-radius: var(--radius); padding: 32px;
  box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 16px;
  transition: box-shadow var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); }
.testimonial-stars { color: var(--gold); font-size: 0.85rem; display: flex; gap: 3px; }
.testimonial-card p { color: var(--medium); font-size: 0.92rem; line-height: 1.7; flex: 1; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 700; color: var(--white);
}
.testimonial-author strong { display: block; font-size: 0.9rem; }
.testimonial-author span { font-size: 0.78rem; color: var(--medium); }

/* ===== BRANDS ===== */
.brands-section { padding: 40px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow: hidden; }
.brands-label { text-align: center; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--medium); margin-bottom: 20px; }
.brands-track-wrapper { overflow: hidden; }
.brands-track {
  display: flex; gap: 56px; align-items: center;
  animation: marquee 28s linear infinite; width: max-content;
}
.brands-track span {
  font-family: var(--font-serif); font-size: 1.1rem; font-weight: 400;
  color: var(--medium); white-space: nowrap; letter-spacing: 0.06em;
}
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== ABOUT PILLARS ===== */
.about-pillars { display: flex; flex-direction: column; gap: 14px; margin: 6px 0; }
.pillar {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 16px; background: var(--light); border-radius: var(--radius-sm);
  border-left: 3px solid var(--gold);
}
.pillar > i { color: var(--gold); font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
.pillar strong { display: block; font-size: 0.9rem; font-weight: 600; margin-bottom: 2px; }
.pillar span { font-size: 0.8rem; color: var(--medium); }

/* ===== HOW IT WORKS ===== */
.process-section { background: var(--light); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative; }
.process-grid::before {
  content: ''; position: absolute; top: 36px; left: calc(12.5% + 20px); right: calc(12.5% + 20px);
  height: 2px; background: linear-gradient(to right, var(--gold-light), var(--gold), var(--gold-light));
  z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.process-num {
  font-family: var(--font-serif); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.12em; color: var(--gold); margin-bottom: 10px;
}
.process-icon {
  width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 16px;
  background: var(--white); border: 2px solid var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--gold); box-shadow: var(--shadow);
}
.process-step h3 { font-size: 1rem; margin-bottom: 8px; }
.process-step p { font-size: 0.85rem; color: var(--medium); line-height: 1.6; }

/* ===== FAQ ===== */
.faq-container { max-width: 760px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; background: none; border: none; cursor: pointer;
  font-family: var(--font-sans); font-size: 0.95rem; font-weight: 500; color: var(--dark);
  text-align: left; transition: background var(--transition);
}
.faq-question:hover { background: var(--light); }
.faq-question .fa { color: var(--gold); font-size: 0.9rem; transition: transform var(--transition); flex-shrink: 0; }
.faq-item.open .faq-question { background: var(--light); }
.faq-item.open .faq-question .fa { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 24px 20px; }
.faq-item.open .faq-answer { display: block; }
.faq-answer p { color: var(--medium); font-size: 0.9rem; line-height: 1.7; }

/* ===== CONTACT ===== */
.contact-section { background: var(--light); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 72px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-info .section-title { margin-bottom: 0; }
.contact-info > p { color: var(--medium); }
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-item > i { color: var(--gold); font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
.contact-item strong { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 2px; }
.contact-item span, .contact-item a { font-size: 0.88rem; color: var(--medium); }
.contact-item a:hover { color: var(--gold); }
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--medium); transition: all var(--transition);
}
.social-links a:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }

.contact-form-wrap {
  background: var(--white); border-radius: var(--radius);
  padding: 40px; box-shadow: var(--shadow-lg);
}
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.8rem; font-weight: 600; color: var(--dark-2); letter-spacing: 0.03em; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: var(--font-sans); font-size: 0.9rem; color: var(--dark);
  background: var(--white); transition: border-color var(--transition);
  outline: none; resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: #bbb; }
.form-disclaimer { font-size: 0.75rem; color: #aaa; text-align: center; }
.form-success {
  display: none; background: #f0faf5; border: 1px solid #a8d5b8; border-radius: var(--radius-sm);
  padding: 16px 20px; color: #2d6a4f; font-size: 0.9rem; align-items: center; gap: 10px;
  text-align: center; flex-direction: column;
}
.form-success.show { display: flex; }
.form-success .fa { font-size: 1.8rem; }

/* ===== NEWSLETTER ===== */
.newsletter-section { background: var(--dark); padding: 56px 0; }
.newsletter-inner {
  display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap;
}
.newsletter-inner h3 { font-family: var(--font-serif); font-size: 1.6rem; color: var(--white); font-weight: 300; }
.newsletter-inner p { color: rgba(255,255,255,0.55); font-size: 0.88rem; margin-top: 4px; }
.newsletter-form { display: flex; gap: 10px; flex: 1; max-width: 440px; }
.newsletter-form input {
  flex: 1; padding: 13px 18px; border-radius: 40px;
  border: 1.5px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.06);
  color: var(--white); font-family: var(--font-sans); font-size: 0.88rem; outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-form input:focus { border-color: var(--gold); }

/* ===== HOME MAP ===== */
.home-map-section { padding: 72px 0 72px; background: var(--light); }
.home-map { max-width: 1350px; margin: 32px auto 0; height: 340px; padding: 0 16px; border-radius: var(--radius); overflow: hidden; }
.home-map iframe { width: 100%; height: 100%; border: none; display: block; border-radius: var(--radius); }

/* ===== FOOTER ===== */
.footer { background: #111; padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.2fr; gap: 48px; }
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-brand .logo-light { color: var(--white); }
.footer-brand p { color: rgba(255,255,255,0.45); font-size: 0.85rem; line-height: 1.7; }
.footer-col h4 { font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; font-weight: 600; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li { font-size: 0.85rem; color: rgba(255,255,255,0.45); }
.footer-col ul li .fa { color: var(--gold); margin-right: 8px; font-size: 0.8rem; }
.footer-col ul li a { color: rgba(255,255,255,0.45); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); margin-top: 48px; padding: 20px 0; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.3); text-align: center; }

/* ===== FLOATING BOOK BUTTON ===== */
.floating-book-btn {
  position: fixed; bottom: 28px; right: 28px; z-index: 500;
  background: var(--gold); color: var(--white);
  padding: 13px 22px; border-radius: 40px;
  font-size: 0.85rem; font-weight: 600;
  box-shadow: 0 6px 24px rgba(201,168,108,0.45);
  display: flex; align-items: center; gap: 8px;
  transition: all var(--transition);
}
.floating-book-btn:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(201,168,108,0.5); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .concerns-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-images { max-width: 480px; margin: 0 auto; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
}

@media (max-width: 768px) {
  .nav { display: none; position: fixed; inset: 0; top: 0; background: var(--white); z-index: 999; flex-direction: column; justify-content: center; align-items: center; padding: 80px 24px 40px; }
  .nav.open { display: flex; }
  .nav-links { flex-direction: column; align-items: center; gap: 8px; width: 100%; }
  .nav-links > li > a { font-size: 1.1rem; padding: 12px 24px; }
  .dropdown { display: none !important; }
  .hamburger { display: flex; z-index: 1001; position: relative; }
  .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  .nav-phone { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .concerns-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .newsletter-inner { flex-direction: column; align-items: flex-start; }
  .newsletter-form { max-width: 100%; width: 100%; }
  .hero { min-height: 50vh; }
  .hero-btns { flex-direction: column; align-items: center; }
  .section { padding: 64px 0; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .concerns-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .contact-form-wrap { padding: 24px; }
  .floating-book-btn { bottom: 16px; right: 16px; }
}
