/* ===================================================
   DR. ALAA ARIF – LANDING PAGE STYLES
   Color system:
   --burgundy:   #5C1228  (dark wine/maroon)
   --gold:       #C8A96E  (warm champagne gold)
   --gold-light: #E8D5A3
   --ivory:      #FAF7F2  (warm white base)
   --dark:       #1A1A1A
   --muted:      #6B6B6B
=================================================== */

/* ── ROOT ─────────────────────────────── */
:root {
  --burgundy: #5C1228;
  --burgundy-d: #3D0B1A;
  --gold: #C8A96E;
  --gold-light: #E8D5A3;
  --gold-pale: #F5EED8;
  --ivory: #FAF7F2;
  --white: #FFFFFF;
  --dark: #1A1A1A;
  --dark2: #2D2D2D;
  --muted: #6B6B6B;
  --border: rgba(200, 169, 110, 0.25);
  --shadow-gold: 0 4px 30px rgba(200, 169, 110, 0.15);
  --radius: 14px;
  --radius-sm: 8px;
  --font-ar: 'Tajawal', sans-serif;
  --transition: 0.28s cubic-bezier(.4, 0, .2, 1);
}

/* ── RESET & BASE ─────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-ar);
  background: var(--ivory);
  color: var(--dark);
  direction: rtl;
  line-height: 1.75;
  overflow-x: hidden;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

/* ── SECTION LABELS ─────────────────── */
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
  background: rgba(200, 169, 110, 0.06);
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 40px;
  line-height: 1.3;
}

/* ── BUTTONS ─────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 32px;
  border-radius: 50px;
  font-family: var(--font-ar);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: normal;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--burgundy), var(--burgundy-d));
  color: var(--white);
  border-color: var(--burgundy);
  box-shadow: 0 6px 24px rgba(92, 18, 40, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #7a1934, var(--burgundy));
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(92, 18, 40, 0.45);
}

.btn-ghost {
  background: transparent;
  color: var(--dark);
  border-color: rgba(26, 26, 26, 0.25);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(200, 169, 110, 0.06);
}

.btn-lg {
  padding: 12px 40px;
  font-size: 1.1rem;
}

/* ── MARQUEE BANNER (UNDER HEADER) ──────────── */
.marquee-bar {
  background: var(--burgundy-d);
  color: var(--white);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
  z-index: 99;
  direction: ltr;
  display: flex;
  align-items: center;
  /* ensure predictable transform direction */
}

.marquee-inner {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee-scroll 45s linear infinite;
}

.marquee-inner:hover {
  animation-play-state: paused;
}

.marquee-text {
  display: flex;
  align-items: center;
  font-size: 1.15rem;
  white-space: nowrap;
  direction: rtl;
  /* keep arabic text correct */
}

.marquee-text strong {
  color: var(--gold-light);
  margin: 0 4px;
}

.ann-star {
  color: var(--gold);
  font-size: 0.8rem;
  margin: 0 10px;
}

.marquee-link {
  color: var(--dark);
  background: var(--gold);
  padding: 4px 14px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  margin-right: 12px;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.marquee-link:hover {
  background: var(--white);
  color: var(--burgundy);
  transform: scale(1.05);
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

/* ── HEADER ──────────────────────────── */
.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 6px 0;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-wrapper {
  flex-shrink: 0;
}

.logo {
  max-height: 75px;
  display: block;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  font-size: 1.05rem;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--burgundy);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--burgundy);
  cursor: pointer;
  padding: 4px;
}

/* ── HERO ────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 40px 0 120px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('hero_bg.webp') center/cover no-repeat;
  z-index: 0;
}

/* Silk wave overlays */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(250, 247, 242, 0.85);
  z-index: 1;
}

.hero-bg::after {
  display: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 0 3rem;
}

.hero-image-side {
  flex-shrink: 0;
  width: 310px;
}

.hero-text-side {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  max-width: 520px;
}

.hero-location-side {
  flex-shrink: 0;
  width: 400px;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(92, 18, 40, 0.15);
  animation: fadeSlideUp 0.7s ease 0.3s both;
  border: 1px solid var(--border);
  padding: 1rem;
  background: var(--white);
}

.dr-image {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--burgundy), #8B1A38);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(92, 18, 40, 0.3);
  animation: fadeSlideDown 0.7s ease both;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 8px;
  animation: fadeSlideUp 0.7s ease 0.1s both;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: -8px;
  animation: fadeSlideUp 0.7s ease 0.2s both;
}

.hero-name {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--burgundy);
  margin-bottom: 4px;
  animation: fadeSlideUp 0.7s ease 0.25s both;
}

.hero-specialty {
  font-size: 0.95rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
  animation: fadeSlideUp 0.7s ease 0.3s both;
}

.hero-announcement {
  margin-top: 24px;
  margin-bottom: 34px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 2px solid var(--gold);
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(200, 169, 110, 0.3);
  animation: fadeSlideUp 0.7s ease 0.38s both;
  position: relative;
  text-align: right;
  width: auto;
  align-self: stretch;
  max-width: 580px;
}

.announcement-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.announcement-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(200, 169, 110, 0.15);
  border-radius: 50%;
  color: var(--gold);
  flex-shrink: 0;
}

.hero-announcement h3 {
  color: var(--burgundy);
  font-size: clamp(1.1rem, 4vw, 1.25rem);
  font-weight: 800;
  margin: 0;
}

.hero-announcement p {
  font-size: clamp(0.9rem, 3.5vw, 1rem);
  color: var(--dark);
  font-weight: 600;
  line-height: 1.8;
  margin: 0;
}

.hero-announcement strong {
  color: var(--burgundy);
  font-size: clamp(0.95rem, 3.5vw, 1.05rem);
}

.hero-quote::before {
  content: '"';
  position: absolute;
  top: -6px;
  right: 14px;
  font-size: 3.5rem;
  color: var(--gold-light);
  font-family: serif;
  opacity: 0.4;
  line-height: 1;
  pointer-events: none;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 44px;
  animation: fadeSlideUp 0.7s ease 0.4s both;
}

/* ── HERO LOCATION ───────────────────────── */
.hero-location-side {
  animation: fadeSlideUp 0.7s ease 0.45s both;
  /* order is set in .hero-grid block above */
}

.location-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 10px 40px rgba(92, 18, 40, 0.1);
  text-align: right;
}

.location-card-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--burgundy);
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.location-clinic-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.4;
}

.location-address-short {
  font-size: 0.95rem;
  color: var(--dark2);
  margin-bottom: 12px;
}

.location-address-details {
  background: var(--ivory);
  padding: 12px;
  border-radius: 12px;
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.location-address-details a {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  color: var(--dark);
  text-decoration: none;
  transition: color 0.2s;
}

.location-address-details a:hover {
  color: var(--gold);
}

.location-map-placeholder {
  width: 100%;
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
}

/* ── COUNTDOWN ───────────────────────── */
.countdown-wrap {
  position: absolute;
  left: 5%;
  bottom: 40px;
  z-index: 4;
  text-align: center;
  animation: fadeSlideUp 0.9s ease 0.6s both;
}

.countdown-label {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  font-weight: 600;
}

.countdown {
  display: flex;
  gap: 6px;
  align-items: center;
}

.cd-unit {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  min-width: 58px;
  text-align: center;
  box-shadow: var(--shadow-gold);
}

.cd-unit span {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--burgundy);
  line-height: 1;
}

.cd-unit small {
  font-size: 0.65rem;
  color: var(--muted);
}

.cd-sep {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
}

/* ── SCARCITY BAR ────────────────────── */
.scarcity-bar {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}

.scarcity-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.scarcity-text {
  font-size: 0.9rem;
  color: var(--dark2);
  white-space: nowrap;
}

.scarcity-text strong {
  color: var(--burgundy);
}

.progress-track {
  flex: 1;
  min-width: 160px;
  height: 8px;
  background: #EEE;
  border-radius: 50px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--burgundy));
  border-radius: 50px;
  transition: width 1.8s cubic-bezier(.4, 0, .2, 1);
}

/* ── TRUST SECTION ───────────────────── */
.trust-section {
  padding: 100px 0;
  background: var(--ivory);
}

.credentials-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.cred-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  width: 85%;
}

.cred-card:nth-child(odd) {
  border-right: 4px solid var(--gold);
  align-self: flex-start;
}

.cred-card:nth-child(even) {
  border-left: 4px solid var(--gold);
  flex-direction: row-reverse;
  align-self: flex-end;
}

.cred-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
  border-color: var(--gold);
}

.cred-icon {
  width: 140px;
  height: 90px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.cred-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cred-card p {
  font-size: 1.1rem;
  color: var(--dark2);
  line-height: 1.6;
  flex: 1;
}

.cred-card strong {
  color: var(--dark);
}

/* ── SERVICES ────────────────────────── */
.services-section {
  position: relative;
  padding: 100px 0;
  z-index: 1;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(250, 247, 242, 0.75), rgba(250, 247, 242, 0.75)), url('hero_bg.webp') center/cover no-repeat;
  z-index: -2;
}

/* Soft Glow Effect */
.services-section::after {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(200, 169, 110, 0.35) 0%, transparent 65%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
  animation: pulseGlow 6s infinite alternate;
}

@keyframes pulseGlow {
  0% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(0.9);
  }

  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  width: 100%;
  margin: 48px auto 0;
  position: relative;
  z-index: 2;
}

.service-col {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(200, 169, 110, 0.3);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: inset 0 0 50px rgba(200, 169, 110, 0.15), 0 4px 20px rgba(200, 169, 110, 0.1);
  transition: all 0.4s ease;
  position: relative;
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.service-col.reverse-col {
  flex-direction: row-reverse;
}

.service-col-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-col-image {
  width: 360px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.service-col-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-col:hover {
  transform: translateY(-5px);
  box-shadow: inset 0 0 80px rgba(200, 169, 110, 0.3), 0 0 50px rgba(200, 169, 110, 0.3);
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.95);
}

.service-col-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--gold-pale);
}

.col-icon {
  font-size: 1.4rem;
}

.service-list {
  list-style: none;
  columns: 2;
  column-gap: 32px;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.96rem;
  color: var(--dark2);
  padding-right: 0;
  margin-bottom: 12px;
  break-inside: avoid;
}

.service-list li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.65rem;
  margin-top: 6px;
  flex-shrink: 0;
}

.service-list li small {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  margin-top: 2px;
}

.privacy-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: rgba(200, 169, 110, 0.08);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-top: 24px;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── BEFORE & AFTER GALLERY ──────────────── */
.gallery-section {
  padding: 100px 0;
  background: var(--ivory);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: linear-gradient(rgba(250, 247, 242, 0.5), rgba(250, 247, 242, 0.5)), url('hero_bg_left.webp') center/cover no-repeat;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  cursor: pointer;
}

.gallery-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.5s ease;
}

.gallery-item .img-after {
  opacity: 0;
  z-index: 2;
}

.gallery-item:hover .img-after {
  opacity: 1;
}

.gallery-label {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(92, 18, 40, 0.85);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  z-index: 3;
  transition: opacity 0.3s ease;
  white-space: nowrap;
  pointer-events: none;
}

.gallery-item:hover .gallery-label {
  opacity: 0;
}

/* ── TESTIMONIALS ────────────────────── */
.testimonials-section {
  position: relative;
  padding: 100px 0;
  z-index: 1;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(250, 247, 242, 0.8), rgba(250, 247, 242, 0.8)), url('hero_bg_left.webp') center/cover no-repeat;
  z-index: -1;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: var(--transition);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  right: 22px;
  font-size: 4rem;
  color: var(--gold-pale);
  font-family: serif;
  line-height: 1;
  z-index: 0;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
  border-color: var(--gold);
}

.testimonial-card.featured {
  background: linear-gradient(145deg, var(--burgundy-d) 0%, var(--burgundy) 100%);
  color: var(--white);
  border-color: var(--burgundy);
}

.testimonial-card.featured::before {
  color: rgba(255, 255, 255, 0.08);
}

.testimonial-card.featured .stars {
  color: var(--gold);
}

.testimonial-card.featured p {
  color: rgba(255, 255, 255, 0.9);
}

.testimonial-card.featured .client-name {
  color: var(--gold-light);
}

.stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testimonial-card p {
  font-size: 0.93rem;
  color: var(--dark2);
  line-height: 1.7;
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}

.client-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--burgundy);
}

/* ── FAQ ─────────────────────────────── */
.faq-section {
  padding: 100px 0;
  background: var(--ivory);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item[open] {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.faq-item summary {
  padding: 18px 24px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--dark);
  transition: var(--transition);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--gold);
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary:hover {
  color: var(--burgundy);
}

.faq-item p {
  padding: 0 24px 18px;
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.8;
}

.faq-item p strong {
  color: var(--dark);
}

/* ── BLOG ────────────────────────────── */
.blog-section {
  padding: 100px 0;
  background: var(--white);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.blog-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 22px;
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.blog-icon {
  font-size: 2rem;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-info h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.blog-info p {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 10px;
}

.blog-link {
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.03em;
}

/* ── FOOTER CTA ──────────────────────── */
.footer-cta {
  padding: 100px 0;
  background: linear-gradient(160deg, #F5EDD8 0%, var(--ivory) 100%);
}

.footer-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.footer-cta-text h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.4;
}

.footer-cta-text p {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.8;
}

.location-info {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
}

.wa-icon {
  display: flex;
  align-items: center;
}

.map-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-gold);
  height: 340px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.map-overlay-card {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 14px 18px;
  font-size: 0.85rem;
  line-height: 1.6;
  border-top: 1px solid var(--border);
}

.map-overlay-card a {
  color: var(--burgundy);
  font-weight: 700;
}

/* ── SITE FOOTER ─────────────────────── */
.site-footer {
  background: var(--dark);
  color: var(--white);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-brand {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-socials a {
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.footer-socials a:hover {
  color: var(--gold);
  transform: scale(1.1);
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ── FLOATING ACTIONS ────────────────────── */
.floating-actions {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 14px;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  pointer-events: none;
}

.floating-actions.visible {
  opacity: 1;
  transform: translateY(0);
}

.floating-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 50px;
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
  pointer-events: auto;
}

.floating-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.3);
  color: var(--white);
}

.wa-btn {
  background: #0f6c58;
  width: 52px;
  height: 52px;
  padding: 0;
}

.wa-btn span {
  padding-left: 8px;
}

.phone-btn {
  background: var(--burgundy-d);
  width: 52px;
  height: 52px;
  align-self: flex-start;
}

/* ── ANIMATIONS ──────────────────────── */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeSlideDown {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll-triggered fade-in */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ──────────────────────── */
@media (max-width: 1379px) {
  .hero-grid {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-image-side {
    width: 100%;
    order: -1;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
  }

  .hero-image-wrapper {
    max-width: 310px;
    width: 100%;
  }

  .hero-text-side {
    flex: 1;
    min-width: min(100%, 380px);
  }

  .hero-location-side {
    flex: 1;
    min-width: min(100%, 350px);
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 900px) {
  .promo-banner-inner {
    flex-direction: column;
    text-align: center;
    padding: 24px 16px;
    gap: 16px;
  }

  .promo-headline {
    justify-content: center;
  }

  .promo-close {
    position: absolute;
    top: 10px;
    left: 10px;
    margin: 0;
  }

  .mobile-menu-btn {
    display: block;
  }

  .header-btn {
    display: none;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-top: 1px solid var(--border);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: clip-path 0.4s ease;
  }

  .nav-links.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  .footer-inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .footer-credits {
    text-align: center !important;
  }

  .services-grid,
  .footer-cta-grid {
    grid-template-columns: 1fr;
  }

  .service-col {
    flex-direction: column !important;
    gap: 24px;
  }

  .service-list {
    columns: 1;
  }

  .service-col-image {
    width: 100%;
    height: 250px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .cred-card {
    width: 100%;
    flex-direction: column !important;
    align-self: stretch !important;
    text-align: center !important;
  }

  .cred-icon {
    width: 100%;
    height: 160px;
  }

  .countdown-wrap {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: 40px;
    align-self: flex-start;
  }

  .hero {
    padding: 60px 0 60px;
    min-height: auto;
  }

  .hero-grid {
    flex-direction: column;
    gap: 40px;
    text-align: center;
    padding: 0;
  }

  .hero-image-side {
    margin-right: 0;
  }

  .hero-image-wrapper {
    margin: 0 auto;
  }

  .hero-text-side {
    margin: 0 auto;
  }
}

@media (max-width: 890px) {
  .hero-text-side {
    align-items: center;
    text-align: center;
  }

  .hero-announcement,
  .hero-announcement p,
  .hero-announcement h3 {
    text-align: center;
  }

  .hero-announcement {
    align-self: center;
    margin-left: auto;
    margin-right: auto;
  }

  .announcement-header {
    justify-content: center;
    flex-direction: column;
    gap: 8px;
  }

  .hero-actions {
    justify-content: center;
  }
}

@media (max-width: 600px) {

  /* Overrides for text sizes and alignments */

  .hero-announcement {
    padding: 16px;
    margin-bottom: 24px;
  }

  .announcement-icon {
    width: 32px;
    height: 32px;
  }

  .announcement-icon svg {
    width: 18px;
    height: 18px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 85%;
    max-width: 300px;
    justify-content: center;
    padding: 10px 16px !important;
    font-size: 0.9rem !important;
  }

  .btn-lg {
    padding: 12px 20px !important;
    font-size: 0.9rem !important;
  }

  .announcement-inner {
    font-size: 0.78rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .scarcity-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .scarcity-text {
    white-space: normal;
    line-height: 1.5;
  }

  .floating-btn span {
    display: none;
  }

  .wa-btn {
    width: 56px;
    height: 56px;
    padding: 0;
  }

  .phone-btn {
    width: 56px;
    height: 56px;
  }

  .logo {
    max-height: 55px;
  }
}

@media (max-width: 380px) {
  .hero-announcement {
    width: 80%
  }

  .announcement-header {
    gap: 6px;
  }

  .announcement-icon {
    width: 24px;
    height: 24px;
  }

  .announcement-icon svg {
    width: 14px;
    height: 14px;
  }

  .hero-announcement h3 {
    font-size: 0.95rem !important;
  }

  .hero-announcement p {
    font-size: 0.85rem !important;
    line-height: 1.5;
  }

  .hero-announcement strong {
    font-size: 0.9rem !important;
  }


}

@media (min-width: 1615px) {
  .hero-image-side {
    transform: translateX(80px);
  }
}

@media (min-width: 1000px) {
  .logo-wrapper {
    margin-right: -40px;
  }
}

@media (min-width: 1400px) {
  .logo-wrapper {
    margin-right: -60px;
  }
}

@media (min-width: 1600px) {
  .logo-wrapper {
    margin-right: -130px;
  }
}

@media (min-width: 1000px) and (max-width: 1400px) {
  .hero-location-side {
    margin-top: -150px;
  }
}