/* ===================== CSS VARIABLES ===================== */
:root {
  --gold: #C8A96E;
  --gold-light: #E8D5A8;
  --gold-dark: #9A7A44;
  --deep-navy: #0D1B2A;
  --navy: #152535;
  --charcoal: #1E2D3D;
  --cream: #FAF8F3;
  --cream-dark: #F0EBE0;
  --text-dark: #1a1a2e;
  --text-muted: #6B7280;
  --white: #ffffff;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'DM Sans', sans-serif;
  --radius-card: 20px;
  --transition: 0.35s cubic-bezier(.4, 0, .2, 1);
}

.bg-title {
  background: linear-gradient(to right, #2792c8, #17799f) !important;
}

/* ===================== RESET & BASE ===================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--cream);
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

/* ===================== TYPOGRAPHY ===================== */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-display);
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}

.section-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 45px;
  font-weight: 600;
  line-height: 1.15;
  color: var(--deep-navy);
}

.section-heading-underline {
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}

.section-heading-underline::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
}

.center-underline::after {
  left: 15%;
}

/* ===================== NAVBAR ===================== */
.navbar {
  /* background: rgba(13, 27, 42, 0.97) !important; */
  /* background: white !important; */
  background: transparent !important;

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  /* padding: 0.85rem 0; */
  /* border-bottom: 1px solid rgba(200, 169, 110, 0.2); */
  /* transition: var(--transition); */
}

.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.navbar-expand-lg .navbar-nav {
  background-color: white !important;
  border-radius: 50PX;
}

.center-log {
  height: 100px;
  width: 100px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
}

.navbar-brand img.header-logo {
  width: 80% !important;
}



.navbar .nav-link {
  /* color: rgba(255,255,255,0.82) !important; */
  /* color: #d7b46a; */
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.5rem 1.1rem !important;
  transition: color var(--transition);
  position: relative;
}

.navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.navbar .nav-link:hover {
  color: var(--gold) !important;
}

.navbar .nav-link:hover::after {
  width: 60%;
}

.btn-book-nav {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: white !important;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  padding: 0.55rem 1.5rem !important;
  border-radius: 50px;
  border: none;
  transition: var(--transition);
  text-transform: uppercase;
}

.btn-book-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 169, 110, 0.4);
  color: var(--deep-navy) !important;
}

.btn-book-nav::after {
  display: none !important;
}

.navbar-toggler {
  border: 1px solid rgba(200, 169, 110, 0.5);
}

.navbar-toggler-icon {
  filter: invert(1);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(200, 169, 110, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Top info bar */
.top-bar {
  background: var(--deep-navy);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.78rem;
  padding: 7px 0;
  border-bottom: 1px solid rgba(200, 169, 110, 0.15);
}

.top-bar a {
  color: var(--gold-light);
  text-decoration: none;
}

.top-bar a:hover {
  color: var(--gold);
}

.top-bar .divider {
  color: rgba(200, 169, 110, 0.3);
  margin: 0 12px;
}

/* ===================== HERO ===================== */
.hero {
  min-height: 100vh;
  /* background:
      linear-gradient(160deg, rgba(13,27,42,0.92) 50%, rgba(13,27,42,0.75) 100%),
      url('https://images.unsplash.com/photo-1607613009820-a29f7bb81c04?auto=format&fit=crop&q=80&w=1920') center/cover no-repeat; */
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 70% 50%, rgba(200, 169, 110, 0.08), transparent);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 169, 110, 0.15);
  border: 1px solid rgba(200, 169, 110, 0.4);
  color: var(--gold-light);
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: 50px;
  font-weight: 700;
  line-height: 1.08;
  color: var(--white);
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero .lead-text {
  color: rgb(255, 255, 255);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 480px;
}

.local-video {
  width: 100%;
  height: 100vh;
  display: block;
  object-fit: cover;
}

.position-abs {
  position: absolute;
  left: 0%;
  right: 0%;
}


.posab1 {
  position: absolute;
  left: 0%;
  top: 0%;
  bottom: 0%;
  right: 0%;
  background: linear-gradient(90deg, rgba(13, 27, 42, 0.7) 40%, rgba(13, 27, 42, 0.3) 100%);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: white;
  text-decoration: none;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  padding: 14px 32px;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  transition: var(--transition);
  box-shadow: 0 6px 28px rgba(200, 169, 110, 0.35);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(200, 169, 110, 0.5);
  color: var(--deep-navy);
}

.btn-outline-hero {
  background: transparent;
  text-decoration: none;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 50px;
  padding: 14px 32px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}

.btn-outline-hero:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
  transform: translateY(-3px);
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.8);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
}

.trust-pill .highlight {
  font-weight: 700;
  color: var(--gold-light);
}

/* floating card hero */
.hero-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(200, 169, 110, 0.25);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-card);
  padding: 2rem;
  color: var(--white);
}

.hero-card img {
  border-radius: 14px;
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.hero-mini-badge {
  background: rgba(200, 169, 110, 0.9);
  color: var(--deep-navy);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  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.1em;
  text-transform: uppercase;
}

.scroll-arrow {
  width: 28px;
  height: 44px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 14px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 6px;
}

.scroll-dot {
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollBounce 1.8s ease-in-out infinite;
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }

  50% {
    transform: translateY(10px);
    opacity: 0.4;
  }
}

/* ===================== ABOUT SECTION ===================== */
.about-section {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 169, 110, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.about-img-wrapper {
  position: relative;
}

.about-img-wrapper img {
  border-radius: var(--radius-card);
  width: 100%;
  height: 480px;
  object-fit: cover;
  box-shadow: 0 30px 80px rgba(13, 27, 42, 0.2);
}

.about-badge-float {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--white);
  border-radius: 16px;
  padding: 18px 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  border-left: 4px solid var(--gold);
}

.about-badge-float .number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--deep-navy);
  line-height: 1;
}

.about-badge-float .label {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.know-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--deep-navy);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  letter-spacing: 0.04em;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 4px;
  transition: var(--transition);
}

.know-more-btn:hover {
  color: var(--gold-dark);
  gap: 16px;
}

/* ===================== SERVICES ICON SECTION ===================== */
.services-icon-section {
  background: white;
  position: relative;
}

.ser-card {
  text-align: center;
  padding: 1.8rem 1rem;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid rgba(200, 169, 110, 0.15);
  transition: var(--transition);
  box-shadow: 0px 0px 2px lightgray;
  text-decoration: none;
  display: block;
  color: var(--text-dark);
}

.ser-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(13, 27, 42, 0.1);
  border-color: #a7d3ee;
  color: var(--text-dark);
}

.ser-card .icon-wrapper {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  /* background: linear-gradient(135deg, var(--cream), var(--cream-dark)); */
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  border: 2px solid #a7d3ee;
  transition: var(--transition);
}

.ser-card:hover .icon-wrapper {
  background: #e9f0f4;
  border-color: #a7d3ee;
}

.ser-card .icon-wrapper img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.ser-card h6 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--deep-navy);
}

/* ===================== TREATMENTS SECTION ===================== */
.treatments-section {
  /* background: var(--deep-navy); */
  /* background: url('../assetes/images/bg-img.jpg') center center / cover no-repeat; */
  background-image: linear-gradient(rgba(200, 169, 110, 0.08), rgba(200, 169, 110, 0.08)), url(../assetes/images/bg-img.jpg);
  /* background-image: url(../assetes/images/bg-img.jpg); */

    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.treatments-section::before {
  content: '';
  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='%23c8a96e' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.treatments-section .section-heading {
  color: var(--white);
}

.treatment-card-premium {
  background: rgba(0, 0, 0, 1);
  background: grey;
      /* background: linear-gradient(to right, rgba(39, 146, 200,0.4), rgba(23, 121, 159, 0.4)) !important;
      */
  border: 1px solid rgba(200, 169, 110, 0.15);
  border-radius: var(--radius-card);
  padding: 2rem;
  transition: var(--transition);
  height: 100%;
  cursor: pointer;
  text-decoration: none;
  display: block;
  color: inherit;
   background: white;
  border-color: rgba(200, 169, 110, 0.5);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
  color: black !important;
   backdrop-filter: blur(25px);
}

.treatment-card-premium:hover {
  background: rgba(200, 169, 110, 0.08);
  border-color: rgba(200, 169, 110, 0.5);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
  color: black !important;
}

.treatment-card-premium h4 {
  color: black !important;
}
.treatment-card-premium p {
  color: black !important;
}
.t-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: black;
  border: 1px solid rgba(200, 169, 110, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.3rem;
  color: var(--gold);
  transition: var(--transition);
}


.treatment-card-premium:hover .t-icon-box {
  background: white;
  color: var(--deep-navy);
}

.treatment-card-premium h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.7rem;
}

.treatment-card-premium p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-bottom: 0;
}

.accent-line-gold {
  width: 32px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
  margin-top: 1.2rem;
  transition: width var(--transition);
}

.treatment-card-premium:hover .accent-line-gold {
  width: 60px;
}

/* Philosophy */
.philosophy-img {
  border-radius: var(--radius-card);
  width: 100%;
  height: 380px;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.check-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: rgba(200, 169, 110, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.8rem;
  margin-top: 2px;
}

.check-item h6 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--white);
  font-weight: 600;
}

.check-item p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ===================== CTA SECTION ===================== */
.cta-section {
  background:
    linear-gradient(135deg, rgba(13, 27, 42, 0.95) 0%, rgba(30, 45, 61, 0.9) 100%),
    url('https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?auto=format&fit=crop&q=80&w=1920') center/cover no-repeat fixed;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 70%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(200, 169, 110, 0.07) 0%, transparent 60%);
  pointer-events: none;
}

.cta-card-inner {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(200, 169, 110, 0.25);
  border-radius: 28px;
  padding: 4rem 3rem;
  backdrop-filter: blur(10px);
}

.urgency-pill {
  display: inline-block;
  background: rgba(200, 169, 110, 0.15);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 7px 20px;
  border-radius: 50px;
  border: 1px solid rgba(200, 169, 110, 0.3);
  margin-bottom: 1.5rem;
}

.cta-card-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.cta-card-inner p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 680px;
  margin: 0 auto 2.5rem;
}

.btn-cta-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  padding: 14px 30px;
  font-size: 0.88rem;
  font-weight: 500;
  transition: var(--transition);
}

.btn-cta-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
  transform: translateY(-3px);
}

.response-note {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.78rem;
  margin-top: 1.5rem;
}

/* ===================== TESTIMONIALS ===================== */
.testimonials-section {
  background: var(--cream-dark);
  position: relative;
}

.testimonials-section::before {
  content: '"';
  position: absolute;
  top: 3rem;
  left: 6%;
  font-family: var(--font-display);
  font-size: 20rem;
  color: rgba(200, 169, 110, 0.06);
  line-height: 1;
  pointer-events: none;
}

.testimonial-card-premium {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(13, 27, 42, 0.07);
  border-top: 3px solid var(--gold);
  height: 100%;
}

.star-row {
  color: #E8A900;
  letter-spacing: 2px;
  font-size: 1rem;
}

.testimonial-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--deep-navy);
  margin: 1rem 0 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--deep-navy);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.author-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--deep-navy);
}

.author-role {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ===================== FAQ SECTION ===================== */
.faq-section {
  background: var(--cream);
  position: relative;
}

.accordion-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(13, 27, 42, 0.08) !important;
}

.accordion-button {
  background: transparent !important;
  color: var(--deep-navy) !important;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  padding: 1.4rem 0;
  box-shadow: none !important;
}

.accordion-button::after {
  filter: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23C8A96E'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

.accordion-button:not(.collapsed) {
  color: var(--gold-dark) !important;
}

.accordion-body {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.8;
  padding: 0 0 1.4rem;
}

/* ===================== APPOINTMENT FORM ===================== */
.appointment-section {
  background:
    linear-gradient(180deg, var(--cream-dark) 0%, var(--white) 100%);
  position: relative;
}

.appt-contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(13, 27, 42, 0.06);
}

.appt-contact-item:last-child {
  border-bottom: none;
}

.appt-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--cream), var(--cream-dark));
  border: 1px solid rgba(200, 169, 110, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 1.1rem;
}

.appt-icon-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.appt-icon-value {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--deep-navy);
}

.form-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(13, 27, 42, 0.1);
  border: 1px solid rgba(200, 169, 110, 0.1);
}

.form-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.form-control,
.form-select {
  border: 1.5px solid rgba(13, 27, 42, 0.1);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  background: var(--cream);
  color: var(--text-dark);
  transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 169, 110, 0.12);
  background: var(--white);
}

.btn-submit {
  background: linear-gradient(135deg, var(--deep-navy), var(--charcoal));
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 1rem;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  transition: var(--transition);
  width: 100%;
}

.btn-submit:hover {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--deep-navy);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(200, 169, 110, 0.35);
}

/* ===================== FOOTER ===================== */
footer {
  background: var(--deep-navy);
  color: rgba(255, 255, 255, 0.65);
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-brand h4 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--white);
  font-weight: 700;
}

.footer-brand p {
  font-size: 0.87rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(200, 169, 110, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.9rem;
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

.footer-heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.7rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.88rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a::before {
  content: '→';
  font-size: 0.75rem;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-6px);
  transition: var(--transition);
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.9);
  padding-left: 4px;
}

.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-hours li {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.5);
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
}

.footer-hours li span:last-child {
  color: rgba(200, 169, 110, 0.8);
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.07) !important;
  margin: 3rem 0 2rem;
}

.footer-bottom {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom a {
  color: rgba(200, 169, 110, 0.6);
  text-decoration: none;
}

.map-wrapper {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(200, 169, 110, 0.2);
  margin-top: 1rem;
}

/* ===================== SECTION DIVIDERS ===================== */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 169, 110, 0.3), transparent);
}

/* ===================== UTILITIES ===================== */
.py-section {
  padding: 6rem 0;
}

@media (max-width: 768px) {
  .py-section {
    padding: 4rem 0;
  }

  .section-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
  }

  .hero h1 {
    font-size: 35px;
}


.btn-gold {
   padding: 15px 12px;

}

.local-video {
    width: 100%;
    height: 65vh;
}

  .hero {
    min-height: auto;
    padding: 7rem 0 5rem;
  }

  .about-badge-float {
    position: static;
    margin-top: 1.5rem;
  }

  .cta-card-inner {
    padding: 2.5rem 1.5rem;
  }

  .form-card {
    padding: 1.8rem 1.2rem;
  }
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}