/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --primary: hsl(0, 75%, 30%);
  --primary-fg: #ffffff;
  --secondary: hsl(43, 85%, 55%);
  --secondary-fg: #1a1a1a;
  --background: #ffffff;
  --foreground: #1a1a1a;
  --card: #ffffff;
  --muted: hsl(0, 0%, 95%);
  --muted-fg: hsl(0, 0%, 40%);
  --border: hsl(0, 0%, 88%);
  --accent: hsl(25, 70%, 50%);
  --radius: 0.75rem;
  --gradient-gold: linear-gradient(135deg, hsl(43,85%,55%), hsl(25,70%,50%));
  --shadow-elegant: 0 10px 40px -10px rgba(0,0,0,0.15);
  --shadow-card: 0 4px 20px -4px rgba(0,0,0,0.1);
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 14px; scroll-behavior: smooth; }
@media (min-width: 640px) { html { font-size: 15px; } }
@media (min-width: 768px) { html { font-size: 16px; } }

body {
  font-family: var(--font-body);
  background: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); }
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; }

/* ============================================================
   UTILITIES
   ============================================================ */
.container { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }
.bg-white { background: var(--background); }
.bg-muted { background: var(--muted); }

.gradient-text {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section { padding: 3rem 0; }
@media (min-width: 768px) { .section { padding: 5rem 0; } }

.section-header { text-align: center; max-width: 48rem; margin: 0 auto 2.5rem; }
@media (min-width: 768px) { .section-header { margin-bottom: 4rem; } }

.section-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(var(--primary-rgb, 153,0,0), 0.1);
  border: 1px solid rgba(153,0,0,0.3);
  border-radius: 9999px; padding: 0.375rem 0.875rem;
  font-size: 0.75rem; font-weight: 700; color: var(--primary);
  text-transform: uppercase; letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
.section-tag--gold {
  background: rgba(200,160,50,0.1);
  border-color: rgba(200,160,50,0.3);
}

.section-title {
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 700; line-height: 1.2;
  margin-bottom: 0.75rem;
}

.section-desc {
  font-size: 0.9rem; color: var(--muted-fg); line-height: 1.7;
}
@media (min-width: 768px) { .section-desc { font-size: 1.1rem; } }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes floatAnim {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
.float-anim { animation: floatAnim 3s ease-in-out infinite; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 40;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 4px 20px -4px rgba(0,0,0,0.4);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.4rem 0;
}
@media (min-width: 768px) { .header-inner { padding: 0.6rem 0; } }
@media (min-width: 1024px) { .header-inner { padding: 0.75rem 0; } }

/* LOGO */
.logo-link { display: flex; align-items: center; gap: 0.75rem; }

.logo-img { height: 5.5rem; width: auto; }
@media (min-width: 640px)  { .logo-img { height: 6.5rem; } }
@media (min-width: 768px)  { .logo-img { height: 7rem; } }
@media (min-width: 1024px) { .logo-img { height: 7.5rem; } }

.logo-text { display: flex; flex-direction: column; line-height: 1.2; }

.logo-name {
  font-family: var(--font-heading); font-weight: 700;
  color: #ffffff;
  font-size: 1.3rem;
  letter-spacing: 0.01em;
}
@media (min-width: 640px)  { .logo-name { font-size: 1.5rem; } }
@media (min-width: 768px)  { .logo-name { font-size: 1.7rem; } }
@media (min-width: 1024px) { .logo-name { font-size: 1.9rem; } }

.logo-sub {
  font-size: 0.85rem; font-weight: 700;
  color: var(--secondary);
  letter-spacing: 0.04em;
}
@media (min-width: 640px)  { .logo-sub { font-size: 0.95rem; } }
@media (min-width: 768px)  { .logo-sub { font-size: 1.05rem; } }
@media (min-width: 1024px) { .logo-sub { font-size: 1.15rem; } }

/* DESKTOP NAV */
.main-nav { display: none; align-items: center; gap: 1.5rem; }
@media (min-width: 1024px) { .main-nav { display: flex; gap: 2rem; } }

.nav-link {
  font-size: 0.95rem; font-weight: 800;
  color: #ffffff;
  text-transform: uppercase; letter-spacing: 0.08em;
  transition: color 0.3s;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}
@media (min-width: 1024px) { .nav-link { font-size: 1rem; } }
.nav-link:hover { color: var(--secondary); text-shadow: none; }

/* CALL BUTTON */
.header-cta { display: none; }
@media (min-width: 1024px) { .header-cta { display: flex; } }

.btn-call {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--primary); color: #ffffff;
  padding: 0.625rem 1.25rem; border-radius: 9999px;
  font-weight: 700; font-size: 0.875rem;
  transition: opacity 0.3s; box-shadow: var(--shadow-elegant);
}
.btn-call:hover { opacity: 0.9; }

/* HAMBURGER */
.menu-toggle { display: flex; padding: 0.5rem; color: #ffffff; }
@media (min-width: 1024px) { .menu-toggle { display: none; } }

/* MOBILE NAV DROPDOWN */
.mobile-nav {
  display: none; border-top: 1px solid rgba(255,255,255,0.1);
  animation: fadeIn 0.3s ease;
}
.mobile-nav.open { display: block; }
.mobile-nav-links { display: flex; flex-direction: column; gap: 0.5rem; padding: 1rem 0; }

.mobile-nav-link {
  font-weight: 800; font-size: 1rem;
  color: #ffffff;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 0.7rem 0; transition: color 0.3s;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}
.mobile-nav-link:last-of-type { border-bottom: none; }
.mobile-nav-link:hover { color: var(--secondary); text-shadow: none; }
.mobile-call { justify-content: center; margin-top: 0.75rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
  position: relative; min-height: 100vh;
  padding-top: 5rem; overflow: hidden;
}
@media (min-width: 768px) { .hero-section { padding-top: 6rem; } }

.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg-img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.85) 50%, rgba(0,0,0,0.5) 100%);
}

/* ---- SLIDESHOW ---- */
.hero-slideshow {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
}

.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  z-index: 0;
}
.hero-slide.active { opacity: 1; z-index: 1; }

.hero-slide .hero-bg-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}

.hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.88) 0%,
    rgba(0,0,0,0.65) 55%,
    rgba(0,0,0,0.35) 100%
  );
}

/* Arrows */
.slide-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10; background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.4);
  color: #fff; width: 2.75rem; height: 2.75rem;
  border-radius: 9999px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s, border-color 0.3s;
  cursor: pointer;
}
@media (min-width: 768px) { .slide-arrow { width: 3.25rem; height: 3.25rem; } }
.slide-arrow:hover { background: var(--primary); border-color: var(--primary); }
.slide-arrow--prev { left: 1rem; }
.slide-arrow--next { right: 1rem; }
@media (min-width: 768px) { .slide-arrow--prev { left: 1.5rem; } .slide-arrow--next { right: 1.5rem; } }

/* Dots */
.slide-dots {
  position: absolute; bottom: 1.25rem; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; gap: 0.5rem; align-items: center;
}
.slide-dot {
  width: 0.5rem; height: 0.5rem; border-radius: 9999px;
  background: rgba(255,255,255,0.45); border: none; cursor: pointer;
  transition: background 0.3s, width 0.3s;
  padding: 0;
}
.slide-dot.active {
  background: var(--secondary);
  width: 1.5rem;
}

.hero-section .container { position: relative; z-index: 10; }
.hero-grid {
  display: grid; gap: 2rem; align-items: center;
  min-height: calc(100vh - 5rem); padding: 2rem 0;
}
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1fr 1fr; } }

.hero-content { display: flex; flex-direction: column; gap: 1.25rem; }
@media (min-width: 768px) { .hero-content { gap: 2rem; } }

.badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border-radius: 9999px; padding: 0.375rem 0.875rem;
  font-size: 0.75rem; font-weight: 700;
}
@media (min-width: 768px) { .badge { font-size: 0.875rem; padding: 0.5rem 1rem; } }
.badge-secondary {
  background: rgba(200,160,50,0.2);
  border: 1px solid rgba(200,160,50,0.4);
  color: var(--secondary);
}

.hero-title {
  font-size: clamp(1.75rem, 5vw, 3.75rem);
  font-weight: 700; color: #fff; line-height: 1.15;
}
.text-secondary { color: var(--secondary); }

.hero-subtitle {
  font-size: 1rem; color: rgba(255,255,255,0.8); font-weight: 500;
}
@media (min-width: 768px) { .hero-subtitle { font-size: 1.25rem; } }

.hero-badges { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-badge-item { display: flex; align-items: center; gap: 0.5rem; }
.hero-badge-item span { font-size: 0.875rem; font-weight: 600; color: rgba(255,255,255,0.9); }
.hero-badge-icon {
  width: 2.5rem; height: 2.5rem; border-radius: 9999px;
  background: rgba(153,0,0,0.4); display: flex; align-items: center; justify-content: center;
  color: var(--secondary);
}
.hero-badge-icon--gold { background: rgba(200,160,50,0.2); }

/* ============================================================
   BOOKING FORM
   ============================================================ */
.booking-form {
  background: var(--card); padding: 1.25rem;
  border-radius: 1rem; box-shadow: var(--shadow-elegant);
  border: 2px solid var(--border);
}
@media (min-width: 768px) { .booking-form { padding: 2rem; } }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (min-width: 768px) { .form-grid { gap: 1.25rem; } }

.form-group { display: flex; flex-direction: column; }
.form-group--full { grid-column: 1 / -1; }

.form-label { font-size: 0.75rem; font-weight: 700; margin-bottom: 0.375rem; }
@media (min-width: 768px) { .form-label { font-size: 0.875rem; margin-bottom: 0.5rem; } }

.form-input {
  width: 100%; padding: 0.625rem 0.75rem;
  border: 2px solid var(--border); border-radius: 0.5rem;
  background: var(--background); color: var(--foreground);
  font-family: var(--font-body); font-size: 0.875rem; font-weight: 500;
  transition: border-color 0.3s; outline: none;
}
@media (min-width: 768px) { .form-input { padding: 0.75rem 1rem; font-size: 1rem; } }
.form-input:focus { border-color: var(--primary); }
.form-input::placeholder { color: var(--muted-fg); }
.form-textarea { resize: none; }

.input-with-icon { position: relative; }
.input-with-icon .form-input { padding-right: 2.5rem; }
.location-btn {
  position: absolute; right: 0.5rem; top: 50%; transform: translateY(-50%);
  padding: 0.375rem; color: var(--primary); transition: color 0.3s;
}
.location-btn:hover { color: var(--accent); }

.btn-submit {
  width: 100%; margin-top: 1.25rem;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: var(--primary); color: var(--primary-fg);
  padding: 0.875rem 1rem; border-radius: 0.5rem;
  font-weight: 700; font-size: 0.875rem;
  transition: opacity 0.3s; box-shadow: var(--shadow-elegant);
  font-family: var(--font-body);
}
@media (min-width: 768px) { .btn-submit { font-size: 1.125rem; padding: 1rem; margin-top: 1.5rem; } }
.btn-submit:hover { opacity: 0.9; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid; gap: 2rem; align-items: center;
}
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; gap: 3rem; } }

.about-image-wrap { position: relative; order: 2; }
@media (min-width: 1024px) { .about-image-wrap { order: 1; } }

.about-image-box {
  border-radius: 1rem; overflow: hidden;
  box-shadow: var(--shadow-elegant); border: 1px solid var(--border);
  aspect-ratio: 4/3;
}
@media (min-width: 1024px) { .about-image-box { aspect-ratio: auto; height: 500px; } }
.about-img { width: 100%; height: 100%; object-fit: cover; }

/* Dark branded image variant */
.about-image-box--dark {
  background: #0a0a0a;
  border-color: rgba(200,160,50,0.3);
  box-shadow: 0 10px 40px -10px rgba(200,160,50,0.2);
}
.about-img--contain { object-fit: contain; background: #0a0a0a; }

.about-badge {
  position: absolute; bottom: -1rem; right: 1rem;
  background: var(--secondary); color: #000;
  padding: 0.75rem 1.25rem; border-radius: 1rem;
  box-shadow: var(--shadow-elegant);
}
@media (min-width: 768px) { .about-badge { bottom: -1.5rem; right: -1.5rem; padding: 1rem 2rem; } }
.about-badge-num { font-family: var(--font-heading); font-size: 1.75rem; font-weight: 700; }
@media (min-width: 768px) { .about-badge-num { font-size: 2rem; } }
.about-badge-text { font-size: 0.75rem; font-weight: 700; }
@media (min-width: 768px) { .about-badge-text { font-size: 0.875rem; } }

.about-content { order: 1; display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 768px) { .about-content { gap: 1.5rem; } }
@media (min-width: 1024px) { .about-content { order: 2; } }

.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
@media (min-width: 768px) { .features-grid { gap: 1rem; } }

.feature-item { display: flex; align-items: center; gap: 0.5rem; }
.feature-icon { color: var(--primary); flex-shrink: 0; }
.feature-item span { font-size: 0.875rem; font-weight: 600; }
@media (min-width: 768px) { .feature-item span { font-size: 1rem; } }

.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--primary); color: var(--primary-fg);
  padding: 0.75rem 1.5rem; border-radius: 9999px;
  font-weight: 700; font-size: 0.875rem;
  transition: opacity 0.3s; box-shadow: var(--shadow-elegant);
  align-self: flex-start;
}
@media (min-width: 768px) { .btn-primary { padding: 1rem 2rem; font-size: 1rem; } }
.btn-primary:hover { opacity: 0.9; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--card); border-radius: 0.75rem;
  border: 1px solid var(--border); overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s;
}
.service-card:hover { box-shadow: var(--shadow-elegant); }

.service-img-wrap { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.service-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.service-card:hover .service-img { transform: scale(1.1); }
.service-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}
.service-icon-badge {
  position: absolute; bottom: 0.75rem; left: 0.75rem;
  width: 2.5rem; height: 2.5rem; border-radius: 9999px;
  background: var(--secondary); display: flex; align-items: center; justify-content: center;
  color: #000;
}
@media (min-width: 768px) { .service-icon-badge { width: 3rem; height: 3rem; bottom: 1rem; left: 1rem; } }

.service-body { padding: 1rem 1.25rem; }
@media (min-width: 768px) { .service-body { padding: 1.25rem 1.5rem; } }
.service-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
@media (min-width: 768px) { .service-title { font-size: 1.25rem; margin-bottom: 0.75rem; } }
.service-desc { font-size: 0.875rem; color: var(--muted-fg); margin-bottom: 0.75rem; line-height: 1.6; }
@media (min-width: 768px) { .service-desc { font-size: 1rem; margin-bottom: 1rem; } }
.service-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--primary); font-weight: 700; font-size: 0.875rem;
  transition: gap 0.3s;
}
@media (min-width: 768px) { .service-link { font-size: 1rem; } }
.service-card:hover .service-link { gap: 0.75rem; }

/* ============================================================
   MATERIALS
   ============================================================ */
.materials-grid {
  display: grid; gap: 2rem; align-items: center;
}
@media (min-width: 1024px) { .materials-grid { grid-template-columns: 1fr 1fr; gap: 3rem; } }

.materials-content { display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 768px) { .materials-content { gap: 1.5rem; } }

.materials-list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem;
}
@media (min-width: 640px) { .materials-list { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) { .materials-list { gap: 0.75rem; } }

.material-item {
  display: flex; align-items: center; gap: 0.5rem;
  background: var(--background); padding: 0.5rem 0.75rem;
  border-radius: 0.5rem; border: 1px solid var(--border);
  font-size: 0.75rem; font-weight: 600;
  transition: border-color 0.3s;
}
@media (min-width: 768px) { .material-item { padding: 0.75rem 1rem; font-size: 0.875rem; border-radius: 0.75rem; } }
.material-item:hover { border-color: rgba(153,0,0,0.3); }
.material-dot { width: 0.5rem; height: 0.5rem; border-radius: 9999px; background: var(--primary); flex-shrink: 0; }

.materials-images { position: relative; }
.materials-img-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
@media (min-width: 768px) { .materials-img-grid { gap: 1rem; } }
.materials-img {
  width: 100%; height: 12rem; object-fit: cover;
  border-radius: 0.75rem; box-shadow: var(--shadow-elegant); border: 1px solid var(--border);
}
@media (min-width: 768px) { .materials-img { height: 16rem; border-radius: 1rem; } }
.materials-img--offset { margin-top: 1.5rem; }
@media (min-width: 768px) { .materials-img--offset { margin-top: 2rem; } }

.materials-badge {
  position: absolute; bottom: -0.75rem; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: var(--primary-fg);
  padding: 0.5rem 1rem; border-radius: 9999px;
  font-size: 0.75rem; font-weight: 700; white-space: nowrap;
  box-shadow: var(--shadow-elegant);
}
@media (min-width: 768px) { .materials-badge { bottom: -1rem; padding: 0.75rem 1.5rem; font-size: 0.875rem; } }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(4, 1fr); gap: 2rem; } }

.why-card {
  text-align: center; padding: 1rem;
  border-radius: 0.75rem; background: var(--card);
  border: 2px solid var(--border);
  transition: border-color 0.3s, box-shadow 0.3s;
}
@media (min-width: 768px) { .why-card { padding: 2rem; border-radius: 1rem; } }
.why-card:hover { border-color: rgba(153,0,0,0.4); box-shadow: var(--shadow-elegant); }

.why-icon {
  width: 3rem; height: 3rem; border-radius: 0.75rem;
  background: var(--primary); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem; color: var(--primary-fg);
  transition: transform 0.3s;
}
@media (min-width: 768px) { .why-icon { width: 4rem; height: 4rem; border-radius: 1rem; margin-bottom: 1.5rem; } }
.why-card:hover .why-icon { transform: scale(1.1); }

.why-title { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.5rem; }
@media (min-width: 768px) { .why-title { font-size: 1.25rem; margin-bottom: 0.75rem; } }
.why-desc { font-size: 0.75rem; color: var(--muted-fg); line-height: 1.5; }
@media (min-width: 768px) { .why-desc { font-size: 1rem; } }

/* ============================================================
   PROCESS
   ============================================================ */
.process-wrap { position: relative; }
.process-line {
  display: none;
  position: absolute; top: 50%; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, var(--primary), var(--secondary), var(--primary));
  transform: translateY(-50%); z-index: 0;
}
@media (min-width: 1024px) { .process-line { display: block; } }

.process-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; position: relative; z-index: 10;
}
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(4, 1fr); gap: 2rem; } }

.process-card {
  text-align: center; background: var(--card);
  padding: 1rem; border-radius: 0.75rem;
  box-shadow: var(--shadow-card); border: 1px solid var(--border);
  position: relative; transition: box-shadow 0.3s;
}
@media (min-width: 768px) { .process-card { padding: 2rem; border-radius: 1rem; } }
.process-card:hover { box-shadow: var(--shadow-elegant); }

.process-step-badge {
  position: absolute; top: -0.75rem; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: var(--primary-fg);
  font-size: 0.7rem; font-weight: 700; padding: 0.2rem 0.75rem; border-radius: 9999px;
}
@media (min-width: 768px) { .process-step-badge { font-size: 0.875rem; padding: 0.25rem 1rem; top: -1rem; } }

.process-icon {
  width: 3rem; height: 3rem; border-radius: 9999px;
  background: var(--muted); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin: 0.5rem auto 1rem; color: var(--primary);
}
@media (min-width: 768px) { .process-icon { width: 4rem; height: 4rem; margin: 0.5rem auto 1.5rem; } }

.process-title { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.5rem; }
@media (min-width: 768px) { .process-title { font-size: 1.25rem; margin-bottom: 0.75rem; } }
.process-desc { font-size: 0.75rem; color: var(--muted-fg); line-height: 1.5; }
@media (min-width: 768px) { .process-desc { font-size: 1rem; } }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid; gap: 1rem;
}
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (min-width: 1024px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
  background: var(--card); padding: 1.25rem;
  border-radius: 0.75rem; border: 2px solid var(--border);
  box-shadow: var(--shadow-card); transition: border-color 0.3s, box-shadow 0.3s;
}
@media (min-width: 768px) { .testimonial-card { padding: 2rem; border-radius: 1rem; } }
.testimonial-card:hover { border-color: rgba(153,0,0,0.3); box-shadow: var(--shadow-elegant); }

.quote-icon { color: rgba(153,0,0,0.3); margin-bottom: 0.75rem; }
@media (min-width: 768px) { .quote-icon { margin-bottom: 1rem; } }

.stars { color: var(--secondary); font-size: 1rem; margin-bottom: 0.75rem; letter-spacing: 0.1em; }
@media (min-width: 768px) { .stars { font-size: 1.25rem; margin-bottom: 1rem; } }

.testimonial-text {
  font-size: 0.875rem; color: rgba(26,26,26,0.8);
  line-height: 1.7; margin-bottom: 1rem;
}
@media (min-width: 768px) { .testimonial-text { font-size: 1rem; margin-bottom: 1.5rem; } }

.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
@media (min-width: 768px) { .testimonial-author { gap: 1rem; } }
.author-avatar {
  width: 2.5rem; height: 2.5rem; border-radius: 9999px;
  background: var(--primary); color: var(--primary-fg);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.875rem; flex-shrink: 0;
}
@media (min-width: 768px) { .author-avatar { width: 3rem; height: 3rem; font-size: 1rem; } }
.author-name { font-weight: 700; font-size: 0.875rem; }
@media (min-width: 768px) { .author-name { font-size: 1rem; } }
.author-location { font-size: 0.75rem; color: var(--muted-fg); }
@media (min-width: 768px) { .author-location { font-size: 0.875rem; } }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem;
}
@media (min-width: 768px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); gap: 1rem; } }

.gallery-item {
  position: relative; overflow: hidden; border-radius: 0.5rem;
  aspect-ratio: 1; cursor: pointer;
  border: 2px solid var(--border); transition: border-color 0.3s;
}
@media (min-width: 768px) { .gallery-item { border-radius: 0.75rem; } }
.gallery-item:hover { border-color: rgba(153,0,0,0.4); }

.gallery-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover .gallery-img { transform: scale(1.1); }

.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0); display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}
.gallery-item:hover .gallery-overlay { background: rgba(0,0,0,0.5); }
.gallery-overlay p {
  color: #fff; font-weight: 700; text-align: center; padding: 0.5rem;
  font-size: 0.75rem; opacity: 0; transition: opacity 0.3s;
}
@media (min-width: 768px) { .gallery-overlay p { font-size: 0.875rem; } }
.gallery-item:hover .gallery-overlay p { opacity: 1; }

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 100;
  background: rgba(0,0,0,0.9); align-items: center; justify-content: center; padding: 1rem;
}
.lightbox.open { display: flex; animation: fadeIn 0.3s ease; }
.lightbox-close {
  position: absolute; top: 1rem; right: 1rem;
  color: #fff; transition: color 0.3s; padding: 0.5rem;
}
@media (min-width: 768px) { .lightbox-close { top: 1.5rem; right: 1.5rem; } }
.lightbox-close:hover { color: var(--secondary); }
.lightbox-img { max-width: 100%; max-height: 90vh; object-fit: contain; border-radius: 0.75rem; }

/* ============================================================
   ENQUIRY
   ============================================================ */
.enquiry-grid { display: grid; gap: 1.5rem; align-items: start; }
@media (min-width: 1024px) { .enquiry-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }

.enquiry-info { display: flex; flex-direction: column; gap: 1.5rem; }

.map-wrap {
  border-radius: 1rem; overflow: hidden;
  border: 2px solid var(--border); box-shadow: var(--shadow-elegant);
}
.map-wrap iframe { display: block; height: 300px; }
@media (min-width: 768px) { .map-wrap iframe { height: 350px; } }

.contact-card {
  background: var(--card); padding: 1.25rem;
  border-radius: 1rem; border: 2px solid var(--border); box-shadow: var(--shadow-card);
}
@media (min-width: 768px) { .contact-card { padding: 1.5rem; } }
.contact-card-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 1rem; }
@media (min-width: 768px) { .contact-card-title { font-size: 1.25rem; } }

.contact-list { display: flex; flex-direction: column; gap: 0.75rem; }
.contact-item {
  display: flex; align-items: center; gap: 0.75rem;
  font-weight: 600; font-size: 0.9rem; color: rgba(26,26,26,0.8);
  transition: color 0.3s;
}
.contact-item:hover { color: var(--primary); }
.contact-icon {
  width: 2.5rem; height: 2.5rem; border-radius: 9999px;
  background: rgba(153,0,0,0.1); display: flex; align-items: center; justify-content: center;
  color: var(--primary); flex-shrink: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--foreground); color: var(--background); padding: 3rem 0; }
@media (min-width: 768px) { .site-footer { padding: 4rem 0; } }

.footer-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; } }

.footer-brand { grid-column: 1 / -1; }
@media (min-width: 1024px) { .footer-brand { grid-column: auto; } }

.footer-logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.footer-logo-img { height: 4rem; width: auto; }
@media (min-width: 768px) { .footer-logo-img { height: 5rem; } }
.footer-logo-name { display: block; font-family: var(--font-heading); font-weight: 700; color: var(--secondary); font-size: 1.1rem; }
@media (min-width: 768px) { .footer-logo-name { font-size: 1.25rem; } }
.footer-logo-sub { display: block; font-size: 0.875rem; font-weight: 600; color: rgba(255,255,255,0.7); }

.footer-brand-desc { color: rgba(255,255,255,0.6); font-size: 0.875rem; line-height: 1.7; }

.footer-col-title { font-family: var(--font-heading); font-weight: 700; color: var(--secondary); font-size: 1rem; margin-bottom: 1rem; }
@media (min-width: 768px) { .footer-col-title { font-size: 1.125rem; margin-bottom: 1.5rem; } }

.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
@media (min-width: 768px) { .footer-links { gap: 0.75rem; } }
.footer-links a, .footer-links span { color: rgba(255,255,255,0.6); font-size: 0.875rem; transition: color 0.3s; }
.footer-links a:hover { color: var(--secondary); }

.footer-contact { display: flex; flex-direction: column; gap: 0.75rem; }
@media (min-width: 768px) { .footer-contact { gap: 1rem; } }
.footer-contact li a, .footer-contact li span {
  display: flex; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.6); font-size: 0.875rem; transition: color 0.3s;
}
.footer-contact li a:hover { color: var(--secondary); }
.footer-contact svg { color: var(--secondary); flex-shrink: 0; }

.footer-areas { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 2rem; padding-top: 1.5rem; }
@media (min-width: 768px) { .footer-areas { margin-top: 3rem; padding-top: 2rem; } }
.footer-areas-title { font-family: var(--font-heading); font-weight: 700; color: var(--secondary); text-align: center; font-size: 1rem; margin-bottom: 0.75rem; }
@media (min-width: 768px) { .footer-areas-title { font-size: 1.125rem; margin-bottom: 1rem; } }

.footer-cities {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem; margin-bottom: 1.5rem;
}
@media (min-width: 640px) { .footer-cities { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) { .footer-cities { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .footer-cities { grid-template-columns: repeat(6, 1fr); } }
.footer-cities span {
  color: rgba(255,255,255,0.5); font-size: 0.75rem; text-align: center;
  padding: 0.375rem 0.5rem; border-radius: 0.5rem;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
}
@media (min-width: 768px) { .footer-cities span { font-size: 0.875rem; } }

.footer-seo-text {
  color: rgba(255,255,255,0.4); font-size: 0.75rem; text-align: center;
  max-width: 64rem; margin: 0 auto 1.5rem; line-height: 1.7;
}
@media (min-width: 768px) { .footer-seo-text { font-size: 0.875rem; } }

.footer-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; margin-bottom: 1.5rem; }
.footer-tags span {
  color: rgba(255,255,255,0.3); font-size: 0.65rem;
  border: 1px solid rgba(255,255,255,0.1); border-radius: 9999px; padding: 0.25rem 0.625rem;
}
@media (min-width: 768px) { .footer-tags span { font-size: 0.75rem; } }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-copy { color: rgba(255,255,255,0.4); font-size: 0.75rem; text-align: center; }
@media (min-width: 768px) { .footer-copy { font-size: 0.875rem; text-align: left; } }
.footer-legal { display: flex; gap: 1rem; }
.footer-legal a { color: rgba(255,255,255,0.4); font-size: 0.75rem; transition: color 0.3s; }
@media (min-width: 768px) { .footer-legal a { font-size: 0.875rem; } }
.footer-legal a:hover { color: var(--secondary); }

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.floating-btns {
  position: fixed; bottom: 1rem; left: 50%; transform: translateX(-50%);
  z-index: 50; display: flex; align-items: center; gap: 0.5rem;
}
@media (min-width: 640px) {
  .floating-btns { left: auto; right: 1.25rem; bottom: 1.25rem; transform: none; gap: 0.75rem; }
}

.float-btn {
  display: flex; align-items: center; gap: 0.375rem;
  height: 2.75rem; padding: 0 0.75rem; border-radius: 9999px;
  font-weight: 700; font-size: 0.7rem; box-shadow: var(--shadow-elegant);
  transition: opacity 0.3s; white-space: nowrap;
}
@media (min-width: 640px) { .float-btn { height: 3.5rem; padding: 0 1.25rem; font-size: 0.875rem; gap: 0.5rem; } }
.float-btn:hover { opacity: 0.9; }

.float-btn--primary { background: var(--primary); color: var(--primary-fg); }
.float-btn--whatsapp { background: #25D366; color: #fff; }
.float-btn--gold { background: var(--secondary); color: var(--secondary-fg); }

/* ============================================================
   ACTIVE NAV LINK
   ============================================================ */
.nav-link.active { color: var(--secondary); }

/* ============================================================
   DISABLED BUTTON STATE
   ============================================================ */
.location-btn:disabled { opacity: 0.5; cursor: not-allowed; }
