/* ============================================
   ALNAJLA BEAUTY CENTER
   Main Stylesheet v1.0
   ============================================ */

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font: inherit; }
ul, ol { list-style: none; }
table { border-collapse: collapse; }

/* ---- CSS VARIABLES ---- */
:root {
  /* Colors */
  --c-bg:          #FAF7F2;
  --c-bg-alt:      #F2EDE4;
  --c-card:        #FFFFFF;
  --c-gold:        #C9A96E;
  --c-gold-light:  #E8D5B0;
  --c-gold-dark:   #A6813A;
  --c-blush:       #F0D8CF;
  --c-text:        #2C2A28;
  --c-text-2:      #7A6F65;
  --c-border:      #E8E0D5;
  --c-closed:      #C0392B;
  --c-wa:          #25D366;

  /* Fonts — LTR defaults */
  --f-head: 'Playfair Display', Georgia, serif;
  --f-body: 'DM Sans', system-ui, sans-serif;

  /* Spacing */
  --s1: 4px;  --s2: 8px;   --s3: 12px; --s4: 16px; --s5: 24px;
  --s6: 32px; --s7: 48px;  --s8: 64px; --s9: 96px;

  /* Radius */
  --r-card: 16px;
  --r-btn:  50px;
  --r-img:  12px;

  /* Shadows */
  --sh-card:       0 2px 12px rgba(44,42,40,0.06);
  --sh-card-hover: 0 8px 32px rgba(44,42,40,0.13);
  --sh-btn:        0 4px 20px rgba(201,169,110,0.35);
  --sh-wa:         0 4px 20px rgba(37,211,102,0.4);

  /* Transitions */
  --t-fast: 0.15s ease;
  --t-med:  0.25s ease;
  --t-slow: 0.45s ease;

  /* Layout */
  --header-h: 72px;
  --max-w:    1200px;
}

/* RTL font override */
[dir="rtl"] {
  --f-head: 'Amiri', 'Traditional Arabic', serif;
  --f-body: 'IBM Plex Arabic', 'Arial', sans-serif;
}


/* ============================================
   LANGUAGE SYSTEM
   ============================================ */
.ar { display: none; }
.en { display: inline; }
[dir="rtl"] .ar { display: inline; }
[dir="rtl"] .en { display: none; }

.ar-block { display: none; }
.en-block { display: block; }
[dir="rtl"] .ar-block { display: block; }
[dir="rtl"] .en-block { display: none; }


/* ============================================
   BASE & TYPOGRAPHY
   ============================================ */
body {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-bg);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--f-head);
  line-height: 1.2;
  font-weight: 700;
}


/* ============================================
   LAYOUT
   ============================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--s5);
}

.section {
  padding: var(--s8) 0;
  background: var(--c-bg);
}
.section--alt {
  background: var(--c-bg-alt);
}

/* Section header */
.section-header {
  text-align: center;
  margin-bottom: var(--s7);
}
.section-header__divider {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--c-gold);
  margin: 0 auto var(--s3);
  border-radius: 2px;
}
.section-header__title {
  font-size: clamp(26px, 5vw, 36px);
  margin-bottom: var(--s2);
}
.section-header__sub {
  font-size: 15px;
  color: var(--c-text-2);
  max-width: 480px;
  margin: 0 auto;
  font-family: var(--f-body);
  font-weight: 400;
}


/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s2);
  border-radius: var(--r-btn);
  font-family: var(--f-body);
  font-weight: 500;
  cursor: pointer;
  transition: background var(--t-fast), box-shadow var(--t-fast), transform var(--t-fast), color var(--t-fast);
  white-space: nowrap;
  text-align: center;
}
.btn svg { flex-shrink: 0; }

/* Primary */
.btn--primary {
  background: var(--c-gold);
  color: #fff;
  box-shadow: var(--sh-btn);
}
.btn--primary:hover {
  background: #b8935a;
  box-shadow: 0 6px 24px rgba(201,169,110,0.5);
  transform: translateY(-1px);
}
.btn--primary:active {
  background: #a07040;
  transform: translateY(0);
  box-shadow: var(--sh-btn);
}

/* Ghost */
.btn--ghost {
  background: transparent;
  color: var(--c-gold);
  border: 1.5px solid var(--c-gold);
}
.btn--ghost:hover {
  background: rgba(201,169,110,0.08);
}

/* Sizes */
.btn--lg { padding: 18px 40px; font-size: 17px; }
.btn--lg svg { width: 22px; height: 22px; }
.btn--md { padding: 14px 28px; font-size: 15px; }
.btn--md svg { width: 18px; height: 18px; }
.btn--sm { padding: 10px 20px; font-size: 13px; }
.btn--sm svg { width: 16px; height: 16px; }


/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  transition: background var(--t-med), box-shadow var(--t-med);
}
.header--transparent { background: transparent; }
.header--solid {
  background: var(--c-bg);
  box-shadow: 0 1px 0 var(--c-border);
}
.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
}
.header__actions {
  display: flex;
  align-items: center;
  gap: var(--s4);
}
.header__cta { display: none; }

/* Language Toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--c-border);
  border-radius: 24px;
  padding: 4px;
  gap: 2px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
}
.lang-toggle__btn {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--c-text-2);
  transition: all var(--t-fast);
  font-family: var(--f-body);
  min-height: 32px;
}
.lang-toggle__btn--active {
  background: var(--c-gold);
  color: #fff;
}


/* ============================================
   TUESDAY BANNER
   ============================================ */
.tuesday-banner {
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  z-index: 99;
  background: #FEF3E2;
  border-bottom: 1px solid #F5C842;
  padding: var(--s3) var(--s5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s3);
}
.tuesday-banner.hidden { display: none; }
.tuesday-banner__content {
  display: flex;
  align-items: center;
  gap: var(--s3);
  flex: 1;
  min-width: 0;
}
.tuesday-banner__icon { font-size: 18px; flex-shrink: 0; }
.tuesday-banner__text {
  font-size: 14px;
  font-weight: 500;
  color: #92400E;
  font-family: var(--f-body);
}
.tuesday-banner__cta {
  font-size: 13px;
  color: var(--c-gold-dark);
  font-weight: 600;
  text-decoration: underline;
  white-space: nowrap;
  flex-shrink: 0;
}
.tuesday-banner__close {
  padding: var(--s2);
  color: #92400E;
  flex-shrink: 0;
  border-radius: 50%;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
}
.tuesday-banner__close:hover { background: rgba(0,0,0,0.06); }


/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--s8);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  /* PLACEHOLDER — Replace with editorial hero photograph */
  /* Recommended: Woman in salon chair, soft warm lighting, shot from above/behind */
  background: linear-gradient(160deg, #F5EFE6 0%, #E8D5B0 35%, #D4B896 65%, #C9A96E 100%);
}
.hero__bg img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(44, 36, 28, 0) 0%,
    rgba(44, 36, 28, 0.18) 40%,
    rgba(44, 36, 28, 0.60) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  text-align: center;
  padding: 0 var(--s5);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s4);
}
.hero__eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-gold-light);
  font-family: var(--f-body);
}
[dir="rtl"] .hero__eyebrow { letter-spacing: 0; font-size: 14px; }

.hero__headline {
  font-size: clamp(30px, 7vw, 54px);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  max-width: 640px;
  text-shadow: 0 2px 20px rgba(44,36,28,0.3);
}
.hero__subtext {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  max-width: 400px;
  line-height: 1.7;
  font-family: var(--f-body);
  font-weight: 400;
}
.hero__cta {
  width: 100%;
  max-width: 340px;
  margin-top: var(--s2);
}
.hero__trust {
  display: flex;
  align-items: center;
  gap: var(--s3);
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  flex-wrap: wrap;
  justify-content: center;
  font-family: var(--f-body);
}
.hero__trust-sep { color: rgba(255,255,255,0.35); }


/* ============================================
   BRAND STORY
   ============================================ */
.story__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s7);
  align-items: center;
}
.story__image {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  /* PLACEHOLDER — Replace with salon interior / ambiance photo */
  background: linear-gradient(135deg, #EDE3D8 0%, var(--c-gold-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.story__image img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.story__image-label {
  font-size: 13px;
  color: var(--c-text-2);
  text-align: center;
  padding: var(--s5);
  font-family: var(--f-body);
  position: relative; /* sits above the absolute img */
}
.story__text {
  display: flex;
  flex-direction: column;
  gap: var(--s5);
}
.story__eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-gold);
  font-weight: 600;
  font-family: var(--f-body);
}
[dir="rtl"] .story__eyebrow { letter-spacing: 0; font-size: 13px; }

.story__title {
  font-size: clamp(24px, 4vw, 36px);
  line-height: 1.25;
}
.story__body {
  display: flex;
  flex-direction: column;
  gap: var(--s4);
}
.story__body p {
  color: var(--c-text-2);
  line-height: 1.8;
  font-family: var(--f-body);
  font-weight: 400;
}
.story__quote {
  border-inline-start: 3px solid var(--c-gold);
  padding-inline-start: var(--s4);
  padding-block: var(--s2);
}
.story__quote p {
  font-family: var(--f-head);
  font-style: italic;
  font-size: 18px;
  color: var(--c-text) !important;
  line-height: 1.6;
}
.story__signature {
  font-size: 14px;
  color: var(--c-gold-dark);
  font-weight: 500;
  font-family: var(--f-body);
}


/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s4);
}
.why-card {
  background: var(--c-card);
  border-radius: 20px;
  padding: var(--s6) var(--s5);
  text-align: center;
  box-shadow: var(--sh-card);
  transition: box-shadow var(--t-med), transform var(--t-med);
}
.why-card:hover {
  box-shadow: var(--sh-card-hover);
  transform: translateY(-3px);
}
.why-card__icon {
  width: 56px; height: 56px;
  margin: 0 auto var(--s4);
  background: rgba(201,169,110,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-gold);
}
.why-card__icon svg { width: 26px; height: 26px; }
.why-card__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: var(--s2);
  line-height: 1.35;
  font-family: var(--f-head);
}
.why-card__body {
  font-size: 13px;
  color: var(--c-text-2);
  line-height: 1.7;
  font-family: var(--f-body);
}


/* ============================================
   SERVICES
   ============================================ */
.services-tabs-wrapper {
  position: sticky;
  top: var(--header-h);
  z-index: 50;
  background: var(--c-bg-alt);
  border-bottom: 1px solid var(--c-border);
  padding: var(--s3) 0;
}
.services-tabs {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0 var(--s5);
  gap: 0;
}
.services-tabs::-webkit-scrollbar { display: none; }

.services-tab {
  flex-shrink: 0;
  padding: var(--s3) var(--s4);
  font-size: 14px;
  font-weight: 500;
  color: var(--c-text-2);
  border-bottom: 3px solid transparent;
  transition: color var(--t-fast), border-color var(--t-fast);
  white-space: nowrap;
  min-height: 44px;
  display: flex;
  align-items: center;
  font-family: var(--f-body);
}
.services-tab:hover { color: var(--c-text); }
.services-tab--active {
  color: var(--c-gold-dark);
  border-bottom-color: var(--c-gold);
  font-weight: 600;
}

.services-panel { display: none; padding-top: var(--s6); padding-bottom: var(--s2); }
.services-panel--active { display: block; }

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s4);
}

.service-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-card);
  padding: var(--s5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s4);
  box-shadow: var(--sh-card);
  transition: box-shadow var(--t-med), transform var(--t-fast);
}
.service-card:hover {
  box-shadow: var(--sh-card-hover);
  transform: translateY(-1px);
}
.service-card__info { flex: 1; min-width: 0; }
.service-card__name {
  font-size: 15px;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 3px;
  font-family: var(--f-body);
}
.service-card__name-sub {
  font-size: 12px;
  color: var(--c-text-2);
  font-family: var(--f-body);
  margin-bottom: var(--s2);
}
.service-card__price {
  font-size: 17px;
  font-weight: 600;
  color: var(--c-gold-dark);
  font-family: var(--f-body);
}
.service-card__price-prefix {
  font-size: 11px;
  font-weight: 400;
  color: var(--c-text-2);
  display: block;
  margin-bottom: 1px;
}
.service-card__cta { flex-shrink: 0; }

/* Membership cards */
.membership-card {
  flex-direction: column;
  align-items: flex-start;
  gap: var(--s3);
  position: relative;
  border-top: 3px solid var(--c-gold);
}
.membership-card__badge {
  display: inline-block;
  background: var(--c-gold);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 3px 10px;
  border-radius: 20px;
}
.membership-card__perks {
  list-style: none;
  padding: 0;
  margin: var(--s2) 0;
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}
.membership-card__perks li {
  font-size: 14px;
  color: var(--c-text-2);
  line-height: 1.4;
}
.membership-card__per {
  font-size: 13px;
  font-weight: 400;
  color: var(--c-text-2);
}
.membership-card .service-card__cta {
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* Undecided CTA block */
.services-undecided {
  margin-top: var(--s7);
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: 20px;
  padding: var(--s7) var(--s5);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s4);
  box-shadow: var(--sh-card);
}
.services-undecided__title {
  font-size: clamp(20px, 3vw, 26px);
}
.services-undecided__sub {
  font-size: 15px;
  color: var(--c-text-2);
  max-width: 400px;
  font-family: var(--f-body);
}


/* ============================================
   GALLERY
   ============================================ */
.gallery-grid {
  column-count: 2;
  column-gap: var(--s3);
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: var(--s3);
  border-radius: var(--r-img);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: linear-gradient(135deg, #EDE3D8 0%, var(--c-gold-light) 100%);
}
.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-placeholder {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--s5) var(--s4);
  text-align: center;
  font-size: 12px;
  color: var(--c-text-2);
  line-height: 1.6;
  font-family: var(--f-body);
}
.gallery-placeholder strong {
  display: block;
  font-size: 13px;
  color: var(--c-gold-dark);
  margin-bottom: 4px;
  font-weight: 600;
}
.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(44,36,28,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--t-med);
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__overlay svg { color: #fff; width: 32px; height: 32px; }

.gallery-cta {
  text-align: center;
  margin-top: var(--s6);
}
.gallery-cta a {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  color: var(--c-gold-dark);
  font-weight: 600;
  font-size: 15px;
  font-family: var(--f-body);
}
.gallery-cta a:hover { text-decoration: underline; }
.gallery-cta svg { width: 20px; height: 20px; }


/* ============================================
   SOCIAL PROOF
   ============================================ */
.google-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s4);
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-card);
  padding: var(--s5) var(--s6);
  max-width: 400px;
  margin: 0 auto var(--s7);
  box-shadow: var(--sh-card);
}
.google-badge__stars { display: flex; gap: 3px; }
.google-badge__stars svg { width: 20px; height: 20px; }
.google-badge__rating {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  color: var(--c-text);
  font-family: var(--f-body);
}
.google-badge__count {
  font-size: 13px;
  color: var(--c-text-2);
  font-family: var(--f-body);
  margin-top: 2px;
}
.google-badge__link {
  font-size: 13px;
  color: var(--c-gold-dark);
  text-decoration: underline;
  display: block;
  margin-top: 3px;
  font-family: var(--f-body);
}

/* Testimonials */
.testimonials-track {
  display: flex;
  gap: var(--s4);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: var(--s3);
}
.testimonials-track::-webkit-scrollbar { display: none; }

.testimonial-card {
  flex: 0 0 calc(100% - var(--s7));
  max-width: 100%;
  scroll-snap-align: start;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-card);
  padding: var(--s6) var(--s5);
  box-shadow: var(--sh-card);
}
.testimonial-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--s4);
}
.testimonial-card__stars svg { width: 16px; height: 16px; }
.testimonial-card__quote {
  font-family: var(--f-head);
  font-style: italic;
  font-size: 16px;
  line-height: 1.75;
  color: var(--c-text);
  margin-bottom: var(--s5);
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--s3);
}
.testimonial-card__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--c-gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--c-gold-dark);
  flex-shrink: 0;
  font-family: var(--f-body);
}
.testimonial-card__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--c-text);
  font-family: var(--f-body);
}
.testimonial-card__meta {
  font-size: 12px;
  color: var(--c-text-2);
  margin-top: 2px;
  font-family: var(--f-body);
}

.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: var(--s2);
  margin-top: var(--s5);
}
.testimonials-dots__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--c-border);
  transition: background var(--t-fast), transform var(--t-fast);
  cursor: pointer;
  border: none;
}
.testimonials-dots__dot--active {
  background: var(--c-gold);
  transform: scale(1.25);
}


/* ============================================
   LOCATION & CONTACT
   ============================================ */
.location__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s6);
}
.location__map {
  border-radius: var(--r-card);
  overflow: hidden;
  height: 260px;
  box-shadow: var(--sh-card);
}
.location__map iframe {
  width: 100%; height: 100%;
  border: none;
  display: block;
}
.location__details { display: flex; flex-direction: column; gap: var(--s6); }
.location__block-title {
  display: flex;
  align-items: center;
  gap: var(--s2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--c-gold-dark);
  margin-bottom: var(--s3);
  font-family: var(--f-body);
}
[dir="rtl"] .location__block-title { letter-spacing: 0; font-size: 13px; }
.location__block-title svg { width: 16px; height: 16px; flex-shrink: 0; }

.location__address {
  font-size: 15px;
  line-height: 1.7;
  color: var(--c-text);
  font-family: var(--f-body);
}

/* Hours table */
.hours-table { width: 100%; }
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--s2) 0;
  border-bottom: 1px solid var(--c-border);
  font-size: 14px;
  font-family: var(--f-body);
}
.hours-row:last-child { border-bottom: none; }
.hours-row__day { color: var(--c-text-2); }
.hours-row__time { font-weight: 500; color: var(--c-text); }
.hours-row--closed .hours-row__day { font-weight: 600; color: var(--c-text); }
.hours-row--closed .hours-row__time {
  color: var(--c-closed);
  font-weight: 700;
}

/* Contact */
.location__contact { display: flex; flex-direction: column; gap: var(--s3); }
.location__contact-link {
  display: inline-flex;
  align-items: center;
  gap: var(--s3);
  font-size: 15px;
  color: var(--c-text);
  font-weight: 500;
  font-family: var(--f-body);
  transition: color var(--t-fast);
}
.location__contact-link:hover { color: var(--c-gold-dark); }
.location__contact-link svg { width: 18px; height: 18px; color: var(--c-gold); flex-shrink: 0; }

.location__social { display: flex; gap: var(--s3); margin-top: var(--s2); }
.location__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--c-bg-alt);
  color: var(--c-gold-dark);
  border: 1px solid var(--c-border);
  transition: background var(--t-fast), transform var(--t-fast);
}
.location__social a:hover {
  background: var(--c-gold-light);
  transform: translateY(-2px);
}
.location__social svg { width: 20px; height: 20px; }


/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  background: linear-gradient(155deg, #F5EFE6 0%, #EDE0CB 50%, #D9C09A 100%);
  padding: var(--s9) 0;
}
.final-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s5);
  max-width: 560px;
  margin: 0 auto;
  padding: 0 var(--s5);
  text-align: center;
}
.final-cta__headline {
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1.2;
}
.final-cta__sub {
  font-size: 16px;
  color: var(--c-text-2);
  line-height: 1.7;
  font-family: var(--f-body);
}
.final-cta__btn { width: 100%; max-width: 360px; }
.final-cta__checks {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s2);
}
.final-cta__check {
  display: flex;
  align-items: center;
  gap: var(--s2);
  font-size: 14px;
  color: var(--c-text-2);
  font-family: var(--f-body);
}
.final-cta__check svg {
  width: 16px; height: 16px;
  color: var(--c-gold-dark);
  flex-shrink: 0;
}
.final-cta__micro {
  font-size: 13px;
  color: var(--c-text-2);
  font-family: var(--f-body);
  line-height: 1.6;
}


/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--c-text);
  color: rgba(255,255,255,0.55);
  padding: var(--s7) 0;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s4);
  text-align: center;
  font-size: 13px;
  font-family: var(--f-body);
}
.footer__logo img {
  height: 40px;
  filter: brightness(0) invert(1);
  opacity: 0.65;
}
.footer__links {
  display: flex;
  gap: var(--s5);
  flex-wrap: wrap;
  justify-content: center;
}
.footer__links a { color: rgba(255,255,255,0.7); transition: color var(--t-fast); }
.footer__links a:hover { color: var(--c-gold-light); }


/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  inset-inline-end: 24px;
  z-index: 200;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--c-wa);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sh-wa);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }

/* Pulse animation */
@keyframes waPulse {
  0%   { transform: scale(1); box-shadow: var(--sh-wa); }
  50%  { transform: scale(1.18); box-shadow: 0 6px 28px rgba(37,211,102,0.6); }
  100% { transform: scale(1); box-shadow: var(--sh-wa); }
}
.whatsapp-float.pulse {
  animation: waPulse 0.5s ease 3;
}


/* ============================================
   GALLERY LIGHTBOX
   ============================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-med);
  padding: var(--s5);
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.lightbox__img {
  max-width: 100%;
  max-height: calc(100vh - 96px);
  border-radius: var(--r-img);
  object-fit: contain;
}
.lightbox__close {
  position: absolute;
  top: 16px;
  inset-inline-end: 16px;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  backdrop-filter: blur(4px);
  transition: background var(--t-fast);
}
.lightbox__close:hover { background: rgba(255,255,255,0.25); }
.lightbox__close svg { width: 20px; height: 20px; }


/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity  0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================
   RESPONSIVE — TABLET (768px+)
   ============================================ */
@media (min-width: 768px) {

  .header__cta { display: inline-flex; }

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

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

  .gallery-grid { column-count: 3; }

  .testimonial-card {
    flex: 0 0 calc(50% - var(--s2));
    max-width: calc(50% - var(--s2));
  }

  .location__inner { grid-template-columns: 1fr 1fr; }
  .location__map { height: 100%; min-height: 320px; }

  .final-cta__checks { flex-direction: row; gap: var(--s6); }
}


/* ============================================
   RESPONSIVE — DESKTOP (1024px+)
   ============================================ */
@media (min-width: 1024px) {

  .section { padding: var(--s9) 0; }

  .why-grid { grid-template-columns: repeat(4, 1fr); }

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

  /* On desktop, disable carousel scroll — show as row */
  .testimonials-track { overflow: visible; flex-wrap: nowrap; }
  .testimonial-card {
    flex: 1 1 0;
    max-width: none;
  }
  .testimonials-dots { display: none; }

  .hero__content {
    padding-bottom: var(--s5);
  }
}


/* ============================================
   ACCESSIBILITY
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .fade-up { opacity: 1; transform: none; }
}

:focus-visible {
  outline: 3px solid var(--c-gold);
  outline-offset: 2px;
  border-radius: 4px;
}
