/* =====================================================
   SAYE DEKOR – Premium Design System
   ===================================================== */

/* ---------- CSS VARIABLES ---------- */
:root {
  --gold: #c9a96e;
  --gold-light: #e2c89b;
  --gold-dark: #a07840;
  --dark: #0e0e0e;
  --dark2: #161616;
  --dark3: #1e1e1e;
  --dark4: #252525;
  --white: #ffffff;
  --white-80: rgba(255,255,255,0.8);
  --white-50: rgba(255,255,255,0.5);
  --white-15: rgba(255,255,255,0.15);
  --white-08: rgba(255,255,255,0.08);
  --text: #e8e0d5;
  --text-muted: #a09080;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.25s ease;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 20px 60px rgba(0,0,0,0.4);
  --shadow-gold: 0 8px 32px rgba(201,169,110,0.25);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  cursor: default;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
ul { list-style: none; }

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark2); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

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

/* ---------- TYPOGRAPHY ---------- */
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  position: relative;
  padding-left: 24px;
}
.section-label::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 16px; height: 1px;
  background: var(--gold);
}
.section-label.light { color: var(--gold-light); }
.section-label.light::before { background: var(--gold-light); }

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
}
.section-title.center { text-align: center; }
.section-title.light { color: var(--white); }

.section-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 56px;
}

.section-header { margin-bottom: 8px; }

/* =====================================================
   NAVBAR
   ===================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,169,110,0.15);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  gap: 24px;
}

/* Logo */
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
}
.logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 6px;
  color: var(--white);
}
.logo-sub {
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 5px;
  color: var(--gold);
  text-transform: uppercase;
}

/* Nav links */
.nav-links { display: flex; gap: 36px; }
.nav-item {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white-80);
  transition: color var(--transition-fast);
  position: relative;
}
.nav-item::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-fast);
}
.nav-item:hover { color: var(--gold); }
.nav-item:hover::after { transform: scaleX(1); }

/* Nav actions */
.nav-actions { display: flex; align-items: center; gap: 16px; }
.btn-call {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 22px;
  border: 1px solid var(--gold);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--gold);
  transition: var(--transition-fast);
}
.btn-call svg { width: 14px; height: 14px; }
.btn-call:hover {
  background: var(--gold);
  color: var(--dark);
  box-shadow: var(--shadow-gold);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--white);
  transition: var(--transition-fast);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

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

/* Video */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-video.active { opacity: 1; }

/* Overlay – gradient premium */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(10,8,5,0.82) 0%, rgba(10,8,5,0.3) 60%, transparent 100%),
    linear-gradient(to top, rgba(10,8,5,0.6) 0%, transparent 60%);
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 40px;
  max-width: 780px;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeSlideUp 0.8s 0.4s forwards;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 28px;
}
.hero-title-line {
  display: block;
  overflow: hidden;
}
.hero-title-line:nth-child(1) { animation: fadeSlideUp 0.9s 0.6s both; }
.hero-title-line:nth-child(2) { animation: fadeSlideUp 0.9s 0.75s both; }
.hero-title-line:nth-child(3) { animation: fadeSlideUp 0.9s 0.9s both; }
.hero-title .accent {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
}

.hero-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--white-80);
  margin-bottom: 40px;
  max-width: 480px;
  opacity: 0;
  animation: fadeSlideUp 0.8s 1.05s forwards;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeSlideUp 0.8s 1.2s forwards;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--dark);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  transition: var(--transition-fast);
  box-shadow: 0 4px 24px rgba(201,169,110,0.3);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  opacity: 0;
  transition: opacity var(--transition-fast);
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,169,110,0.45);
}
.btn-primary span, .btn-primary > *:not(::before) { position: relative; z-index: 1; }
.btn-primary.full { width: 100%; justify-content: center; border-radius: var(--radius); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  border: 1px solid var(--white-50);
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  transition: var(--transition-fast);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* Video Nav Dots */
.video-nav {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 12px;
}
.vid-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--white-50);
  transition: var(--transition-fast);
  position: relative;
}
.vid-dot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 4px;
}
.vid-dot::after {
  content: '';
  position: absolute;
  inset: -6px;
}

/* Mute button */
.mute-btn {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 5;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--white-15);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition-fast);
  border: 1px solid var(--white-15);
}
.mute-btn svg { width: 18px; height: 18px; }
.mute-btn:hover { background: var(--gold); color: var(--dark); }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 40px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--white-50);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* =====================================================
   ABOUT
   ===================================================== */
.about {
  background: var(--dark2);
  border-top: 1px solid rgba(255,255,255,0.04);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 18px;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.stat-plus {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--gold);
  margin-left: 2px;
  display: inline;
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 6px;
}

/* About image */
.about-visual { position: relative; }
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 520px;
  box-shadow: var(--shadow);
}
.about-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: var(--radius-lg);
  z-index: 2;
  pointer-events: none;
}
.about-img-wrap img {
  transition: transform 0.8s ease;
}
.about-img-wrap:hover img { transform: scale(1.04); }

.about-badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  z-index: 3;
  background: rgba(10,8,5,0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 50px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--gold-light);
}
.badge-icon { font-size: 16px; color: var(--gold); }

/* =====================================================
   SERVICES
   ===================================================== */
.services {
  background: var(--dark);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  animation-delay: var(--delay);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold-dark), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(201,169,110,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover {
  border-color: rgba(201,169,110,0.2);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover::after { opacity: 1; }

.service-icon {
  width: 56px; height: 56px;
  margin-bottom: 24px;
  color: var(--gold);
}
.service-icon svg { width: 100%; height: 100%; }

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--text-muted);
}
.service-arrow {
  display: block;
  margin-top: 24px;
  font-size: 1.2rem;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-8px);
  transition: var(--transition-fast);
}
.service-card:hover .service-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* =====================================================
   GALLERY
   ===================================================== */
.gallery {
  background: var(--dark2);
}

/* Filter */
.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 9px 24px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: var(--transition-fast);
  background: transparent;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}

/* Masonry grid */
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 320px;
  gap: 20px;
}
.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 1;
}
.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.gallery-item.hidden {
  display: none;
}
.gallery-img-wrap {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.gallery-img-wrap img {
  transition: transform 0.7s ease;
}
.gallery-img-wrap:hover img { transform: scale(1.08); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,8,5,0.92) 0%, rgba(10,8,5,0.3) 50%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 28px;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-img-wrap:hover .gallery-overlay { opacity: 1; }

.gallery-cat {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 600;
}
.gallery-info h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 4px;
}
.gallery-info p {
  font-size: 0.8rem;
  color: var(--white-80);
  line-height: 1.5;
}
.gallery-zoom {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  align-self: flex-end;
  transition: var(--transition-fast);
}
.gallery-zoom svg { width: 18px; height: 18px; }
.gallery-zoom:hover { background: var(--gold-light); transform: scale(1.1); }

/* =====================================================
   WHY
   ===================================================== */
.why {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  padding: 100px 0;
}
.why-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201,169,110,0.07) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(201,169,110,0.05) 0%, transparent 50%);
}
.why > .container { position: relative; z-index: 1; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 24px;
  margin-top: 64px;
}
.why-card {
  background: var(--white-08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(201,169,110,0.12);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  transition: var(--transition);
}
.why-card:hover {
  border-color: rgba(201,169,110,0.35);
  transform: translateY(-6px);
  background: rgba(201,169,110,0.06);
}
.why-icon {
  width: 64px; height: 64px;
  margin: 0 auto 24px;
  color: var(--gold);
  background: rgba(201,169,110,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition-fast);
}
.why-icon svg { width: 28px; height: 28px; }
.why-card:hover .why-icon {
  background: var(--gold);
  color: var(--dark);
  box-shadow: var(--shadow-gold);
}
.why-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
}
.why-card p {
  font-size: 0.85rem;
  line-height: 1.75;
  color: var(--text-muted);
}

/* =====================================================
   CONTACT
   ===================================================== */
.contact {
  background: var(--dark2);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 40px;
  margin-top: 20px;
}
.contact-items { display: flex; flex-direction: column; gap: 16px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  transition: var(--transition-fast);
}
.contact-item:hover {
  border-color: rgba(201,169,110,0.3);
  background: rgba(201,169,110,0.05);
  transform: translateX(4px);
}
.ci-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(201,169,110,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.ci-icon.whatsapp { background: rgba(37,211,102,0.12); color: #25D366; }
.ci-icon svg { width: 20px; height: 20px; }
.ci-label {
  display: block;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}
.ci-value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
}

/* Form */
.contact-form-wrap {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 48px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark4);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 14px 18px;
  color: var(--white);
  font-family: inherit;
  font-size: 0.9rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
  resize: none;
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a09080' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  cursor: pointer;
}
.form-group select option { background: var(--dark3); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(160,144,128,0.5); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.12);
}
.form-note {
  margin-top: 16px;
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
}
.form-note a { color: var(--gold); text-decoration: underline; }

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: #080808;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 80px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-top: 16px;
  max-width: 260px;
}
.footer-brand .logo { margin-bottom: 0; }
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: var(--transition-fast);
}
.footer-social a svg { width: 18px; height: 18px; }
.footer-social a:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }

.footer-links-col h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links-col li a,
.footer-links-col li span {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}
.footer-links-col li a:hover { color: var(--gold-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 12px;
  color: rgba(160,144,128,0.5);
}

/* =====================================================
   LIGHTBOX
   ===================================================== */
.lightbox-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(5,4,3,0.95);
  z-index: 9000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.lightbox.open,
.lightbox-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}
.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius);
  border: 1px solid rgba(201,169,110,0.2);
}
#lightbox-title {
  color: var(--white-80);
  font-size: 14px;
  letter-spacing: 1px;
}
.lightbox-close {
  position: fixed;
  top: 24px;
  right: 32px;
  font-size: 28px;
  color: var(--white-80);
  padding: 8px;
  transition: color var(--transition-fast);
}
.lightbox-close:hover { color: var(--gold); }

.lightbox-prev, .lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  font-size: 48px;
  color: var(--white-80);
  padding: 16px;
  transition: color var(--transition-fast);
  font-weight: 300;
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-prev:hover, .lightbox-next:hover { color: var(--gold); }

/* =====================================================
   FLOATING BUTTONS
   ===================================================== */
.floating-btns {
  position: fixed;
  right: 24px;
  bottom: 100px;
  z-index: 800;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.float-btn {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  box-shadow: 0 6px 24px rgba(0,0,0,0.4);
  transition: var(--transition-fast);
  position: relative;
}
.float-btn svg { width: 24px; height: 24px; }
.float-btn:hover { transform: translateY(-3px) scale(1.08); }

.whatsapp-float { background: #25D366; }
.whatsapp-float:hover { box-shadow: 0 10px 32px rgba(37,211,102,0.4); }

.phone-float {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  animation: phonePulse 2.5s ease-in-out infinite;
}
.phone-float:hover { box-shadow: 0 10px 32px rgba(201,169,110,0.4); }

@keyframes phonePulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(0,0,0,0.4), 0 0 0 0 rgba(201,169,110,0.4); }
  50% { box-shadow: 0 6px 24px rgba(0,0,0,0.4), 0 0 0 12px rgba(201,169,110,0); }
}

/* Float tooltip */
.float-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--white);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}
.float-btn:hover .float-tooltip { opacity: 1; }

/* Back to top */
.back-top {
  position: fixed;
  right: 24px;
  bottom: 32px;
  z-index: 800;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--dark3);
  border: 1px solid rgba(201,169,110,0.2);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition-fast);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}
.back-top svg { width: 18px; height: 18px; }
.back-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-top:hover { background: var(--gold); color: var(--dark); }

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

[data-animate] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition-delay: var(--delay, 0s);
}
[data-animate="fade-left"] { transform: translateX(-40px); }
[data-animate="fade-right"] { transform: translateX(40px); }
[data-animate].in-view {
  opacity: 1;
  transform: translate(0,0);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-wrap { height: 360px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:first-child { grid-column: span 2; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10,8,5,0.98);
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 999;
  }
  .nav-links.mobile-open .nav-item { font-size: 18px; }
  .nav-inner { padding: 16px 20px; }
  .hero-content { padding: 0 20px; }
  .hero-scroll { display: none; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .section { padding: 72px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-masonry { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .gallery-item:first-child { grid-column: span 1; }
  .why-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(3,1fr); gap: 16px; }
  .stat-num { font-size: 2.2rem; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .contact-form-wrap { padding: 28px 20px; }
  .btn-call span { display: none; }
  .btn-call { padding: 10px 14px; }
}
