/* ============================================================
   DIVYAIN CAB — ROYAL LUXURY STYLESHEET
   Classical Heritage · Gold & Ivory · Premium Chauffeur
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Poppins:wght@300;400;500;600&display=swap');

/* ─── CSS Variables ─────────────────────────────────────── */
:root {
  --ivory:       #fdf6f0;
  --ivory-dark:  #f5ebe0;
  --gold:        #C9A646;
  --gold-light:  #e8c96d;
  --gold-dark:   #a07c2a;
  --maroon:      #5a1e1e;
  --maroon-light:#7a2e2e;
  --text-dark:   #1a1a1a;
  --text-mid:    #3a3a3a;
  --text-light:  #6b6b6b;
  --white:       #ffffff;
  --gold-grad:   linear-gradient(135deg, #C9A646 0%, #e8c96d 50%, #C9A646 100%);
  --maroon-grad: linear-gradient(135deg, #5a1e1e 0%, #7a3030 100%);
  --shadow-gold: 0 8px 32px rgba(201,166,70,0.25);
  --shadow-deep: 0 16px 48px rgba(26,26,26,0.18);
  --border-gold: 1px solid rgba(201,166,70,0.45);
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;
  --font-royal:  'Cinzel', serif;
  --font-display:'Playfair Display', serif;
  --font-elegant:'Cormorant Garamond', serif;
  --font-body:   'Poppins', sans-serif;
  --transition:  all 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset & Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  background-color: var(--ivory);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.75;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }

/* ─── Typography ────────────────────────────────────────── */
.royal-heading {
  font-family: var(--font-royal);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--maroon);
  line-height: 1.2;
}

.display-heading {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.15;
}

.elegant-text {
  font-family: var(--font-elegant);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text-mid);
}

.gold-text { color: var(--gold); }
.maroon-text { color: var(--maroon); }
.ivory-text { color: var(--ivory); }

/* ─── Gold Ornaments & Dividers ─────────────────────────── */
.ornament-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 20px auto;
}

.ornament-divider::before,
.ornament-divider::after {
  content: '';
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.ornament-divider .diamond {
  width: 10px; height: 10px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.ornament-divider .diamond::before,
.ornament-divider .diamond::after {
  content: '';
  position: absolute;
  width: 6px; height: 6px;
  background: var(--gold);
  transform: rotate(0deg);
  top: 2px;
}

.section-badge {
  display: inline-block;
  font-family: var(--font-royal);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 6px 18px;
  margin-bottom: 14px;
  position: relative;
}

.section-badge::before, .section-badge::after {
  content: '◆';
  position: absolute;
  top: 50%; transform: translateY(-50%);
  font-size: 0.45rem;
  color: var(--gold);
}
.section-badge::before { left: -8px; }
.section-badge::after  { right: -8px; }

/* ─── Gold Line Borders ─────────────────────────────────── */
.gold-border-box {
  border: var(--border-gold);
  position: relative;
}

.gold-border-box::before {
  content: '';
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(201,166,70,0.18);
  pointer-events: none;
}

/* ─── Buttons ───────────────────────────────────────────── */
.btn-royal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-royal);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 2px solid var(--gold);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.btn-royal-gold {
  background: var(--gold-grad);
  color: var(--maroon);
}

.btn-royal-gold:hover {
  background: var(--maroon-grad);
  color: var(--gold);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.btn-royal-outline {
  background: transparent;
  color: var(--ivory);
  border-color: var(--ivory);
}

.btn-royal-outline:hover {
  background: var(--gold-grad);
  color: var(--maroon);
  border-color: var(--gold);
}

.btn-royal-maroon {
  background: var(--maroon-grad);
  color: var(--gold);
  border-color: var(--gold);
}

.btn-royal-maroon:hover {
  background: var(--gold-grad);
  color: var(--maroon);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

/* ─── HEADER / NAVBAR ───────────────────────────────────── */
#main-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(253, 246, 240, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(201,166,70,0.5);
  transition: var(--transition);
  padding: 0;
}

#main-header.scrolled {
  background: rgba(253, 246, 240, 0.97);
  box-shadow: 0 4px 24px rgba(201,166,70,0.12);
}

.header-top-bar {
  background: var(--maroon);
  padding: 6px 0;
  font-size: 0.72rem;
  font-family: var(--font-body);
  letter-spacing: 0.06em;
}

.header-top-bar a { color: var(--gold-light); }
.header-top-bar a:hover { color: var(--white); }

.navbar-brand img {
  height: 38px;
  width: auto;
}

.brand-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: var(--font-royal);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--maroon);
  letter-spacing: 0.12em;
}

.brand-tagline {
  font-family: var(--font-elegant);
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  font-style: italic;
}

.nav-link-royal {
  font-family: var(--font-royal);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dark) !important;
  padding: 8px 14px !important;
  position: relative;
  transition: var(--transition);
}

.nav-link-royal::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 14px; right: 14px;
  height: 1.5px;
  background: var(--gold-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-link-royal:hover::after,
.nav-link-royal.active::after {
  transform: scaleX(1);
}

.nav-link-royal:hover { color: var(--gold-dark) !important; }
.nav-link-royal.active { color: var(--gold-dark) !important; }

/* ─── HERO SECTION ──────────────────────────────────────── */
#hero {
  min-height: 100vh;
  background: url('../images/hero.jpg') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,rgba(115, 23, 23, 1) 0%, rgba(133, 47, 42, 1) 50%, rgba(207, 103, 39, 1) 100%);
  z-index: 1;
}

.hero-bg-zoom {
  position: absolute;
  inset: -10%;
  background: url('../images/hero.jpg') center/cover no-repeat;
  animation: heroZoom 18s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes heroZoom {
  from { transform: scale(1.0); }
  to   { transform: scale(1.08); }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 140px 20px 20px;

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-royal);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(201,166,70,0.55);
  padding: 7px 22px;
  margin-bottom: 22px;
  animation: fadeInDown 1s ease 0.3s both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 700;
  color: var(--ivory);
  line-height: 1.12;
  margin-bottom: 18px;
  animation: fadeInUp 1s ease 0.5s both;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

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

.hero-subtitle {
  font-family: var(--font-elegant);
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  color: rgba(253,246,240,0.88);
  letter-spacing: 0.06em;
  margin-bottom: 36px;
  animation: fadeInUp 1s ease 0.7s both;
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center; /* 👈 add this */
    gap: 12px;
    margin: 0 auto 26px; /* 👈 center block */
    animation: fadeIn 1s ease 0.9s both;
}

.hero-divider-line {
  width: 60px; height: 1px;
  background: var(--gold);
}

.hero-divider-icon { color: var(--gold); font-size: 0.8rem; }

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center; /* 👈 optional */
    gap: 16px;
}
.hero-stats {
    display: flex;
    flex-wrap: wrap; /* 👈 responsive */
    justify-content: center; /* 👈 horizontal center */
    align-items: center; /* 👈 vertical alignment */

    gap: 40px;
    margin: 60px auto 0; /* 👈 block ko center karega */

    padding-top: 30px;
    border-top: 1px solid rgba(201, 166, 70, 0.3);

    text-align: center; /* 👈 text bhi center */
    animation: fadeIn 1s ease 1.3s both;

    max-width: 800px; /* 👈 optional but recommended */
}

.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-royal);
  font-size: 1.8rem;
  color: var(--gold-light);
  line-height: 1;
}
.stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(253,246,240,0.7);
  margin-top: 4px;
}

/* ─── GENERAL SECTION STYLES ────────────────────────────── */
.section-pad { padding: 96px 0; }
.section-pad-sm { padding: 64px 0; }

.section-header { text-align: center; margin-bottom: 60px; }

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 14px;
}

.section-subtitle {
  font-family: var(--font-elegant);
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
  letter-spacing: 0.03em;
}

/* ─── LUXURY TEXTURE BACKGROUNDS ───────────────────────── */
.bg-ivory     { background-color: var(--ivory); }
.bg-ivory-dark{ background-color: var(--ivory-dark); }
.bg-maroon    { background-color: var(--maroon); }
.bg-pattern {
  background-color: var(--ivory-dark);
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 20px,
      rgba(201,166,70,0.045) 20px,
      rgba(201,166,70,0.045) 40px
    );
}

/* ─── ABOUT SECTION ─────────────────────────────────────── */
.about-image-wrap {
  position: relative;
  padding: 20px;
}

.about-image-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 75%; height: 75%;
  border-top: 3px solid var(--gold);
  border-left: 3px solid var(--gold);
}

.about-image-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 75%; height: 75%;
  border-bottom: 3px solid var(--gold);
  border-right: 3px solid var(--gold);
}

.about-image-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.about-badge-float {
  position: absolute;
  bottom: 30px; right: 10px;
  background: var(--maroon);
  border: 2px solid var(--gold);
  color: var(--gold);
  padding: 18px 22px;
  text-align: center;
  z-index: 2;
}

.about-badge-float .years {
  font-family: var(--font-royal);
  font-size: 2.2rem;
  line-height: 1;
  color: var(--gold-light);
}

.about-badge-float .years-label {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-features { margin-top: 28px; }

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(201,166,70,0.2);
}

.about-feature-item:last-child { border-bottom: none; }

.feature-icon-box {
  width: 42px; height: 42px;
  background: var(--gold-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--maroon);
  font-size: 1rem;
}

/* ─── SERVICES SECTION ──────────────────────────────────── */
.service-card {
  background: var(--white);
  border: var(--border-gold);
  padding: 36px 28px;
  position: relative;
  transition: var(--transition);
  height: 100%;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(201,166,70,0.12) 0%, rgba(201,166,70,0.06) 100%);
  border: var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  font-size: 1.6rem;
  color: var(--gold);
  transition: var(--transition);
}

.service-card:hover .service-card-icon {
  background: var(--gold-grad);
  color: var(--maroon);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--maroon);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

.service-card-footer {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(201,166,70,0.25);
}

.service-link {
  font-family: var(--font-royal);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-link:hover { color: var(--maroon); gap: 14px; }

/* ─── WHY CHOOSE US ─────────────────────────────────────── */
.why-card {
  text-align: center;
  padding: 36px 24px;
  position: relative;
}

.why-icon {
  width: 80px; height: 80px;
  border: 2px solid rgba(201,166,70,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: var(--gold);
  position: relative;
  transition: var(--transition);
}

.why-icon::before {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  border: 1px solid rgba(201,166,70,0.2);
}

.why-card:hover .why-icon {
  background: var(--gold-grad);
  color: var(--maroon);
  border-color: var(--gold);
}

.why-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--maroon);
  margin-bottom: 10px;
  font-weight: 600;
}

.why-desc { font-size: 0.88rem; color: var(--text-light); }

.why-separator {
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(201,166,70,0.4), transparent);
  align-self: stretch;
}

/* ─── SERVICE AREAS ─────────────────────────────────────── */
.area-card {
  background: var(--white);
  border: var(--border-gold);
  padding: 28px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: var(--transition);
  text-decoration: none;
}

.area-card:hover {
  background: var(--maroon);
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-deep);
}

.area-icon {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, rgba(201,166,70,0.1), rgba(201,166,70,0.05));
  border: var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.area-card:hover .area-icon {
  background: var(--gold-grad);
  color: var(--maroon);
}

.area-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--maroon);
  margin-bottom: 2px;
  transition: var(--transition);
}

.area-card:hover .area-name { color: var(--gold-light); }

.area-info {
  font-size: 0.78rem;
  color: var(--text-light);
  transition: var(--transition);
}
.area-card:hover .area-info { color: rgba(253,246,240,0.65); }

/* ─── TESTIMONIALS ──────────────────────────────────────── */
.testimonial-card {
  background: var(--white);
  border: var(--border-gold);
  padding: 36px 28px;
  position: relative;
  height: 100%;
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}

.testimonial-quote {
  font-size: 3.5rem;
  color: var(--gold);
  font-family: var(--font-display);
  line-height: 1;
  margin-bottom: 12px;
  opacity: 0.5;
}

.testimonial-text {
  font-family: var(--font-elegant);
  font-size: 1.05rem;
  color: var(--text-mid);
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 22px;
}

.testimonial-stars { color: var(--gold); letter-spacing: 3px; font-size: 0.8rem; margin-bottom: 14px; }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(201,166,70,0.25);
}

.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: var(--gold-grad);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-royal);
  font-size: 1.1rem;
  color: var(--maroon);
  flex-shrink: 0;
}

.author-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--maroon);
}

.author-location {
  font-size: 0.75rem;
  color: var(--text-light);
  font-style: italic;
}

/* ─── CTA BANNER ────────────────────────────────────────── */
#cta-section {
  background: var(--maroon-grad);
  position: relative;
  overflow: hidden;
}

#cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 30px,
      rgba(201,166,70,0.04) 30px,
      rgba(201,166,70,0.04) 60px
    );
}

.cta-gold-border {
  border: 1px solid rgba(201,166,70,0.35);
  padding: 60px;
  position: relative;
  z-index: 1;
}

.cta-gold-border::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(201,166,70,0.15);
}

/* ─── CONTACT PAGE ──────────────────────────────────────── */
.contact-form-wrap {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  border: var(--border-gold);
  padding: 48px 40px;
  position: relative;
}

.contact-form-wrap::before {
  content: '';
  position: absolute;
  top: 8px; left: 8px; right: 8px; bottom: 8px;
  border: 1px solid rgba(201,166,70,0.18);
  pointer-events: none;
}

.form-label-royal {
  font-family: var(--font-royal);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--maroon);
  margin-bottom: 8px;
  display: block;
}

.form-control-royal {
  width: 100%;
  padding: 13px 18px;
  border: 1px solid rgba(201,166,70,0.4);
  background: rgba(253,246,240,0.6);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
  border-radius: 0;
}

.form-control-royal:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,166,70,0.12);
}

.form-control-royal::placeholder { color: #aaa; }

textarea.form-control-royal { resize: vertical; min-height: 130px; }

.contact-info-card {
  background: var(--maroon);
  border: 1px solid rgba(201,166,70,0.4);
  padding: 36px 30px;
  height: 100%;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(201,166,70,0.2);
}
.contact-info-item:last-child { border-bottom: none; }

.contact-info-icon {
  width: 44px; height: 44px;
  background: rgba(201,166,70,0.15);
  border: 1px solid rgba(201,166,70,0.35);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-info-label {
  font-family: var(--font-royal);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.contact-info-value {
  color: var(--ivory);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ─── MAP WRAPPER ───────────────────────────────────────── */
.map-wrap {
  border: 3px solid rgba(201,166,70,0.45);
  position: relative;
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 380px;
  filter: sepia(20%) saturate(80%);
}

/* ─── FOOTER ────────────────────────────────────────────── */
#main-footer {
  background: #272525f0;
  border-top: 2px solid rgba(201,166,70,0.4);
  padding: 72px 0 0;
}

.footer-brand-text {
  font-family: var(--font-royal);
  font-size: 1.45rem;
  letter-spacing: 0.12em;
  color: var(--gold-light);
}

.footer-tagline {
  font-family: var(--font-elegant);
  font-size: 0.95rem;
  color: rgba(253,246,240,0.5);
  font-style: italic;
  margin-top: 4px;
}

.footer-desc {
  font-size: 0.85rem;
  color: rgba(253,246,240,0.55);
  line-height: 1.8;
  margin-top: 16px;
}

.footer-divider {
  width: 40px; height: 1px;
  background: var(--gold);
  margin: 20px 0;
}

.footer-heading {
  font-family: var(--font-royal);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(201,166,70,0.25);
}

.footer-links li {
  padding: 6px 0;
  border-bottom: 1px solid rgba(201,166,70,0.08);
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(253,246,240,0.55);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.footer-links a:hover { color: var(--gold-light); padding-left: 6px; }

.footer-links a::before {
  content: '◆';
  font-size: 0.4rem;
  color: var(--gold);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-btn {
  width: 38px; height: 38px;
  border: 1px solid rgba(201,166,70,0.35);
  display: flex; align-items: center; justify-content: center;
  color: rgba(253,246,240,0.55);
  font-size: 0.85rem;
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--gold-grad);
  color: var(--maroon);
  border-color: var(--gold);
}

.footer-bottom {
  background: rgba(0,0,0,0.3);
  border-top: 1px solid rgba(201,166,70,0.2);
  padding: 18px 0;
  margin-top: 52px;
  font-size: 0.78rem;
  color: rgba(253,246,240,0.35);
}

.footer-bottom a { color: var(--gold); }

/* ─── FLOATING BUTTONS ──────────────────────────────────── */
.floating-whatsapp {
  position: fixed;
  bottom: 90px; right: 24px;
  width: 54px; height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 1.4rem;
  z-index: 900;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: var(--transition);
  animation: floatBounce 3s ease-in-out infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 30px rgba(37,211,102,0.6);
  color: white;
}

.floating-call {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 54px; height: 54px;
  background: var(--gold-grad);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--maroon);
  font-size: 1.25rem;
  z-index: 900;
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
}

.floating-call:hover {
  transform: scale(1.12);
  background: var(--maroon-grad);
  color: var(--gold);
}

#back-to-top {
  position: fixed;
  bottom: 160px; right: 24px;
  width: 42px; height: 42px;
  background: var(--maroon);
  border: 1px solid rgba(201,166,70,0.5);
  color: var(--gold);
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  z-index: 900;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}

#back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* ─── PAGE HERO (inner pages) ───────────────────────────── */
.page-hero {
  min-height: 360px;
  background: var(--maroon-grad);
  display: flex;
  align-items: center;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(201,166,70,0.04) 40px,
      rgba(201,166,70,0.04) 80px
    );
}

.page-hero-title {
  font-family: var(--font-royal);
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--ivory);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.page-hero-title span { color: var(--gold-light); }

.breadcrumb-royal {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: rgba(253,246,240,0.6);
}

.breadcrumb-royal a { color: var(--gold-light); }
.breadcrumb-royal .separator { color: var(--gold); }

/* ─── FAQ ACCORDION ─────────────────────────────────────── */
.faq-item {
  border: var(--border-gold);
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-question {
  padding: 18px 24px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--maroon);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
  background: var(--white);
}

.faq-question:hover { background: rgba(201,166,70,0.06); }

.faq-question.active {
  background: var(--maroon);
  color: var(--gold-light);
}

.faq-icon { font-size: 0.75rem; transition: transform 0.3s ease; }
.faq-question.active .faq-icon { transform: rotate(45deg); }

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  background: var(--white);
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
}

.faq-answer.open {
  max-height: 300px;
  padding: 16px 24px;
}

/* ─── CITY PAGE FEATURES ────────────────────────────────── */
.pricing-table {
  border: var(--border-gold);
  overflow: hidden;
}

.pricing-table-header {
  background: var(--maroon);
  padding: 16px 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 16px;
}

.pricing-table-header span {
  font-family: var(--font-royal);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.pricing-table-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 16px;
  padding: 14px 24px;
  border-bottom: 1px solid rgba(201,166,70,0.15);
  font-size: 0.9rem;
  transition: var(--transition);
}

.pricing-table-row:hover { background: rgba(201,166,70,0.06); }
.pricing-table-row:last-child { border-bottom: none; }
.pricing-table-row .price { color: var(--gold-dark); font-weight: 600; }

/* ─── ANIMATIONS ────────────────────────────────────────── */
@keyframes fadeIn     { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInUp   { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInLeft { from { opacity: 0; transform: translateX(-24px); } to { opacity: 1; transform: translateX(0); } }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ─── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 991.98px) {
  .hero-stats { gap: 24px; }
  .why-separator { display: none; }
  .cta-gold-border { padding: 36px 24px; }
  .contact-form-wrap { padding: 32px 24px; }
}

@media (max-width: 767.98px) {
  .section-pad { padding: 64px 0; }
  .hero-buttons { flex-direction: column; align-items: flex-start; }
  .about-image-wrap img { height: 320px; }
  .about-badge-float { display: none; }
  .pricing-table-header,
  .pricing-table-row { grid-template-columns: 2fr 1fr; }
  .pricing-table-header span:last-child,
  .pricing-table-row .extra { display: none; }
  .footer-social { flex-wrap: wrap; }
  .header-top-bar { display: none; }
}

@media (max-width: 575.98px) {
  .hero-stats { flex-wrap: wrap; gap: 20px; }
}

/* ─── UTILITIES ─────────────────────────────────────────── */
.text-gold  { color: var(--gold); }
.text-maroon{ color: var(--maroon); }
.border-gold{ border-color: var(--gold) !important; }
.gap-royal  { gap: 48px; }
.lh-loose   { line-height: 2; }
