/* ============================================
   VELVET LANE INTERIORS — Main Stylesheet
   2026 | Premium Wallpaper Installation
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

/* ─── CSS VARIABLES ─── */
:root {
  --white:       #faf9f7;
  --cream:       #f4f0e8;
  --beige:       #e8dfd0;
  --beige-mid:   #d4c5b0;
  --charcoal:    #2c2c2c;
  --charcoal-lt: #4a4a4a;
  --gold:        #c9a84c;
  --gold-lt:     #dfc06e;
  --gold-dk:     #a8852e;
  --shadow-sm:   0 2px 12px rgba(44,44,44,0.08);
  --shadow-md:   0 8px 32px rgba(44,44,44,0.12);
  --shadow-lg:   0 20px 60px rgba(44,44,44,0.18);
  --radius:      12px;
  --radius-lg:   20px;
  --transition:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display:'Cormorant Garamond', Georgia, serif;
  --font-body:   'DM Sans', -apple-system, sans-serif;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── SCROLL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; }
h1 { font-size: clamp(2.6rem, 6vw, 4.8rem); font-weight: 600; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 500; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); font-weight: 500; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}
.section-title {
  font-family: var(--font-display);
  color: var(--charcoal);
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--charcoal-lt);
  max-width: 560px;
  line-height: 1.75;
}

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

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--charcoal);
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
}
.btn-primary:hover {
  background: var(--gold-dk);
  box-shadow: 0 8px 32px rgba(201,168,76,0.45);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.65);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--charcoal);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-dark:hover {
  background: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ==============================
   HEADER / NAVIGATION
   ============================== */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all 0.4s ease;
  padding: 20px 0;
}
#header.scrolled {
  background: rgba(250,249,247,0.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  width: 40px;
  height: 40px;
  background: var(--charcoal);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  transition: background var(--transition);
}
#header.scrolled .logo-mark { background: var(--charcoal); }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.1;
  transition: color var(--transition);
}
.logo-text span { display: block; font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; font-family: var(--font-body); font-weight: 400; color: var(--gold); margin-top: 1px; }
#header:not(.scrolled) .logo-text { color: var(--white); }
#header.scrolled .logo-text { color: var(--charcoal); }

nav { display: flex; align-items: center; gap: 36px; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  position: relative;
  transition: color var(--transition);
}
#header:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.88); }
#header.scrolled .nav-links a { color: var(--charcoal-lt); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.nav-links a:hover::after { transform: scaleX(1); }
#header:not(.scrolled) .nav-links a:hover { color: var(--white); }
#header.scrolled .nav-links a:hover { color: var(--charcoal); }

.nav-cta {
  padding: 10px 22px;
  background: var(--gold);
  color: var(--charcoal) !important;
  border-radius: 50px;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  transition: all var(--transition) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-dk) !important; transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  transition: all 0.3s ease;
}
#header:not(.scrolled) .hamburger span { background: var(--white); }
#header.scrolled .hamburger span { background: var(--charcoal); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--charcoal);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--white);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav-close {
  position: absolute;
  top: 24px; right: 24px;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
  transition: color var(--transition);
}
.mobile-nav-close:hover { color: var(--gold); }
.mobile-nav-phone {
  margin-top: 16px;
  font-size: 1.1rem;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ==============================
   HERO SECTION
   ============================== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1600210492486-724fe5c67fb0?w=1920&q=90&auto=format&fit=crop&crop=center');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
  transform: scale(1.05);
  animation: heroZoom 12s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.0); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(28,24,20,0.82) 0%,
    rgba(28,24,20,0.55) 60%,
    rgba(28,24,20,0.40) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding-top: 120px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.18);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
  animation: fadeSlideUp 0.8s ease forwards;
}
.hero-badge i { font-size: 0.9rem; }
.hero-title {
  color: var(--white);
  margin-bottom: 20px;
  animation: fadeSlideUp 0.9s 0.15s ease both;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-title em {
  font-style: italic;
  color: var(--gold-lt);
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.75;
  font-weight: 300;
  animation: fadeSlideUp 1s 0.3s ease both;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 44px;
  animation: fadeSlideUp 1s 0.45s ease both;
}
.hero-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  animation: fadeSlideUp 1s 0.55s ease both;
  margin-bottom: 44px;
}
.hero-phone-icon {
  width: 44px;
  height: 44px;
  background: rgba(201,168,76,0.2);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-lt);
  font-size: 1.1rem;
}
.hero-phone-text { color: rgba(255,255,255,0.7); font-size: 0.78rem; letter-spacing: 0.05em; }
.hero-phone-number {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
}
.hero-phone-number:hover { color: var(--gold-lt); }

/* Trust badges */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  animation: fadeSlideUp 1s 0.65s ease both;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.02em;
}
.trust-badge i { color: var(--gold-lt); font-size: 0.85rem; }

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: bounce 2s ease infinite;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ==============================
   SERVICES SECTION
   ============================== */
#services {
  background: var(--white);
  position: relative;
}
#services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.services-header {
  text-align: center;
  margin-bottom: 64px;
}
.services-header .section-subtitle {
  margin: 0 auto;
  text-align: center;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--beige);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 60px;
  height: 60px;
  background: var(--cream);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold-dk);
  margin-bottom: 24px;
  transition: all var(--transition);
}
.service-card:hover .service-icon {
  background: var(--charcoal);
  color: var(--gold-lt);
}
.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: var(--charcoal);
}
.service-card p {
  font-size: 0.92rem;
  color: var(--charcoal-lt);
  line-height: 1.7;
}
.service-card-num {
  position: absolute;
  top: 24px; right: 28px;
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--beige);
  line-height: 1;
  transition: color var(--transition);
  user-select: none;
}
.service-card:hover .service-card-num { color: var(--beige-mid); }

/* ==============================
   ABOUT SECTION
   ============================== */
#about {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
#about::after {
  content: '"';
  position: absolute;
  top: -40px; right: -20px;
  font-family: var(--font-display);
  font-size: 28rem;
  color: rgba(201,168,76,0.04);
  line-height: 1;
  pointer-events: none;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-img-main {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-img-accent {
  position: absolute;
  bottom: -32px;
  right: -32px;
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 6px solid var(--cream);
  box-shadow: var(--shadow-md);
}
.about-badge {
  position: absolute;
  top: 32px;
  left: -20px;
  background: var(--charcoal);
  color: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-badge-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.about-badge-text { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.8; margin-top: 4px; }
.about-content { padding-left: 16px; }
.about-content .section-subtitle { margin-bottom: 28px; max-width: 100%; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 36px 0;
  padding: 32px 0;
  border-top: 1px solid var(--beige);
  border-bottom: 1px solid var(--beige);
}
.about-stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1;
}
.about-stat-num span { color: var(--gold); }
.about-stat-label { font-size: 0.78rem; color: var(--charcoal-lt); letter-spacing: 0.06em; text-transform: uppercase; margin-top: 4px; }
.about-features { display: flex; flex-direction: column; gap: 14px; }
.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--charcoal-lt);
}
.about-feature i { color: var(--gold); font-size: 0.9rem; }

/* About images */
.about-img-main {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-img-accent {
  position: absolute;
  bottom: -32px;
  right: -32px;
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 6px solid var(--cream);
  box-shadow: var(--shadow-md);
}

/* ==============================
   GALLERY SECTION
   ============================== */
#gallery { background: var(--white); }
.gallery-header {
  text-align: center;
  margin-bottom: 56px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--beige);
}
.gallery-item:nth-child(1) { grid-column: span 7; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 5; }
.gallery-item:nth-child(3) { grid-column: span 5; }
.gallery-item:nth-child(4) { grid-column: span 4; }
.gallery-item:nth-child(5) { grid-column: span 4; }
.gallery-item:nth-child(6) { grid-column: span 4; }

.gallery-inner {
  width: 100%;
  height: 100%;
  min-height: 240px;
  position: relative;
  overflow: hidden;
}
.gallery-item:nth-child(1) .gallery-inner { min-height: 500px; }

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.gallery-item:hover .gallery-img { transform: scale(1.06); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,24,20,0.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-label {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ─── PHOTO BANNER ─── */
.photo-banner {
  position: relative;
  height: 480px;
  overflow: hidden;
}
.photo-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transition: transform 8s ease;
}
.photo-banner:hover img { transform: scale(1.04); }
.photo-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(28,24,20,0.78) 0%,
    rgba(28,24,20,0.40) 60%,
    rgba(28,24,20,0.15) 100%
  );
  display: flex;
  align-items: center;
}
.photo-banner-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  max-width: 600px;
}
@media (max-width: 768px) {
  .photo-banner { height: 360px; }
  .photo-banner-overlay {
    background: rgba(28,24,20,0.6);
    justify-content: center;
  }
  .photo-banner-content { align-items: center; text-align: center; }
}

/* Gallery img fill */
.gallery-inner img.gallery-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-inner { position: relative; }

/* ==============================
   WHY CHOOSE US
   ============================== */
#why {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
#why::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}
#why .section-title { color: var(--white); }
#why .section-label { color: var(--gold-lt); }
#why .section-subtitle { color: rgba(255,255,255,0.6); }
.why-header { text-align: center; margin-bottom: 64px; }
.why-header .section-subtitle { margin: 0 auto; text-align: center; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: var(--gold);
  transform: scaleY(0);
  transition: transform var(--transition);
  transform-origin: top;
}
.why-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(201,168,76,0.25);
  transform: translateY(-4px);
}
.why-card:hover::before { transform: scaleY(1); }
.why-icon {
  width: 52px;
  height: 52px;
  background: rgba(201,168,76,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold-lt);
  margin-bottom: 20px;
  transition: all var(--transition);
}
.why-card:hover .why-icon {
  background: var(--gold);
  color: var(--charcoal);
}
.why-card h3 {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 10px;
}
.why-card p { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.7; }

/* ==============================
   TESTIMONIALS
   ============================== */
#reviews { background: var(--cream); }
.reviews-header { text-align: center; margin-bottom: 64px; }
.reviews-header .section-subtitle { margin: 0 auto; text-align: center; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
}
.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.review-stars {
  display: flex;
  gap: 3px;
  color: var(--gold);
  font-size: 0.95rem;
  margin-bottom: 18px;
}
.review-quote {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 28px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.review-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--charcoal-lt);
  flex-shrink: 0;
}
.review-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--charcoal);
}
.review-location { font-size: 0.78rem; color: var(--charcoal-lt); margin-top: 2px; }
.review-card-quote-mark {
  position: absolute;
  top: 24px; right: 28px;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--cream);
  line-height: 1;
  font-style: italic;
  user-select: none;
}

/* Rating summary */
.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 48px;
  margin-bottom: 56px;
  box-shadow: var(--shadow-sm);
  flex-wrap: wrap;
}
.rating-big {
  text-align: center;
}
.rating-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1;
}
.rating-stars-big {
  display: flex;
  gap: 4px;
  color: var(--gold);
  font-size: 1.1rem;
  justify-content: center;
  margin: 6px 0 4px;
}
.rating-count { font-size: 0.8rem; color: var(--charcoal-lt); }
.rating-divider { width: 1px; height: 80px; background: var(--beige); }
.rating-breakdown { display: flex; flex-direction: column; gap: 8px; }
.rating-bar-row { display: flex; align-items: center; gap: 12px; font-size: 0.8rem; color: var(--charcoal-lt); }
.rating-bar-bg { flex: 1; height: 6px; background: var(--beige); border-radius: 3px; min-width: 120px; }
.rating-bar-fill { height: 100%; background: var(--gold); border-radius: 3px; }
.rating-platform { text-align: center; }
.rating-platform i { font-size: 2.5rem; color: #4285f4; margin-bottom: 6px; }
.rating-platform p { font-size: 0.82rem; color: var(--charcoal-lt); }

/* ==============================
   CONTACT SECTION
   ============================== */
#contact { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.contact-info { padding-right: 16px; }
.contact-info .section-subtitle { margin-bottom: 36px; max-width: 100%; }
.contact-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon {
  width: 46px;
  height: 46px;
  background: var(--cream);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dk);
  font-size: 1rem;
  flex-shrink: 0;
  transition: all var(--transition);
}
.contact-item:hover .contact-icon { background: var(--charcoal); color: var(--gold-lt); }
.contact-item-label { font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--charcoal-lt); margin-bottom: 3px; }
.contact-item-value { font-size: 0.95rem; color: var(--charcoal); font-weight: 500; }
.contact-item-value a { transition: color var(--transition); }
.contact-item-value a:hover { color: var(--gold-dk); }
.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-top: 8px;
}
.contact-map iframe {
  width: 100%;
  height: 200px;
  border: none;
  display: block;
}
.cta-phone-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  background: var(--charcoal);
  color: var(--white);
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
  width: 100%;
  margin-bottom: 36px;
}
.cta-phone-btn:hover {
  background: var(--gold);
  color: var(--charcoal);
  box-shadow: 0 8px 28px rgba(201,168,76,0.35);
  transform: translateY(-2px);
}

/* Contact form */
.contact-form-wrap {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
}
.form-title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--charcoal);
}
.form-subtitle { font-size: 0.88rem; color: var(--charcoal-lt); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--charcoal-lt);
  margin-bottom: 7px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--white);
  border: 1.5px solid var(--beige);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--charcoal);
  transition: all var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--charcoal);
  color: var(--white);
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.form-submit:hover {
  background: var(--gold);
  color: var(--charcoal);
  box-shadow: 0 8px 28px rgba(201,168,76,0.35);
  transform: translateY(-2px);
}
#form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
#form-success i { font-size: 3.5rem; color: #4caf50; margin-bottom: 16px; }
#form-success h3 { font-family: var(--font-display); font-size: 1.8rem; margin-bottom: 10px; color: var(--charcoal); }
#form-success p { color: var(--charcoal-lt); font-size: 0.95rem; }

/* ==============================
   FOOTER
   ============================== */
#footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-brand .logo-text { color: var(--white); margin-bottom: 16px; display: block; font-size: 1.3rem; }
.footer-brand .logo-text span { color: var(--gold); }
.footer-about { font-size: 0.88rem; line-height: 1.75; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.social-btn {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: all var(--transition);
}
.social-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--charcoal); transform: translateY(-3px); }
.footer-col-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.875rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--gold-lt); }
.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact-item i { color: var(--gold); font-size: 0.9rem; margin-top: 3px; flex-shrink: 0; }
.footer-contact-item span { font-size: 0.85rem; line-height: 1.5; }
.footer-contact-item a { transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--gold-lt); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 0.82rem; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 0.82rem; transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--gold-lt); }

/* ─── SECTION SEPARATOR ─── */
.sep {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  margin: 16px 0 0;
  border-radius: 2px;
}
.sep-center { margin-left: auto; margin-right: auto; }

/* ─── BACK TO TOP ─── */
#back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 46px;
  height: 46px;
  background: var(--charcoal);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition);
  z-index: 900;
  border: 2px solid transparent;
}
#back-to-top.visible { opacity: 1; transform: translateY(0); }
#back-to-top:hover { background: var(--gold); border-color: var(--gold); color: var(--charcoal); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image-wrap { max-width: 540px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-content { padding-left: 0; }
}
@media (max-width: 768px) {
  section { padding: 72px 0; }
  .nav-links, nav .btn { display: none; }
  .hamburger { display: flex; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .trust-badges { gap: 8px; }
  .services-grid { grid-template-columns: 1fr; }
  .about-img-accent { display: none; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:nth-child(n) { grid-column: span 1; grid-row: span 1; }
  .gallery-item:nth-child(1) { grid-column: span 2; }
  .why-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .rating-summary { gap: 24px; }
  .rating-divider { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 32px 24px; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .hero-content { padding-top: 100px; }
  h1 { font-size: 2.2rem; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(n) { grid-column: span 1; }
}
