/* ===================================================
   Maria Beauty Salon — style.css
   Palette: blush #f8c8d4 | rose #b5838d | gold #c9a96e
            cream #fdf6f0 | plum #3b1f2b | dark #1a0f15
=================================================== */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blush:   #f8c8d4;
  --rose:    #b5838d;
  --gold:    #c9a96e;
  --gold-lt: #e8d5a3;
  --cream:   #fdf6f0;
  --warm:    #f5ede6;
  --plum:    #3b1f2b;
  --dark:    #1a0f15;
  --white:   #ffffff;
  --text:    #4a3040;
  --muted:   #8a6878;
  --radius:  14px;
  --shadow:  0 8px 40px rgba(58,31,43,.12);
  --trans:   .35s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Cairo', sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; }

.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: 'Cairo', sans-serif; line-height: 1.4; }
h1 { font-size: clamp(2.6rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.3rem; }

em { font-style: italic; color: var(--gold); }

.eyebrow {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}
.section-header h2 { color: var(--plum); margin: .4rem 0 1rem; }
.section-sub { color: var(--muted); line-height: 1.7; }
.section-header.light h2    { color: var(--white); }
.section-header.light .eyebrow { color: var(--gold-lt); }
.section-header.light .section-sub { color: rgba(255,255,255,.75); }

/* ---------- Buttons ---------- */
.btn-primary, .btn-outline, .btn-nav {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .04em;
  transition: var(--trans);
}

.btn-primary {
  background: linear-gradient(135deg, var(--rose), var(--plum));
  color: var(--white);
  box-shadow: 0 6px 24px rgba(181,131,141,.45);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(181,131,141,.55);
}

.btn-outline {
  border: 2px solid rgba(255,255,255,.6);
  color: var(--white);
  backdrop-filter: blur(6px);
}
.btn-outline:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
  transform: translateY(-3px);
}

.btn-nav {
  background: var(--rose);
  color: var(--white) !important;
  padding: .55rem 1.4rem;
  font-size: .85rem;
}
.btn-nav:hover { background: var(--plum); transform: translateY(-2px); }

.full { width: 100%; justify-content: center; }

/* ===================================================
   NAVBAR
=================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: var(--trans);
}

.navbar.scrolled {
  background: rgba(253,246,240,.96);
  backdrop-filter: blur(12px);
  padding: .8rem 0;
  box-shadow: 0 2px 20px rgba(58,31,43,.08);
}
.navbar.scrolled .logo     { color: var(--plum); }
.navbar.scrolled .logo em  { color: var(--rose); }

.nav-container {
  width: min(1200px, 92%);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Cairo', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--trans);
  line-height: 1.1;
}
.logo em {
  font-style: italic;
  font-size: .65em;
  color: var(--gold);
  display: block;
  font-weight: 400;
  letter-spacing: .04em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.9);
  position: relative;
  transition: color var(--trans);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: width var(--trans);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.navbar.scrolled .nav-links a { color: var(--text); }
.navbar.scrolled .nav-links a:hover { color: var(--rose); }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
}
.burger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--trans);
}
.navbar.scrolled .burger span { background: var(--plum); }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================================================
   HERO
=================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;

  /* Hero background image with overlay */
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(248,200,212,.25) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(201,169,110,.15) 0%, transparent 55%),
    linear-gradient(145deg, rgba(26,15,21,.7) 0%, rgba(59,31,43,.65) 45%, rgba(107,58,80,.5) 80%, rgba(138,90,106,.45) 100%),
    url('f241e896-65c0-42ce-adbd-d8c3b50653bf.jpg') center/cover no-repeat;
}

/* Decorative fabric-texture overlay via SVG */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Ccircle cx='60' cy='60' r='55' fill='none' stroke='rgba(255,255,255,.025)' stroke-width='1'/%3E%3Ccircle cx='60' cy='60' r='40' fill='none' stroke='rgba(255,255,255,.02)' stroke-width='1'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* Gold orb top-right */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-overlay::before {
  content: '';
  position: absolute;
  width: 650px; height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,.18) 0%, transparent 70%);
  top: -180px; right: -120px;
}
/* Blush orb bottom-left */
.hero-overlay::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(248,200,212,.14) 0%, transparent 70%);
  bottom: -100px; left: -80px;
}

/* Decorative line ring */
.hero::after {
  content: '';
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.07);
  bottom: 60px; right: 8%;
  pointer-events: none;
  z-index: 0;
}

/* Scissors / sparkle decorative element */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  animation: fadeUp .9s ease both;
}

.hero-eyebrow {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 36px; height: 1px;
  background: var(--gold-lt);
  opacity: .7;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 30px rgba(0,0,0,.4);
}

.hero-sub {
  color: rgba(255,255,255,.75);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2.2rem;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Floating badge */
.hero-badge {
  position: absolute;
  bottom: 12%; right: 8%;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 1.2rem 1.6rem;
  color: var(--white);
  z-index: 2;
  animation: fadeUp 1.1s .3s ease both;
}
.hero-badge .badge-num {
  font-family: 'Cairo', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-lt);
  display: block;
  line-height: 1;
}
.hero-badge .badge-txt {
  font-size: .78rem;
  opacity: .8;
  letter-spacing: .04em;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
}
.hero-scroll::before {
  content: 'Scroll';
  font-size: .65rem;
  letter-spacing: .15em;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
}
.hero-scroll span {
  display: block;
  width: 22px; height: 36px;
  border: 1.5px solid rgba(255,255,255,.35);
  border-radius: 11px;
  position: relative;
}
.hero-scroll span::before {
  content: '';
  position: absolute;
  top: 5px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 7px;
  background: rgba(255,255,255,.7);
  border-radius: 2px;
  animation: scrollBob 1.8s ease-in-out infinite;
}

/* ===================================================
   STATS RIBBON
=================================================== */
.stats {
  background: linear-gradient(135deg, var(--plum) 0%, #5c2e45 100%);
  padding: 2.5rem 0;
}

.stats-grid {
  width: min(1200px, 92%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
  padding: 1rem;
  position: relative;
}
.stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%;
  height: 60%; width: 1px;
  background: rgba(255,255,255,.15);
}

.stat-num {
  font-family: 'Cairo', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--gold-lt);
  line-height: 1;
}
.stat-label {
  font-size: .8rem;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  letter-spacing: .05em;
}

/* ===================================================
   SERVICES
=================================================== */
.services {
  padding: 6rem 0;
  background: var(--cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem;
  position: relative;
  overflow: hidden;
  transition: var(--trans);
  border: 1px solid rgba(181,131,141,.12);
  cursor: pointer;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blush), var(--rose));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--trans);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-card:hover::before { transform: scaleX(1); }

.service-card.featured {
  background: linear-gradient(145deg, var(--plum), #5c2e45);
  color: var(--white);
  border-color: transparent;
}
.service-card.featured h3   { color: var(--white); }
.service-card.featured p    { color: rgba(255,255,255,.8); }
.service-card.featured .service-price { color: var(--gold-lt); }
.service-card.featured::before { background: linear-gradient(90deg, var(--gold), var(--gold-lt)); }

.service-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--gold);
  color: var(--dark);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  padding: .2rem .6rem;
  border-radius: 50px;
  text-transform: uppercase;
}

.service-icon {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  line-height: 1;
}
.service-card h3  { color: var(--plum); margin-bottom: .6rem; }
.service-card p   { font-size: .9rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.2rem; }
.service-price    { font-weight: 600; font-size: .9rem; color: var(--rose); }

/* ===================================================
   GALLERY
=================================================== */
.gallery {
  padding: 6rem 0;
  background: linear-gradient(145deg, var(--plum) 0%, #2a1220 100%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 1rem;
}

.gallery-item {
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

/* Rich gradient "images" */
.gallery-item:nth-child(1) {
  background:
    url("data:image/svg+xml,%3Csvg width='80' height='80' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='40' cy='40' r='35' fill='none' stroke='rgba(255,255,255,.07)' stroke-width='1'/%3E%3Ccircle cx='40' cy='40' r='20' fill='none' stroke='rgba(255,255,255,.05)' stroke-width='1'/%3E%3C/svg%3E") center/80px,
    linear-gradient(160deg,#f0b8c8 0%,#c87898 35%,#7a3a5a 70%,#4a1a35 100%);
}
.gallery-item:nth-child(2) {
  background:
    url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='8' y='8' width='44' height='44' rx='4' fill='none' stroke='rgba(255,255,255,.07)' stroke-width='1'/%3E%3C/svg%3E") center/60px,
    linear-gradient(160deg,#d4b8f5 0%,#9a70c5 40%,#5a3090 75%,#2a1050 100%);
}
.gallery-item:nth-child(3) {
  background:
    url("data:image/svg+xml,%3Csvg width='70' height='70' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M35 5 L65 60 L5 60 Z' fill='none' stroke='rgba(255,255,255,.06)' stroke-width='1'/%3E%3C/svg%3E") center/70px,
    linear-gradient(160deg,#a8e6cf 0%,#5db88a 40%,#286a48 75%,#0f3a28 100%);
}
.gallery-item:nth-child(4) {
  background:
    url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cellipse cx='50' cy='50' rx='45' ry='25' fill='none' stroke='rgba(255,255,255,.06)' stroke-width='1'/%3E%3Cellipse cx='50' cy='50' rx='30' ry='15' fill='none' stroke='rgba(255,255,255,.04)' stroke-width='1'/%3E%3C/svg%3E") center/100px,
    linear-gradient(160deg,#f8e8b0 0%,#d4a853 40%,#8a6020 75%,#4a3008 100%);
}
.gallery-item:nth-child(5) {
  background:
    url("data:image/svg+xml,%3Csvg width='80' height='80' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='40' cy='40' r='36' fill='none' stroke='rgba(255,255,255,.07)' stroke-width='1'/%3E%3Ccircle cx='40' cy='40' r='22' fill='none' stroke='rgba(255,255,255,.05)' stroke-width='1'/%3E%3Ccircle cx='40' cy='40' r='10' fill='none' stroke='rgba(255,255,255,.04)' stroke-width='1'/%3E%3C/svg%3E") center/80px,
    linear-gradient(160deg,#f8d0c8 0%,#d07870 40%,#803830 75%,#3a1010 100%);
}

/* Zoom on hover */
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  background-size: inherit;
  transition: transform .6s ease;
  z-index: 0;
}
.gallery-item:hover::after { transform: scale(1.06); }

.gallery-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 3rem 1.2rem 1.2rem;
  background: linear-gradient(to top, rgba(20,8,15,.85) 0%, transparent 100%);
  color: var(--white);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .05em;
  z-index: 1;
  transform: translateY(4px);
  opacity: .85;
  transition: var(--trans);
}
.gallery-item:hover .gallery-label { transform: translateY(0); opacity: 1; }

/* ===================================================
   ABOUT
=================================================== */
.about {
  padding: 7rem 0;
  background: var(--warm);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-img-block {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  max-width: 440px;
}

.about-img-accent {
  position: absolute;
  top: -18px; left: -18px;
  right: 18px; bottom: 18px;
  border-radius: var(--radius);
  border: 2px solid var(--blush);
  z-index: 0;
}

.about-img-main {
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  z-index: 1;
  overflow: hidden;
  /* Lush portrait-style gradient — skin/warm tones */
  background:
    radial-gradient(ellipse 70% 50% at 50% 30%, rgba(248,220,210,.5) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 30% 70%, rgba(201,169,110,.25) 0%, transparent 60%),
    linear-gradient(160deg, #f2c8d0 0%, #d09898 30%, #9a6070 60%, #5a3040 100%);
  box-shadow: var(--shadow);
}

/* Decorative person silhouette / flower via CSS */
.about-img-main::before {
  content: '✿';
  position: absolute;
  font-size: 12rem;
  color: rgba(255,255,255,.06);
  bottom: -2rem; right: -2rem;
  line-height: 1;
}
.about-img-main::after {
  content: '✦';
  position: absolute;
  font-size: 3rem;
  color: rgba(255,255,255,.15);
  top: 1.5rem; left: 1.5rem;
  line-height: 1;
}

.about-img-text {
  position: absolute;
  bottom: 1.5rem; right: -1.5rem;
  background: linear-gradient(135deg, var(--plum), #5c2e45);
  color: var(--white);
  font-family: 'Cairo', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 1rem 1.4rem;
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(59,31,43,.35);
  z-index: 3;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.about-img-text::before { content: '✦'; color: var(--gold); }

/* Dots decoration */
.about-img-block::after {
  content: '✦ ✦ ✦';
  position: absolute;
  bottom: -2.5rem; left: 0;
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: .5rem;
  opacity: .5;
  z-index: 2;
}

.about-text h2  { color: var(--plum); margin: .4rem 0 1.2rem; }
.about-text p   { color: var(--muted); line-height: 1.8; margin-bottom: 1rem; }

.about-list {
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}
.about-list li {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: .5rem;
}

/* ===================================================
   TESTIMONIALS
=================================================== */
.testimonials {
  padding: 6rem 0;
  background: var(--cream);
}
.testimonials .section-header h2 { color: var(--plum); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid rgba(181,131,141,.15);
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}
.review-card::before {
  content: '"';
  font-family: 'Cairo', sans-serif;
  font-size: 7rem;
  color: var(--blush);
  position: absolute;
  top: -.8rem; left: .8rem;
  line-height: 1;
  pointer-events: none;
  opacity: .7;
}
.review-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }

.stars { color: var(--gold); font-size: 1rem; margin-bottom: 1rem; }

.review-card p {
  font-size: .9rem;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.reviewer { display: flex; align-items: center; gap: .9rem; }

.reviewer-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--plum);
  flex-shrink: 0;
}
.reviewer strong { display: block; font-size: .9rem; color: var(--plum); }
.reviewer span   { font-size: .78rem; color: var(--muted); }

/* ===================================================
   CONTACT / BOOKING
=================================================== */
.contact {
  padding: 6rem 0;
  background: linear-gradient(145deg, var(--plum) 0%, #2a1220 100%);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2    { color: var(--white); margin: .4rem 0 1rem; }
.contact-info > p   { color: rgba(255,255,255,.75); line-height: 1.7; margin-bottom: 2rem; }
.contact-info .eyebrow { color: var(--gold-lt); }

.info-items { display: flex; flex-direction: column; gap: 1.2rem; }

.info-item { display: flex; align-items: flex-start; gap: 1rem; }
.info-icon  { font-size: 1.3rem; flex-shrink: 0; margin-top: .1rem; }
.info-item strong {
  display: block;
  color: var(--gold-lt);
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: .2rem;
}
.info-item span { color: rgba(255,255,255,.75); font-size: .9rem; line-height: 1.5; }

/* Booking Form */
.booking-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
}
.booking-form h3 { font-size: 1.5rem; color: var(--plum); margin-bottom: 1.5rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .8rem;
  margin-bottom: .8rem;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: .85rem 1rem;
  border: 1.5px solid rgba(181,131,141,.25);
  border-radius: 8px;
  font-family: 'Cairo', sans-serif;
  font-size: .9rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color var(--trans), box-shadow var(--trans);
  outline: none;
}
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(181,131,141,.15);
}
.booking-form select   { appearance: none; margin-bottom: .8rem; cursor: pointer; }
.booking-form textarea { resize: vertical; margin-bottom: .8rem; }

.form-note { text-align: center; font-size: .78rem; color: var(--muted); margin-top: 1rem; }

/* ===================================================
   FOOTER
=================================================== */
.footer { background: var(--dark); color: rgba(255,255,255,.75); }

.footer-inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding: 4rem 0 2rem;
}

.footer-brand .logo { color: var(--white); display: inline-block; margin-bottom: .8rem; }
.footer-brand p { font-size: .875rem; line-height: 1.7; max-width: 240px; }

.socials { display: flex; gap: .8rem; margin-top: 1.2rem; }
.socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--trans);
}
.socials a:hover { background: var(--rose); border-color: var(--rose); transform: translateY(-3px); }

.footer-links h4 {
  font-family: 'Cairo', sans-serif;
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1.2rem;
}
.footer-links li   { margin-bottom: .55rem; }
.footer-links a    { font-size: .875rem; color: rgba(255,255,255,.6); transition: color var(--trans); }
.footer-links a:hover { color: var(--gold-lt); }

.footer-newsletter h4 {
  font-family: 'Cairo', sans-serif;
  color: var(--white);
  font-size: 1rem;
  margin-bottom: .6rem;
}
.footer-newsletter p { font-size: .85rem; margin-bottom: 1rem; }

.newsletter-form {
  display: flex;
  border-radius: 50px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.15);
}
.newsletter-form input {
  flex: 1;
  padding: .65rem 1rem;
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  font-family: 'Cairo', sans-serif;
  font-size: .875rem;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.4); }
.newsletter-form button {
  padding: .65rem 1.1rem;
  background: var(--rose);
  color: var(--white);
  font-size: 1rem;
  transition: background var(--trans);
}
.newsletter-form button:hover { background: var(--plum); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.2rem 0;
  text-align: center;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}

/* ===================================================
   ANIMATIONS
=================================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scrollBob {
  0%,100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50%      { transform: translateX(-50%) translateY(10px); opacity: .3; }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible        { opacity: 1; transform: translateY(0); }
.reveal-delay-1        { transition-delay: .1s; }
.reveal-delay-2        { transition-delay: .2s; }
.reveal-delay-3        { transition-delay: .3s; }
.reveal-delay-4        { transition-delay: .4s; }

/* ===================================================
   RESPONSIVE
=================================================== */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .burger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: min(300px, 80%);
    height: 100vh;
    background: var(--dark);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    transition: right var(--trans);
    z-index: 999;
    box-shadow: -10px 0 40px rgba(0,0,0,.3);
  }
  .nav-links.open  { right: 0; }
  .nav-links a     { font-size: 1.1rem; color: rgba(255,255,255,.85); }

  .about-inner  { grid-template-columns: 1fr; gap: 3rem; }
  .about-image  { max-width: 420px; margin: 0 auto; width: 100%; }
  .about-img-text { right: 0; }

  .contact-inner { grid-template-columns: 1fr; }

  .hero-badge { display: none; }
}

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2)::after { display: none; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item      { min-height: 200px; }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item.wide { grid-column: span 2; }

  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: span 1; }
  .hero-btns { flex-direction: column; }
  .hero-btns a { text-align: center; justify-content: center; }
}

/* ========== RTL / Arabic overrides ========== */
@media (min-width: 901px) {
  [dir="rtl"] .nav-links { flex-direction: row-reverse; }
}
[dir="rtl"] .hero-content { text-align: right; }
[dir="rtl"] .hero-btns { justify-content: flex-start; }
[dir="rtl"] .section-header { text-align: right; }
[dir="rtl"] .section-header.light { text-align: right; }
[dir="rtl"] .about-inner { flex-direction: row-reverse; }
[dir="rtl"] .about-text { text-align: right; }
[dir="rtl"] .about-list { padding-right: 0; }
[dir="rtl"] .info-item { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .info-item > div { text-align: right; }
[dir="rtl"] .reviewer { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .reviewer > div { text-align: right; }
[dir="rtl"] .footer-inner { flex-direction: row-reverse; }
[dir="rtl"] .footer-brand { text-align: right; }
[dir="rtl"] .footer-links { text-align: right; }
[dir="rtl"] .footer-newsletter { text-align: right; }
[dir="rtl"] .newsletter-form { flex-direction: row-reverse; }
[dir="rtl"] .contact-inner { flex-direction: row-reverse; }
[dir="rtl"] .contact-info { text-align: right; }
[dir="rtl"] .stats-grid { direction: rtl; }
[dir="rtl"] .services-grid { direction: rtl; }
[dir="rtl"] .service-card { text-align: right; }
[dir="rtl"] .review-card { text-align: right; }
[dir="rtl"] .booking-form { text-align: right; }
[dir="rtl"] input, [dir="rtl"] textarea, [dir="rtl"] select { text-align: right; direction: rtl; }
[dir="rtl"] .hero-badge { left: auto; right: 2rem; text-align: right; }
[dir="rtl"] .hero-scroll { left: auto; right: 50%; }
[dir="rtl"] .about-img-accent { right: auto; left: -1.2rem; top: auto; bottom: -1.2rem; }
