/* ========== CSS Variables & Reset ========== */
:root {
  --primary: #C08B5C;
  --primary-light: #D4A574;
  --primary-dark: #9A6B3F;
  --accent: #D4A853;
  --bg: #FFF9F2;
  --bg-alt: #FEF0E0;
  --bg-dark: #2D1F15;
  --text: #3D2B1F;
  --text-light: #8B7565;
  --text-white: #FFF9F2;
  --border: #F0E0CC;
  --shadow: rgba(100, 70, 30, 0.08);
  --shadow-lg: rgba(100, 70, 30, 0.15);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ========== Typography ========== */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 400; line-height: 1.3; }
h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
  font-weight: 600;
}

.section-title { margin-bottom: 20px; color: var(--text); }
.section-desc {
  max-width: 600px;
  margin: 0 auto 48px;
  color: var(--text-light);
  font-size: 1.05rem;
}
.no-membership {
  color: var(--accent);
  font-weight: 700;
  font-size: 1.1rem;
  margin-left: 4px;
}

.text-center { text-align: center; }

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.btn-primary {
  background: #D15E0C;
  color: var(--text-white);
}
.btn-primary:hover { background: #D4AF37; transform: translateY(-2px); box-shadow: 0 8px 24px var(--shadow-lg); }

.btn-outline {
  border: 1.5px solid var(--primary);
  color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: var(--text-white); transform: translateY(-2px); }

.btn-white {
  background: white;
  color: var(--primary-dark);
}
.btn-white:hover { background: var(--bg-alt); transform: translateY(-2px); box-shadow: 0 8px 24px var(--shadow-lg); }

.btn-sm { padding: 10px 24px; font-size: 0.85rem; }

/* ========== Navigation ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(253, 251, 247, 0.95);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 2px 20px var(--shadow);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: inline-block;
  transition: var(--transition);
}
.nav-logo img {
  height: 48px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.85);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: var(--transition);
}
.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(--primary); }

.nav-cta .btn { padding: 10px 28px; }
.navbar:not(.scrolled) .nav-cta .btn-outline {
  border-color: rgba(255,255,255,0.6);
  color: white;
}
.navbar:not(.scrolled) .nav-cta .btn-outline:hover {
  background: white;
  color: var(--text);
}

/* Mobile Menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  z-index: 1001;
}
.nav-toggle span {
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
}
.navbar.scrolled .nav-toggle span { background: var(--text); }

/* ========== Welcome Popup ========== */
.welcome-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.65);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.welcome-popup.show {
  opacity: 1;
  pointer-events: auto;
}
.welcome-popup-content {
  position: relative;
  max-width: 600px;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.welcome-popup-content img {
  display: block;
  width: 100%;
  height: auto;
}
.welcome-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: none;
  background: rgba(0,0,0,0.5);
  color: white;
  font-size: 1.5rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  z-index: 10;
  line-height: 1;
}
.welcome-popup-close:hover { background: rgba(0,0,0,0.8); }
.welcome-popup-btn {
  background: #D15E0C;
  color: white;
  padding: 14px 48px;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin-top: 20px;
  transition: background 0.3s ease, transform 0.2s ease;
  letter-spacing: 0.5px;
}
.welcome-popup-btn:hover {
  background: #a67748;
  transform: scale(1.05);
}

@media (max-width: 480px) {
  .welcome-popup-content { max-width: 90vw; }
  .welcome-popup-close { top: 8px; right: 8px; width: 30px; height: 30px; font-size: 1.2rem; }
}

/* ========== Hero ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('images/20260624210329.png') center/cover no-repeat;
}
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30,25,20,0.55) 0%, rgba(30,25,20,0.4) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 24px;
}

.hero-content h1 {
  color: white;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero-content p {
  color: rgba(255,255,255,0.85);
  font-size: 1.15rem;
  margin-bottom: 36px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: white;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.7;
  animation: bounceDown 2s infinite;
}
.hero-scroll .line { width: 1px; height: 40px; background: rgba(255,255,255,0.5); }

@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ========== Page Hero (inner pages) ========== */
.page-hero {
  position: relative;
  padding: 180px 0 100px;
  text-align: center;
  overflow: hidden;
}
.page-hero .hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.page-hero .hero-bg::after { content: ''; position: absolute; inset: 0; background: rgba(30,25,20,0.55); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: white; margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* ========== About / What We Do ========== */
.about-section { padding: 100px 0; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-video { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-image::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 60%;
  height: 60%;
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  z-index: -1;
}

.about-text h2 { margin-bottom: 24px; }
.about-text p { color: var(--text-light); margin-bottom: 16px; font-size: 1.02rem; }
.about-text .btn { margin-top: 20px; }

/* ========== Features / Difference ========== */
.features-section {
  padding: 100px 0;
  background: var(--bg-alt);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.feature-card {
  background: white;
  padding: 40px 32px;
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
  border: 1px solid transparent;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px var(--shadow);
  border-color: var(--border);
}
.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: var(--bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.feature-card .service-category-image {
  margin: 0 auto 20px;
  display: block;
}
.value-card .service-category-image {
  margin: 0 auto 20px;
  display: block;
}
.feature-card h4 { margin-bottom: 12px; font-family: var(--font-heading); }
.feature-card p { color: var(--text-light); font-size: 0.95rem; }

/* ========== Services Preview ========== */
.services-section { padding: 100px 0; }

.services-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.services-tabs button {
  padding: 10px 28px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-light);
  border: 1.5px solid var(--border);
  transition: var(--transition);
}
.services-tabs button.active,
.services-tabs button:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.service-list { display: flex; flex-direction: column; gap: 16px; max-width: 900px; margin: 0 auto; }

.service-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 28px 32px;
  background: white;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.service-item:hover { box-shadow: 0 4px 20px var(--shadow); border-color: var(--accent); }

.service-info { flex: 1; }
.service-info h4 { font-family: var(--font-heading); margin-bottom: 6px; font-size: 1.15rem; }
.service-info .duration { font-size: 0.82rem; color: var(--primary); font-weight: 600; letter-spacing: 0.5px; margin-bottom: 8px; }
.service-info p { color: var(--text-light); font-size: 0.92rem; line-height: 1.6; }

/* ========== Service Comparison ========== */
.service-compare-section {
  padding: 80px 0;
  background: var(--bg-alt);
}
.service-compare-wrapper {
  max-width: 1000px;
  margin: 40px auto 0;
  padding: 0 20px;
}
.service-compare-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 8px 30px var(--shadow);
  display: block;
}
@media (max-width: 768px) {
  .service-compare-section { padding: 60px 0; }
}

/* ========== The D&R Experience ========== */
.experience-section {
  padding: 100px 0;
  background: white;
}

/* Process Timeline */
.process-timeline {
  max-width: 720px;
  margin: 48px auto 0;
  text-align: left;
}
.process-step {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  position: relative;
}
.process-step + .process-step {
  border-top: 1px solid var(--border);
}
.step-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin-top: 2px;
}
.step-content h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: var(--text);
}
.step-content p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0;
}

/* Immersive Experience */
.immersive-section {
  margin-top: 56px;
  background: #F9F6F0;
  border-radius: var(--radius);
  padding: 48px 40px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.immersive-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(192,139,92,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.immersive-content h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 16px;
  color: var(--text);
}
.immersive-content p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 660px;
  margin: 0 auto;
}

/* ========== Licensed Professionals ========== */
.licensed-section {
  padding: 80px 0;
  background: var(--bg-alt);
}
.licensed-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
}
.licensed-text {
  flex: 1;
}
.licensed-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(192,139,92,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.licensed-text .section-title {
  font-size: 1.6rem;
  margin-bottom: 16px;
}
.licensed-text .section-desc {
  max-width: 520px;
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.7;
}
.licensed-image {
  flex: 1;
}
.licensed-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 8px 30px var(--shadow);
  display: block;
}

@media (max-width: 768px) {
  .licensed-wrapper {
    flex-direction: column;
    gap: 32px;
  }
  .licensed-text .section-title {
    text-align: center;
  }
  .licensed-text .section-desc {
    text-align: center;
    margin: 0 auto;
  }
  .licensed-icon {
    margin: 0 auto 20px;
  }
}

/* ========== Testimonials ========== */
.testimonials-section {
  padding: 80px 0;
  background: var(--bg-dark);
  color: var(--text-white);
}
.testimonials-section .section-label { color: var(--accent); }
.testimonials-section .section-title { color: white; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--transition);
}
.testimonial-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }

.testimonial-stars { color: var(--accent); font-size: 0.85rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card blockquote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author { font-weight: 600; font-size: 0.88rem; color: var(--accent); }

/* ========== FAQ Accordion ========== */
.faq-accordion { width: 100%; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  background: #FFF9F2;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item[open] {
  box-shadow: var(--shadow);
}
.faq-question {
  padding: 18px 48px 18px 20px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  position: relative;
  color: var(--text);
  transition: color 0.2s ease;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--accent);
  transition: transform 0.3s ease;
}
.faq-item[open] .faq-question::after {
  content: '−';
}
.faq-question:hover { color: var(--accent); }
.faq-answer {
  padding: 0 20px 18px;
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.95rem;
  animation: faqFadeIn 0.3s ease;
}
@keyframes faqFadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========== Gallery Carousel ========== */
.gallery-carousel-section {
  padding: 80px 0;
  background: var(--bg-alt);
  overflow: hidden;
}
.gallery-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.carousel-track {
  display: flex;
  gap: 16px;
  animation: carouselScroll 30s linear infinite;
  width: max-content;
}
.carousel-track:hover {
  animation-play-state: paused;
}
.carousel-slide {
  flex-shrink: 0;
  width: 300px;
  height: 220px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.carousel-slide:hover img {
  transform: scale(1.05);
}
@keyframes carouselScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-10 * (300px + 16px))); }
}
@media (max-width: 768px) {
  .carousel-slide { width: 240px; height: 180px; }
  @keyframes carouselScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-10 * (240px + 16px))); }
  }
  .gallery-carousel-section { padding: 60px 0; }
}

/* ========== Locations ========== */
.locations-section {
  padding: 0;
  background: transparent;
  overflow: hidden;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.location-card {
  background: white;
  border-radius: var(--radius);
  padding: 40px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.location-card:hover { box-shadow: 0 8px 32px var(--shadow); }
.location-card h3 { font-family: var(--font-heading); margin-bottom: 16px; font-size: 1.4rem; }
.location-detail { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; color: var(--text-light); font-size: 0.95rem; }
.location-detail .icon { font-size: 1.1rem; margin-top: 2px; }

/* ========== Services Full Page ========== */
.services-full { padding: 80px 0; }

.service-category { margin-bottom: 64px; }
.service-category-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.service-category-header h2 { font-size: 1.8rem; }
.service-category-header .cat-icon { font-size: 1.5rem; }

.service-category-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--border);
  box-shadow: 0 4px 12px var(--shadow);
}

.service-card-full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 20px;
}

.service-card-item {
  background: #F3EFE8;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
}
.service-card-item:hover { box-shadow: 0 8px 32px var(--shadow); border-color: var(--accent); }
.service-card-item h4 { font-family: var(--font-heading); font-size: 1.2rem; margin-bottom: 8px; }
.service-card-item .duration-badge {
  display: inline-block;
  background: var(--bg-alt);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
}
.service-card-item .price-badge {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 12px;
  margin-left: 6px;
}
.service-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.service-meta .duration-badge,
.service-meta .price-badge { margin-bottom: 0; }

.service-card-buttons {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.service-card-buttons .btn {
  font-size: 0.72rem;
  padding: 5px 14px;
}

.price-original {
  text-decoration: line-through;
  color: var(--text-light);
  font-size: 0.78rem;
  font-weight: 400;
  margin-right: 4px;
}
.service-card-item p { color: var(--text-light); font-size: 0.92rem; line-height: 1.65; }

/* ========== Add-ons grid ========== */
.addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.addon-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 24px;
  transition: var(--transition);
}
.addon-card:hover { box-shadow: 0 4px 16px var(--shadow); border-color: var(--accent); }
.addon-card h4 { font-family: var(--font-heading); font-size: 1.05rem; margin-bottom: 8px; }
.addon-card p { color: var(--text-light); font-size: 0.88rem; line-height: 1.6; }

/* ========== About Full Page ========== */
.about-full { padding: 80px 0; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.value-card {
  text-align: center;
  padding: 32px 24px;
}
.value-card .value-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: var(--bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}
.value-card h4 { font-family: var(--font-heading); margin-bottom: 12px; }
.value-card p { color: var(--text-light); font-size: 0.95rem; }

.team-section { padding: 80px 0; background: var(--bg-alt); }

.how-it-works {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.step-card {
  text-align: center;
  padding: 32px 20px;
  position: relative;
}
.step-number {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
}
.step-card h4 { margin-bottom: 8px; font-family: var(--font-heading); }
.step-card p { color: var(--text-light); font-size: 0.9rem; }

.benefits-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.benefit-item {
  display: flex;
  gap: 16px;
  padding: 28px;
  background: white;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.benefit-item .benefit-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.benefit-item h4 { margin-bottom: 6px; font-family: var(--font-heading); }
.benefit-item p { color: var(--text-light); font-size: 0.9rem; }

/* ========== Offers Page ========== */
.offers-section { padding: 80px 0; }

.offers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.offer-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: white;
  transition: var(--transition);
}
.offer-card:hover { box-shadow: 0 12px 40px var(--shadow); transform: translateY(-4px); }

.offer-image {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.offer-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--primary);
  color: white;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.offer-content { padding: 28px; }
.offer-content h3 { font-family: var(--font-heading); margin-bottom: 10px; font-size: 1.3rem; }
.offer-content p { color: var(--text-light); font-size: 0.92rem; margin-bottom: 20px; line-height: 1.65; }

/* ========== Contact Page ========== */
.contact-section { padding: 80px 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
  background: white;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(139,115,85,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.contact-info-block { padding: 20px 0; }
.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-info-item .ci-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.contact-info-item h4 { font-family: var(--font-heading); margin-bottom: 4px; }
.contact-info-item p { color: var(--text-light); font-size: 0.92rem; }

/* ========== Footer ========== */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo { display: inline-block; margin-bottom: 16px; }
.footer-brand .nav-logo img { height: 44px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 280px; }

.footer h4 {
  color: white;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.footer ul li { margin-bottom: 10px; }
.footer ul a { font-size: 0.9rem; color: rgba(255,255,255,0.6); }
.footer ul a:hover { color: var(--accent); }

.footer-contact p { font-size: 0.9rem; margin-bottom: 8px; }
.footer-contact .btn { font-size: 0.75rem; padding: 6px 16px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.footer-social { display: flex; gap: 16px; }
.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}
.footer-social a:hover { border-color: var(--accent); color: var(--accent); }

/* ========== Gallery ========== */
.gallery-section { padding: 80px 0; }

.gallery-filters {
  display: flex; gap: 8px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 48px;
}
.gallery-filter {
  background: transparent; border: 1.5px solid var(--border);
  padding: 8px 24px; border-radius: 30px; font-family: 'Inter', sans-serif;
  font-size: 0.85rem; font-weight: 500; color: var(--text-light);
  cursor: pointer; transition: var(--transition);
}
.gallery-filter:hover { border-color: var(--primary); color: var(--primary); }
.gallery-filter.active {
  background: var(--primary); border-color: var(--primary); color: white;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.gallery-item {
  position: relative; overflow: hidden; border-radius: 12px;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }

.gallery-item-tall { grid-row: span 2; }
.gallery-item-wide { grid-column: span 2; }

.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(45,31,21,0.85) 0%, transparent 60%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px; opacity: 0; transition: opacity 0.4s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay .gallery-icon {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.2); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: white;
}
.gallery-overlay h4 {
  color: white; font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 500; margin-bottom: 4px;
}
.gallery-overlay p { color: rgba(255,255,255,0.75); font-size: 0.82rem; margin: 0; }

/* ========== Lightbox ========== */
.lightbox {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,0.92); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.lightbox.open { opacity: 1; pointer-events: all; }

.lightbox-content {
  max-width: 85vw; max-height: 85vh; position: relative;
}
.lightbox-content img {
  max-width: 85vw; max-height: 85vh; object-fit: contain;
  border-radius: 8px; display: block;
}

.lightbox-close {
  position: absolute; top: 20px; right: 24px;
  background: none; border: none; color: white; font-size: 2.2rem;
  cursor: pointer; z-index: 10; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; transition: background 0.3s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.1); }

.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1); border: none; color: white;
  width: 48px; height: 48px; border-radius: 50%;
  font-size: 1.4rem; cursor: pointer; transition: background 0.3s;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.25); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ========== Animations ========== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s 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; }

/* ========== Responsive ========== */
@media (max-width: 1024px) {
  .features-grid, .testimonials-grid, .values-grid { grid-template-columns: repeat(2, 1fr); }
  .how-it-works { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 200px; }
}

@media (max-width: 768px) {
  .service-category-image { width: 140px; height: 140px; }
  .nav-links { 
    position: fixed; top: 0; right: -100%; width: 80%; max-width: 360px; height: 100vh;
    background: var(--bg); flex-direction: column; justify-content: center;
    padding: 40px; gap: 24px; transition: var(--transition);
    box-shadow: -8px 0 32px var(--shadow-lg);
  }
  .nav-links.open { right: 0; }
  .nav-links a { color: var(--text) !important; font-size: 1.1rem; }
  .nav-toggle { display: flex; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image { max-width: 400px; margin: 0 auto; }
  .features-grid, .testimonials-grid, .values-grid { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .offers-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-item-wide { grid-column: span 1; }
  .lightbox-content img { max-width: 95vw; max-height: 80vh; }
  .lightbox-nav { width: 40px; height: 40px; font-size: 1.1rem; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .service-card-full { grid-template-columns: 1fr; }
  .how-it-works { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 2.2rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .how-it-works { grid-template-columns: 1fr; }
}
