/* =========================================================
   GLAMOUR HAIR BOUTIQUE — Universal Design System
   ========================================================= */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700;800;900&display=swap');

/* --- CSS Custom Properties --- */
:root {
  --bg-primary:       #0c0c0c;
  --bg-secondary:     #111111;
  --bg-card:          #161616;
  --bg-card-hover:    #1e1e1e;
  --gold-1:           #7c5632;
  --gold-2:           #be9561;
  --gold-3:           #d4af70;
  --gold-light:       #e8c97e;
  --text-primary:     #ffffff;
  --text-secondary:   #b0b0b0;
  --text-muted:       #6a6a6a;
  --border-color:     rgba(190, 149, 97, 0.2);
  --border-hover:     rgba(190, 149, 97, 0.6);
  --gold-gradient:    linear-gradient(135deg, #7c5632 0%, #be9561 45%, #d4af70 70%, #7c5632 100%);
  --gold-gradient-h:  linear-gradient(90deg, #7c5632 0%, #be9561 50%, #7c5632 100%);
  --glow-gold:        0 0 30px rgba(190, 149, 97, 0.3);
  --glow-gold-lg:     0 0 60px rgba(190, 149, 97, 0.2);
  --shadow-card:      0 4px 40px rgba(0,0,0,0.6);
  --shadow-btn:       0 8px 30px rgba(124, 86, 50, 0.4);
  --radius-sm:        8px;
  --radius-md:        16px;
  --radius-lg:        24px;
  --radius-xl:        40px;
  --radius-full:      9999px;
  --transition:       all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font:             'Rubik', sans-serif;
  --base-font-size:   16px;
  --section-gap:      100px;
  --container-max:    1200px;
  --container-pad:    clamp(20px, 5vw, 60px);
}

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

html {
  font-size: var(--base-font-size);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: var(--font); border: none; background: none; }

/* --- High Contrast Mode --- */
body.high-contrast {
  --bg-primary:    #000000;
  --bg-secondary:  #050505;
  --bg-card:       #0a0a0a;
  --text-primary:  #ffffff;
  --text-secondary:#eeeeee;
  --gold-2:        #ffd700;
  --gold-3:        #ffd700;
  --gold-light:    #ffef80;
  --border-color:  rgba(255, 215, 0, 0.4);
  filter: contrast(1.15);
}

/* =========================================================
   TYPOGRAPHY
   ========================================================= */
.gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h1, h2, h3, h4, h5 { font-weight: 700; line-height: 1.2; }

.section-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 1rem;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 300;
  max-width: 650px;
  margin: 0 auto 3.5rem;
  line-height: 1.8;
}

.gold-line {
  width: 80px;
  height: 2px;
  background: var(--gold-gradient-h);
  margin: 1.2rem auto 2.5rem;
  border-radius: var(--radius-full);
}

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

section {
  padding: var(--section-gap) 0;
}

/* =========================================================
   NAVIGATION
   ========================================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
  backdrop-filter: blur(0);
}

.navbar.scrolled {
  background: rgba(12, 12, 12, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.navbar-logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar-logo span {
  display: block;
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-2);
  -webkit-text-fill-color: var(--gold-2);
}

.navbar-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--gold-gradient);
  color: #0c0c0c;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--radius-full);
  transition: var(--transition);
  box-shadow: var(--shadow-btn);
}

.navbar-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(124, 86, 50, 0.6);
}

/* =========================================================
   HERO SECTION
   ========================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg picture,
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(12, 12, 12, 0.82) 0%,
    rgba(12, 12, 12, 0.55) 50%,
    rgba(12, 12, 12, 0.75) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px var(--container-pad) 80px;
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  background: rgba(190, 149, 97, 0.08);
  animation: fadeSlideUp 0.8s ease both;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-2);
  animation: pulse 2s infinite;
}

.hero h1 {
  font-size: clamp(2.8rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1.2rem;
  animation: fadeSlideUp 0.8s 0.15s ease both;
}

.hero h2 {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  animation: fadeSlideUp 0.8s 0.3s ease both;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  animation: fadeSlideUp 0.8s 0.45s ease both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--gold-gradient);
  color: #0c0c0c;
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-full);
  transition: var(--transition);
  box-shadow: var(--shadow-btn);
  letter-spacing: 0.03em;
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.3s ease;
  border-radius: inherit;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 50px rgba(124, 86, 50, 0.6);
}

.btn-primary:hover::after {
  background: rgba(255,255,255,0.12);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  background: transparent;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 1rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-hover);
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(190, 149, 97, 0.12);
  border-color: var(--gold-2);
  transform: translateY(-2px);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.6;
  animation: fadeIn 1.5s 1.2s ease both;
}

.hero-scroll-hint span {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-2);
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--gold-2);
  border-bottom: 2px solid var(--gold-2);
  transform: rotate(45deg);
  animation: scrollBounce 1.6s infinite;
}

/* =========================================================
   URGENCY BANNER
   ========================================================= */
.urgency-banner {
  background: var(--gold-gradient);
  padding: 14px var(--container-pad);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.urgency-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  animation: shimmer 2.5s infinite;
}

.urgency-banner p {
  font-size: clamp(0.85rem, 2.5vw, 1.05rem);
  font-weight: 700;
  color: #0c0c0c;
  letter-spacing: 0.04em;
  position: relative;
}

/* =========================================================
   TRUST BADGES
   ========================================================= */
.trust-section {
  padding: 40px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background: var(--bg-secondary);
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-badge-item img {
  height: 36px;
  width: auto;
  opacity: 0.85;
  filter: grayscale(0.2);
  transition: var(--transition);
}

.trust-badge-item:hover img {
  opacity: 1;
  filter: none;
}

.trust-stat {
  text-align: center;
}

.trust-stat-num {
  font-size: 2rem;
  font-weight: 800;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.trust-stat-label {
  font-size: 0.78rem;
  color: var(--text-secondary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 4px;
}

.trust-divider {
  width: 1px;
  height: 50px;
  background: var(--border-color);
}

/* =========================================================
   SERVICES SECTION
   ========================================================= */
.services-section {
  background: var(--bg-primary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-gradient);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 0;
  border-radius: inherit;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), var(--glow-gold);
}

.service-card:hover::before {
  opacity: 0.04;
}

.service-card > * { position: relative; z-index: 1; }

.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(190, 149, 97, 0.1);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.5rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: rgba(190, 149, 97, 0.2);
  border-color: var(--gold-2);
  box-shadow: 0 0 20px rgba(190,149,97,0.25);
}

.service-name {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--text-primary);
}

.service-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 1.2rem;
  line-height: 1.65;
}

.service-price {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: rgba(190, 149, 97, 0.1);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-bonus {
  display: block;
  font-size: 0.75rem;
  color: var(--gold-2);
  margin-top: 6px;
  font-weight: 500;
}

/* =========================================================
   ATMOSPHERE / ABOUT SECTION
   ========================================================= */
.about-section {
  background: var(--bg-secondary);
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-grid.reverse { direction: rtl; }
.about-grid.reverse .about-text { direction: ltr; }
.about-grid.reverse .about-image { direction: ltr; }

.about-image {
  position: relative;
}

.about-image-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.about-image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px var(--border-color);
  pointer-events: none;
  z-index: 2;
}

.about-image-frame img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-image-frame:hover img {
  transform: scale(1.03);
}

.about-image-accent {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 160px;
  height: 160px;
  border: 2px solid var(--border-hover);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about-image-accent-2 {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 80px;
  height: 80px;
  background: rgba(190,149,97,0.08);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.about-text .section-title { text-align: start; }
.about-text .gold-line { margin: 1.2rem 0 2rem; }
.about-text .section-subtitle { text-align: start; margin: 0 0 2rem; }

.about-text p {
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 1.4rem;
  font-size: 1.05rem;
}

.about-highlight {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 22px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  transition: var(--transition);
}

.about-highlight:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
}

.about-highlight-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-highlight-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.about-highlight-text span {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* =========================================================
   BEFORE/AFTER GALLERY
   ========================================================= */
.gallery-section {
  background: var(--bg-primary);
}

.ba-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.ba-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.ba-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), var(--glow-gold);
}

.ba-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}

.ba-images img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}

.ba-card:hover .ba-images img {
  transform: scale(1.04);
}

.ba-divider {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  z-index: 3;
}

.ba-divider-line {
  width: 2px;
  height: 100%;
  background: rgba(255,255,255,0.3);
  position: absolute;
}

.ba-arrow {
  width: 36px;
  height: 36px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #0c0c0c;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(124,86,50,0.5);
  z-index: 4;
  flex-shrink: 0;
}

.ba-labels {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.ba-label {
  padding: 12px 16px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
}

.ba-label.before {
  color: var(--text-muted);
  border-right: 1px solid var(--border-color);
  border-top: 1px solid var(--border-color);
}

.ba-label.after {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  border-top: 1px solid var(--border-color);
}

/* =========================================================
   YOUTUBE SHORTS SLIDER
   ========================================================= */
.shorts-section {
  background: var(--bg-secondary);
  overflow: hidden;
}

.shorts-slider-wrapper {
  position: relative;
  overflow: hidden;
}

.shorts-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 10px 4px 20px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-1) transparent;
}

.shorts-track::-webkit-scrollbar {
  height: 4px;
}

.shorts-track::-webkit-scrollbar-track { background: transparent; }

.shorts-track::-webkit-scrollbar-thumb {
  background: var(--gold-gradient);
  border-radius: 2px;
}

.short-item {
  flex-shrink: 0;
  width: 220px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  aspect-ratio: 9/16;
  scroll-snap-align: start;
  position: relative;
  transition: var(--transition);
}

.short-item:hover {
  border-color: var(--border-hover);
  transform: scale(1.02);
  box-shadow: var(--glow-gold);
}

.short-item iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.short-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--bg-card);
  cursor: pointer;
}

.short-placeholder-icon {
  width: 56px;
  height: 56px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: var(--glow-gold);
}

.short-placeholder-text {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-align: center;
  padding: 0 12px;
}

.shorts-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.shorts-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  color: var(--text-primary);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.shorts-nav-btn:hover {
  background: var(--gold-gradient);
  color: #0c0c0c;
  border-color: transparent;
  box-shadow: var(--shadow-btn);
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials-section {
  background: var(--bg-primary);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: var(--transition);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 5rem;
  line-height: 1;
  color: rgba(190,149,97,0.12);
  font-family: Georgia, serif;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  box-shadow: 0 16px 50px rgba(0,0,0,0.4), var(--glow-gold);
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 1rem;
}

.star {
  color: var(--gold-2);
  font-size: 1.1rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.2rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: #0c0c0c;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.95rem;
}

.testimonial-role {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* =========================================================
   MASTER / ABOUT STYLIST
   ========================================================= */
.master-section {
  background: var(--bg-secondary);
  overflow: hidden;
}

/* =========================================================
   CTA BANNER SECTION
   ========================================================= */
.cta-section {
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(190,149,97,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-inner h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 1rem;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-inner p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.cta-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 1.5rem;
  font-size: 1.3rem;
  font-weight: 700;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: var(--transition);
}

.cta-phone-link:hover {
  filter: brightness(1.2);
}

/* =========================================================
   FOOTER
   ========================================================= */
footer {
  background: #080808;
  border-top: 1px solid var(--border-color);
  padding: 60px var(--container-pad) 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-brand .navbar-logo {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.8;
  max-width: 300px;
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 1.2rem;
}

.footer-col ul li {
  margin-bottom: 0.8rem;
}

.footer-col ul li a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--gold-2);
}

.footer-info-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 1rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer-info-icon {
  color: var(--gold-2);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.footer-legal-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal-links a {
  color: var(--text-muted);
  font-size: 0.8rem;
  transition: var(--transition);
}

.footer-legal-links a:hover {
  color: var(--gold-2);
}

/* =========================================================
   FLOATING WHATSAPP BUTTON
   ========================================================= */
.fab-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 990;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.45);
  transition: var(--transition);
  cursor: pointer;
  border: none;
  animation: fabPulse 3s infinite;
}

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

.fab-whatsapp svg {
  width: 30px;
  height: 30px;
  fill: #ffffff;
}

/* =========================================================
   COOKIE BANNER
   ========================================================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: rgba(18,18,18,0.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-color);
  padding: 20px var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  flex: 1;
  min-width: 200px;
  line-height: 1.6;
}

.cookie-banner p a {
  color: var(--gold-2);
  text-decoration: underline;
}

.cookie-btn {
  padding: 10px 28px;
  background: var(--gold-gradient);
  color: #0c0c0c;
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: var(--radius-full);
  flex-shrink: 0;
  cursor: pointer;
  border: none;
  font-family: var(--font);
  transition: var(--transition);
}

.cookie-btn:hover {
  transform: scale(1.04);
  box-shadow: var(--shadow-btn);
}

/* =========================================================
   ACCESSIBILITY WIDGET
   ========================================================= */
.a11y-trigger {
  position: fixed;
  bottom: 28px;
  left: 28px;
  right: auto;
  z-index: 990;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.3rem;
  transition: var(--transition);
  color: var(--text-secondary);
  backdrop-filter: blur(10px);
}

.a11y-trigger:hover {
  border-color: var(--gold-2);
  color: var(--gold-2);
  box-shadow: var(--glow-gold);
}

.a11y-modal {
  position: fixed;
  bottom: 92px;
  left: 24px;
  right: auto;
  z-index: 991;
  width: 240px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: 0 12px 50px rgba(0,0,0,0.6);
  backdrop-filter: blur(20px);
  display: none;
  animation: fadeInScale 0.25s ease both;
}

.a11y-modal.open { display: block; }

.a11y-modal-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 14px;
}

.a11y-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 14px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 0.85rem;
  font-family: var(--font);
  margin-bottom: 8px;
  cursor: pointer;
  transition: var(--transition);
}

.a11y-btn:hover {
  border-color: var(--gold-2);
  background: rgba(190,149,97,0.1);
}

.a11y-btn-icon { font-size: 1rem; }

/* =========================================================
   LEGAL PAGES (Shell Styles)
   ========================================================= */
.legal-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.legal-hero {
  padding: 140px var(--container-pad) 60px;
  text-align: center;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
}

.legal-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.8rem;
}

.legal-hero p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.legal-content {
  flex: 1;
  padding: var(--section-gap) var(--container-pad);
  max-width: 860px;
  margin: 0 auto;
  width: 100%;
}

.legal-content h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-2);
  margin: 2.5rem 0 0.8rem;
}

.legal-content p,
.legal-content li {
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
}

.legal-content ul { padding-inline-start: 1.5rem; }
.legal-content ul li { list-style: disc; }
.legal-content a { color: var(--gold-2); text-decoration: underline; }

/* =========================================================
   ANIMATIONS
   ========================================================= */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.92) translateY(10px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%       { transform: rotate(45deg) translateY(8px); }
}

@keyframes shimmer {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

@keyframes fabPulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(37,211,102,0.45); }
  50%       { box-shadow: 0 4px 40px rgba(37,211,102,0.75), 0 0 0 8px rgba(37,211,102,0.1); }
}

/* Scroll-triggered reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* =========================================================
   RESPONSIVE — MOBILE FIRST
   ========================================================= */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-grid.reverse { direction: ltr; }
  .about-image-frame img { height: 340px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 640px) {
  :root { --section-gap: 70px; }
  .hero-cta-group { flex-direction: column; align-items: flex-start; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .trust-divider { display: none; }
  .ba-images img { height: 180px; }
  .short-item { width: 170px; }
  .navbar-cta { display: none; }
  .fab-whatsapp { bottom: 20px; right: 16px; }
  .a11y-trigger { bottom: 20px; left: 16px; right: auto; }
  .a11y-modal { left: 16px; right: auto; width: 220px; }
}

/* RTL specific */
[dir="rtl"] .about-image-accent { left: auto; right: -20px; }
[dir="rtl"] .about-image-accent-2 { right: auto; left: -15px; }
[dir="rtl"] .footer-brand p { max-width: none; }

/* =========================================================
   Focus styles for keyboard navigation
   ========================================================= */
:focus-visible {
  outline: 2px solid var(--gold-2);
  outline-offset: 3px;
  border-radius: 4px;
}
