/* ==============================
   SALAHDERBOMAR TAPISSIER
   Premium CSS Design System
   ============================== */

/* ---- Variables ---- */
:root {
  --gold: #b8965a;
  --gold-light: #d4af7a;
  --gold-dark: #8a6b3a;
  --cream: #faf8f5;
  --dark: #1a1510;
  --dark-2: #2c2318;
  --dark-3: #3d3020;
  --text: #4a3d2a;
  --text-light: #8a7a65;
  --white: #ffffff;
  --shadow: rgba(26, 21, 16, 0.15);
  --shadow-gold: rgba(184, 150, 90, 0.3);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Outfit', system-ui, sans-serif;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 12px;
  --radius-lg: 20px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--cream);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- Utility ---- */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 100px 0; }

.section-label {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.section-label::before, .section-label::after {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold);
}
.section-label.light { color: rgba(255,255,255,0.8); }
.section-label.light::before, .section-label.light::after { background: rgba(255,255,255,0.5); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--gold); }

.section-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 560px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .section-label { justify-content: center; }
.section-header .section-sub { margin: 0 auto; }

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  transition: var(--transition);
  box-shadow: 0 4px 20px var(--shadow-gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--shadow-gold);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 13px 32px;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.6);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--dark);
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.25); }

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--white);
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  box-shadow: 0 4px 20px var(--shadow-gold);
}
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); }

.btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(253,29,29,0.3);
}
.btn-instagram:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(253,29,29,0.4); }

/* ==============================
   NAVBAR
   ============================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(26, 21, 16, 0.95);
  backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.3);
}
.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 30px;
  transition: var(--transition);
}
.nav-link:hover { color: var(--gold-light); background: rgba(255,255,255,0.08); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: var(--white);
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(37,211,102,0.4);
}
.nav-cta:hover { background: #1db954; transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ==============================
   HERO
   ============================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: heroZoom 10s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 21, 16, 0.3) 0%,
    rgba(26, 21, 16, 0.55) 50%,
    rgba(26, 21, 16, 0.75) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  max-width: 780px;
  padding: 0 24px;
  animation: fadeInUp 1s ease-out;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(184,150,90,0.5);
  padding: 8px 20px;
  border-radius: 30px;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
  background: rgba(184,150,90,0.1);
}
.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}
.hero-name {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, #fff 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-family: var(--font-sans);
  font-size: clamp(0.9rem, 2.5vw, 1.3rem);
  font-weight: 300;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 8px;
}
.hero-desc {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ==============================
   STATS STRIP
   ============================== */
.stats-strip {
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 36px 24px;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 40px;
}
.stat-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.1);
}

/* ==============================
   ABOUT
   ============================== */
.about { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-images { position: relative; }
.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 500px;
  box-shadow: 0 20px 60px var(--shadow);
}
.about-img-accent {
  position: absolute;
  bottom: -40px;
  right: -30px;
  width: 220px;
  height: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px var(--shadow);
  border: 4px solid var(--cream);
}
.about-badge-float {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--white);
  padding: 10px 16px;
  border-radius: var(--radius);
  text-align: center;
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.about-badge-float strong { display: block; font-size: 1.1rem; }

.about-text { padding-left: 20px; }
.about-desc {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.8;
}
.about-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 32px;
}
.feature-tag {
  background: rgba(184,150,90,0.1);
  color: var(--gold-dark);
  border: 1px solid rgba(184,150,90,0.3);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* ==============================
   SERVICES
   ============================== */
.services { background: #f5f0e8; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition: var(--transition);
  position: relative;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 50px var(--shadow);
}
.service-card.featured {
  border: 2px solid var(--gold);
  box-shadow: 0 8px 40px var(--shadow-gold);
}
.service-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  background: var(--gold);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}
.service-icon {
  position: absolute;
  top: 12px;
  left: 16px;
  z-index: 2;
  font-size: 1.8rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}
.service-img {
  height: 220px;
  object-position: center;
  transition: transform 0.5s ease;
}
.service-card:hover .service-img { transform: scale(1.05); }
.service-content {
  padding: 24px;
}
.service-content h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}
.service-content p {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 16px;
}
.service-link {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}
.service-link:hover { color: var(--gold-dark); letter-spacing: 0.02em; }

/* ==============================
   SALON MAROCAIN
   ============================== */
.salon-marocain { background: var(--dark); }
.salon-marocain .section-title { color: var(--white); }
.salon-marocain .section-label { color: var(--gold-light); }
.salon-marocain .section-label::before,
.salon-marocain .section-label::after { background: var(--gold-light); }
.salon-marocain .section-sub { color: rgba(255,255,255,0.6); }

.salon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
  margin-bottom: 48px;
}
.salon-main {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 420px;
}
.salon-side {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.salon-sm {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  flex: 1;
  min-height: 196px;
}
.salon-row {
  grid-column: 1 / -1;
  grid-row: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.salon-med {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 240px;
}

/* Shared image + label */
.salon-main img,
.salon-sm img,
.salon-med img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.salon-main:hover img,
.salon-sm:hover img,
.salon-med:hover img { transform: scale(1.06); }

.salon-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(26,21,16,0.9) 0%, transparent 100%);
  color: rgba(255,255,255,0.9);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 24px 16px 14px;
  transition: opacity 0.3s;
}

/* CTA block inside Salon section */
.salon-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(184,150,90,0.25);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  flex-wrap: wrap;
}
.salon-cta-text h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.salon-cta-text p {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  max-width: 480px;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .salon-grid { grid-template-columns: 1fr; }
  .salon-main { height: 300px; grid-column: 1; }
  .salon-side { grid-column: 1; grid-row: 2; flex-direction: row; }
  .salon-row { grid-template-columns: 1fr 1fr; grid-column: 1; grid-row: 3; }
  .salon-med { height: 200px; }
  .salon-cta { flex-direction: column; align-items: flex-start; padding: 28px 24px; }
}
@media (max-width: 600px) {
  .salon-side { flex-direction: column; }
  .salon-row { grid-template-columns: 1fr; }
  .salon-med { height: 220px; }
}

/* ==============================
   GALLERY
   ============================== */
.gallery { background: var(--cream); }
.gallery-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.filter-btn {
  background: transparent;
  border: 1.5px solid #d8cfc2;
  color: var(--text-light);
  padding: 9px 22px;
  border-radius: 30px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 14px;
}
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(6) { grid-column: span 2; }
.gallery-item:nth-child(10) { grid-column: span 2; }

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: #e8e0d4;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,21,16,0.85) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  gap: 4px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  width: fit-content;
}
.gallery-overlay p {
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
}

.gallery-item.hidden {
  display: none;
}

.gallery-cta {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

/* ==============================
   CTA SECTION
   ============================== */
.cta-section {
  position: relative;
  padding: 120px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
}
.cta-bg img { object-position: center; }
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,21,16,0.88) 0%, rgba(60,42,18,0.75) 100%);
}
.cta-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 640px;
}
.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 20px;
}
.cta-title em { font-style: italic; color: var(--gold-light); }
.cta-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  line-height: 1.8;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ==============================
   CONTACT
   ============================== */
.contact { background: var(--dark); color: var(--white); }
.contact .section-title { color: var(--white); }
.contact .section-label { color: var(--gold-light); }
.contact .section-label::before, .contact .section-label::after { background: var(--gold-light); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 20px 22px;
  transition: var(--transition);
}
.contact-card:hover {
  background: rgba(184,150,90,0.1);
  border-color: rgba(184,150,90,0.3);
}
.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}
.instagram-icon { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); }
.address-icon { background: var(--dark-3); }

.contact-detail { display: flex; flex-direction: column; gap: 4px; }
.contact-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.contact-value {
  font-size: 0.98rem;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  transition: color 0.2s;
}
.contact-value:hover { color: var(--gold-light); }
.address-text { font-size: 0.88rem; line-height: 1.6; }

.contact-socials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition);
}
.whatsapp-btn { background: #25D366; color: var(--white); }
.whatsapp-btn:hover { background: #1db954; transform: translateY(-2px); }
.insta-btn { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); color: var(--white); }
.insta-btn:hover { transform: translateY(-2px); opacity: 0.9; }

.map-container {
  position: relative;
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.08);
}
.map-link {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--dark);
  color: var(--gold-light);
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.map-link:hover { background: var(--gold); color: var(--white); }

/* ==============================
   FOOTER
   ============================== */
.footer {
  background: #0f0c08;
  color: rgba(255,255,255,0.6);
}
.footer-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 64px 24px 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
}
.footer-logo {
  height: 70px;
  width: auto;
  object-fit: contain;
  margin-bottom: 16px;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 280px; }
.footer-links h4, .footer-contact h4 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-contact p { font-size: 0.9rem; margin-bottom: 8px; }
.footer-contact a { transition: color 0.2s; }
.footer-contact a:hover { color: var(--gold-light); }
.footer-socials { display: flex; gap: 10px; margin-top: 16px; }
.footer-social {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.footer-social:hover { background: var(--gold); color: var(--white); transform: translateY(-2px); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 24px;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* ==============================
   FLOATING WHATSAPP
   ============================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1) translateY(-2px); box-shadow: 0 8px 30px rgba(37,211,102,0.6); }
.whatsapp-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 3px solid #25D366;
  animation: pulse 2s ease-in-out infinite;
  opacity: 0;
}
@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.7; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ==============================
   LIGHTBOX
   ============================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.active { opacity: 1; pointer-events: all; }
.lightbox-img-wrap {
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-img-wrap img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  cursor: pointer;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: var(--transition);
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: var(--gold); border-color: var(--gold); }
.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); }

/* ==============================
   SCROLL ANIMATIONS
   ============================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-text { padding-left: 0; }
  .about-img-accent { right: 0; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item:nth-child(1) { grid-column: span 2; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(26,21,16,0.97); padding: 20px; gap: 4px; }
  .nav-links.open { display: flex; }
  .nav-link { padding: 12px 16px; }
  .hamburger { display: flex; }
  .stats-strip { gap: 0; }
  .stat-item { padding: 12px 20px; }
  .stat-divider { height: 36px; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .gallery-item:nth-child(6), .gallery-item:nth-child(10) { grid-column: span 1; }
  .about-img-accent { display: none; }
  .footer-container { grid-template-columns: 1fr; gap: 32px; }
  .contact-socials { flex-direction: column; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gallery-item:nth-child(1) { grid-column: span 1; }
  .cta-actions { flex-direction: column; width: 100%; }
  .btn-white, .btn-gold { justify-content: center; }
  .stat-divider { display: none; }
}
