*, *::before, *::after { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
}

html { 
  scroll-behavior: smooth; 
}

body { 
  font-family: 'Barlow', sans-serif; 
  background: #ffffff; 
  color: #111111; 
  overflow-x: hidden; 
  -webkit-font-smoothing: antialiased; 
  line-height: 1.6;
}

/* ── SKIP TO CONTENT LINK (Accessibility) ── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: #111111;
  color: #ffffff;
  padding: 0.5rem 1rem;
  text-decoration: none;
  font-weight: 600;
  z-index: 1000;
  transition: top 0.3s;
  overflow: hidden;
}

.skip-link:focus {
  top: 0;
}

/* ── GLOBAL FOCUS STATES (Accessibility) ── */
*:focus {
  outline: 2px solid #111111;
  outline-offset: 2px;
}

*:focus:not(:focus-visible) {
  outline: none;
}

*:focus-visible {
  outline: 2px solid #111111;
  outline-offset: 2px;
}

/* Improved focus for interactive elements */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid #111111;
  outline-offset: 2px;
}

/* ── NAV ── */
nav {
  position: sticky; 
  top: 0; 
  left: 0; 
  width: 100%; 
  z-index: 100;
  background: rgba(255,255,255,0.97); 
  backdrop-filter: blur(8px);
  display: flex; 
  align-items: center; 
  justify-content: center;
  padding: 0 2rem; 
  height: 68px; 
  border-bottom: 2px solid #111111;
  position: relative;
}

.logo-wrap { 
  display: flex; 
  align-items: center; 
  gap: 0.8rem; 
  text-decoration: none;
  position: absolute;
  left: 2rem;
  top: 0;
  bottom: 0;
  margin: auto 0;
  height: fit-content;
}

.logo-img { 
  height: 48px; 
  width: auto; 
  display: block; 
  background: linear-gradient(135deg, #000000 0%, #404040 30%, #1a1a1a 50%, #404040 70%, #000000 100%); 
  background-size: 200% 200%; 
  border-radius: 50%; 
  padding: 3px; 
  animation: luxury-shimmer 8s ease-in-out infinite; 
}

nav ul { 
  list-style: none; 
  display: flex; 
  gap: 2rem; 
}

nav ul a { 
  color: #555555; 
  text-decoration: none; 
  font-size: 0.88rem; 
  text-transform: uppercase; 
  letter-spacing: 1px; 
  font-weight: 500; 
  transition: color 0.2s; 
}

nav ul a:hover { 
  color: #000000; 
}

.nav-cta { 
  background: linear-gradient(135deg, #000000 0%, #404040 30%, #1a1a1a 50%, #404040 70%, #000000 100%);
  background-size: 200% 200%;
  color: #ffffff; 
  padding: 0.55rem 1.4rem; 
  font-family: 'Barlow Condensed', sans-serif; 
  font-weight: 700; 
  text-transform: uppercase; 
  font-size: 0.9rem; 
  letter-spacing: 1px; 
  text-decoration: none; 
  transition: transform 0.2s ease, box-shadow 0.2s ease; 
  border: none; 
  cursor: pointer;
  animation: luxury-shimmer 8s ease-in-out infinite;
  position: absolute;
  right: 2rem;
}

.nav-cta:hover { 
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Hamburger */
.hamburger { 
  display: none; 
  flex-direction: column; 
  gap: 5px; 
  cursor: pointer; 
  padding: 4px; 
  background: none; 
  border: none; 
}

.hamburger span { 
  display: block; 
  width: 24px; 
  height: 2px; 
  background: #111111; 
  transition: all 0.3s; 
}

.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-menu { 
  display: none; 
  position: fixed; 
  top: 68px; 
  left: 0; 
  right: 0; 
  background: #ffffff; 
  border-bottom: 2px solid #111111; 
  z-index: 99; 
  padding: 1.5rem 2rem; 
  flex-direction: column; 
  gap: 1rem; 
}

.mobile-menu.open { 
  display: flex; 
}

.mobile-menu a { 
  color: #111111; 
  text-decoration: none; 
  font-family: 'Barlow Condensed', sans-serif; 
  font-size: 1.2rem; 
  font-weight: 700; 
  text-transform: uppercase; 
  letter-spacing: 1px; 
  border-bottom: 1px solid #eeeeee; 
  padding-bottom: 0.8rem; 
}

.mobile-menu a:last-child { 
  border-bottom: none; 
}

/* ── HERO ── */
.hero {
  min-height: calc(100vh - 68px);
  background-color: #ffffff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Crect x='0' y='0' width='30' height='15' fill='none' stroke='rgba(0,0,0,0.06)' stroke-width='1'/%3E%3Crect x='0' y='15' width='30' height='15' fill='none' stroke='rgba(0,0,0,0.06)' stroke-width='1'/%3E%3Crect x='30' y='0' width='15' height='30' fill='none' stroke='rgba(0,0,0,0.06)' stroke-width='1'/%3E%3Crect x='45' y='0' width='15' height='30' fill='none' stroke='rgba(0,0,0,0.06)' stroke-width='1'/%3E%3Crect x='0' y='30' width='15' height='30' fill='none' stroke='rgba(0,0,0,0.06)' stroke-width='1'/%3E%3Crect x='15' y='30' width='15' height='30' fill='none' stroke='rgba(0,0,0,0.06)' stroke-width='1'/%3E%3Crect x='30' y='30' width='30' height='15' fill='none' stroke='rgba(0,0,0,0.06)' stroke-width='1'/%3E%3Crect x='30' y='45' width='30' height='15' fill='none' stroke='rgba(0,0,0,0.06)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 60px 60px;
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  justify-content: center;
  text-align: center; 
  padding: 2rem 2rem 80px;
  border-bottom: 1px solid #eeeeee;
  overflow: visible;
}

.eyebrow { 
  display: inline-flex; 
  align-items: center; 
  gap: 0.7rem; 
  font-family: 'Barlow Condensed', sans-serif; 
  font-size: 0.78rem; 
  font-weight: 700; 
  letter-spacing: 4px; 
  text-transform: uppercase; 
  background: linear-gradient(135deg, #000000 0%, #404040 50%, #000000 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: luxury-shimmer 8s ease-in-out infinite;
  margin-bottom: 1.2rem; 
}

.eyebrow::before, .eyebrow::after { 
  content: ''; 
  display: block; 
  width: 32px; 
  height: 1px; 
  background: #111111; 
}

.hero h1 { 
  font-family: 'Barlow Condensed', sans-serif; 
  font-size: clamp(3rem, 8vw, 6.5rem); 
  font-weight: 900; 
  text-transform: uppercase; 
  line-height: 0.95; 
  background: linear-gradient(135deg, #000000 0%, #404040 30%, #1a1a1a 50%, #404040 70%, #000000 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: luxury-shimmer 8s ease-in-out infinite;
  margin-bottom: 1.8rem; 
  max-width: 1000px; 
  position: relative;
}

@keyframes luxury-shimmer {
  0%, 100% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
}

.hero h1 em { 
  font-style: normal; 
  text-decoration: underline; 
  text-decoration-thickness: 4px; 
  text-underline-offset: 6px; 
}

.hero p { 
  font-size: 1.1rem; 
  color: #555555; 
  max-width: 560px; 
  line-height: 1.7; 
  margin-bottom: 2rem; 
}

.hero-btns { 
  display: flex; 
  gap: 1rem; 
  justify-content: center; 
  flex-wrap: wrap; 
  margin-bottom: 2.5rem; 
}

.btn-p { 
  background: linear-gradient(135deg, #000000 0%, #404040 30%, #1a1a1a 50%, #404040 70%, #000000 100%);
  background-size: 200% auto;
  animation: luxury-shimmer 8s ease-in-out infinite;
  color: #fff; 
  padding: 1rem 2.5rem; 
  font-family: 'Barlow Condensed', sans-serif; 
  font-weight: 700; 
  font-size: 1.1rem; 
  text-transform: uppercase; 
  letter-spacing: 1px; 
  border: none; 
  cursor: pointer; 
  text-decoration: none; 
  display: inline-block; 
  transition: transform 0.2s, box-shadow 0.2s; 
}

.btn-p:hover { 
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn-o { 
  background: transparent; 
  color: #111111; 
  padding: 1rem 2.5rem; 
  font-family: 'Barlow Condensed', sans-serif; 
  font-weight: 700; 
  font-size: 1.1rem; 
  text-transform: uppercase; 
  letter-spacing: 1px; 
  border: 2px solid #111111; 
  cursor: pointer; 
  text-decoration: none; 
  display: inline-block; 
  transition: all 0.2s; 
}

.btn-o:hover { 
  background: #f5f5f5; 
}

.trust { 
  display: flex; 
  gap: 2.5rem; 
  justify-content: center; 
  flex-wrap: wrap; 
}

.trust-badge { 
  display: flex; 
  align-items: center; 
  gap: 0.5rem; 
  font-size: 0.82rem; 
  color: #444444; 
  font-weight: 500; 
}

.trust-badge em { 
  color: #111111; 
  font-style: normal; 
  font-weight: 700; 
}

/* ── STATS ── */
.stats { 
  background: #111111; 
  padding: 1.5rem 2rem; 
  display: flex; 
  justify-content: center; 
  gap: 4rem; 
  flex-wrap: wrap; 
}

.stat { 
  text-align: center; 
}

.stat-n { 
  font-family: 'Barlow Condensed', sans-serif; 
  font-size: 2.2rem; 
  font-weight: 900; 
  color: #ffffff; 
  line-height: 1; 
}

.stat-l { 
  font-size: 0.72rem; 
  font-weight: 700; 
  color: rgba(255,255,255,0.85); 
  text-transform: uppercase; 
  letter-spacing: 1px; 
}

/* ── HOW IT WORKS ── */
.how { 
  padding: 5rem 2rem; 
  background: #f8f8f8; 
}

.how-steps { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
  gap: 3rem; 
  max-width: 1200px; 
  margin: 2.5rem auto 0; 
}

.how-step { 
  text-align: center; 
}

.how-num { 
  font-family: 'Barlow Condensed', sans-serif; 
  font-size: 1rem; 
  font-weight: 700; 
  color: #999999; 
  letter-spacing: 2px; 
  margin-bottom: 1rem; 
}

.how-step h3 { 
  font-family: 'Barlow Condensed', sans-serif; 
  font-size: 1.5rem; 
  font-weight: 700; 
  text-transform: uppercase; 
  background: linear-gradient(135deg, #000000 0%, #404040 30%, #1a1a1a 50%, #404040 70%, #000000 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: luxury-shimmer 8s ease-in-out infinite;
  margin-bottom: 0.8rem; 
  letter-spacing: 1px; 
}

.how-step p { 
  font-size: 0.95rem; 
  line-height: 1.6; 
  color: #555555; 
  max-width: 350px; 
  margin: 0 auto; 
}

/* ── SERVICES ── */
.services { 
  padding: 5rem 2rem; 
  background: #ffffff; 
}

.sec-label { 
  font-family: 'Barlow Condensed', sans-serif; 
  font-size: 0.78rem; 
  letter-spacing: 4px; 
  text-transform: uppercase; 
  background: linear-gradient(135deg, #000000 0%, #404040 50%, #000000 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: luxury-shimmer 8s ease-in-out infinite;
  text-align: center; 
  margin-bottom: 0.8rem; 
}

.sec-title { 
  font-family: 'Barlow Condensed', sans-serif; 
  font-size: clamp(2rem, 5vw, 3rem); 
  font-weight: 900; 
  text-transform: uppercase; 
  background: linear-gradient(135deg, #000000 0%, #404040 30%, #1a1a1a 50%, #404040 70%, #000000 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: luxury-shimmer 8s ease-in-out infinite;
  text-align: center; 
  margin-bottom: 3rem; 
}

.svc-grid { 
  max-width: 1200px; 
  margin: 0 auto; 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 1px; 
}

.svc-card { 
  background: #f5f5f5; 
  padding: 2.5rem 2rem; 
  border-top: 3px solid transparent; 
  transition: border-color 0.25s, transform 0.2s; 
  text-align: center;
}

.svc-card:hover { 
  border-top-color: #111111; 
  transform: translateY(-3px); 
}

.svc-card h3 { 
  font-family: 'Barlow Condensed', sans-serif; 
  font-size: 1.5rem; 
  font-weight: 700; 
  text-transform: uppercase; 
  background: linear-gradient(135deg, #000000 0%, #404040 30%, #1a1a1a 50%, #404040 70%, #000000 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: luxury-shimmer 8s ease-in-out infinite;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.svc-card p { 
  color: #444444; 
  font-size: 0.95rem; 
  line-height: 1.7; 
  font-weight: 500; 
}

/* ── VIDEO GALLERY ── */
.gallery { 
  padding: 5rem 2rem; 
  background: #f5f5f5; 
}

.vid-grid { 
  max-width: 1200px; 
  margin: 2.5rem auto 0; 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 16px; 
}

.vid-card { 
  background: #ffffff; 
  border: 1px solid #dddddd; 
  overflow: hidden; 
  cursor: pointer; 
  position: relative; 
}

.vid-card video { 
  width: 100%; 
  display: block; 
  aspect-ratio: 16/9; 
  object-fit: contain; 
  background: #111111; 
  pointer-events: none; 
}

.vid-play-btn { 
  position: absolute; 
  top: 50%; 
  left: 50%; 
  transform: translate(-50%, -60%); 
  width: 54px; 
  height: 54px; 
  border-radius: 50%; 
  background: rgba(255,255,255,0.9); 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  opacity: 0; 
  transition: opacity 0.2s; 
  pointer-events: none; 
}

.vid-play-btn svg { 
  width: 22px; 
  height: 22px; 
  fill: #111111; 
  margin-left: 3px; 
}

.vid-card:hover .vid-play-btn { 
  opacity: 1; 
}

.vid-label { 
  padding: 0.8rem 1rem; 
  font-family: 'Barlow Condensed', sans-serif; 
  font-size: 0.8rem; 
  font-weight: 700; 
  text-transform: uppercase; 
  letter-spacing: 1px; 
  background: linear-gradient(135deg, #000000 0%, #404040 50%, #000000 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: luxury-shimmer 8s ease-in-out infinite;
  border-top: 2px solid #111111; 
  line-height: 1.4;
}

/* Gallery hidden items */
.vid-hidden,
.img-hidden {
  display: none;
}

/* Load More Button */
.load-more-gallery {
  display: block;
  margin: 2.5rem auto 0;
  padding: 1rem 2.5rem;
  background: #111111;
  color: #ffffff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.load-more-gallery:hover {
  background: #333333;
  transform: translateY(-2px);
}

.load-more-gallery.hidden {
  display: none;
}

/* ── IMAGE GALLERY ── */
.img-grid {
  max-width: 1200px;
  margin: 2.5rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.img-card {
  background: #ffffff;
  border: 1px solid #dddddd;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.img-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.img-card img {
  width: 100%;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.img-label {
  padding: 0.8rem 1rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: linear-gradient(135deg, #000000 0%, #404040 50%, #000000 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: luxury-shimmer 8s ease-in-out infinite;
  border-top: 2px solid #111111;
  line-height: 1.4;
}

/* ── LIGHTBOX ── */
.lb { 
  display: none; 
  position: fixed; 
  inset: 0; 
  background: rgba(0,0,0,0.92); 
  z-index: 9999; 
  align-items: center; 
  justify-content: center; 
  flex-direction: column; 
  padding: 1rem; 
}

.lb.open { 
  display: flex; 
}

.lb-inner { 
  position: relative; 
  width: 100%; 
  max-width: 960px; 
}

.lb-inner video {
  width: 100%;
  display: block;
  max-height: 80vh;
  background: #000;
}

.lb video { 
  width: 100%; 
  display: block; 
  max-height: 80vh; 
  background: #000; 
}

.lb-close { 
  position: absolute; 
  top: -44px; 
  right: 0; 
  background: none; 
  border: none; 
  color: #fff; 
  font-size: 2rem; 
  cursor: pointer; 
  line-height: 1; 
  padding: 0 0.5rem; 
}

.lb-close:hover { 
  color: #ccc; 
}

.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: none;
  color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.lb-nav:hover {
  background: rgba(0,0,0,0.8);
  transform: translateY(-50%) scale(1.1);
}

.lb-prev {
  left: -70px;
}

.lb-next {
  right: -70px;
}

.lb-nav svg {
  width: 24px;
  height: 24px;
}

.lb-nav.hidden {
  display: none;
}

.lb-title { 
  font-family: 'Barlow Condensed', sans-serif; 
  font-size: 0.8rem; 
  font-weight: 700; 
  letter-spacing: 2px; 
  text-transform: uppercase; 
  color: rgba(255,255,255,0.6); 
  margin-top: 0.8rem; 
  text-align: center; 
}

/* ── WHY US ── */
.why { 
  padding: 5rem 2rem; 
  background: #ffffff; 
}

.why-inner { 
  max-width: 1200px; 
  margin: 0 auto; 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 4rem; 
  align-items: start; 
}

.why-inner > .load-more-reviews {
  grid-column: 2;
  justify-self: start;
}

.why-text h2 { 
  font-family: 'Barlow Condensed', sans-serif; 
  font-size: clamp(1.8rem, 4vw, 2.5rem); 
  font-weight: 900; 
  text-transform: uppercase; 
  background: linear-gradient(135deg, #000000 0%, #404040 30%, #1a1a1a 50%, #404040 70%, #000000 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: luxury-shimmer 8s ease-in-out infinite;
  margin-bottom: 1rem; 
}

.why-text p { 
  color: #555555; 
  line-height: 1.8; 
  margin-bottom: 2rem; 
}

.chk { 
  list-style: none; 
  display: flex; 
  flex-direction: column; 
  gap: 0.8rem; 
}

.chk li { 
  display: flex; 
  align-items: center; 
  gap: 0.8rem; 
  color: #444444; 
}

.chk li::before { 
  content: '✓'; 
  color: #111111; 
  font-weight: 700; 
  flex-shrink: 0; 
}

.reviews { 
  display: flex; 
  flex-direction: column; 
  gap: 1rem; 
}

.rv-hidden {
  display: none;
}

.load-more-reviews {
  background: linear-gradient(135deg, #000000 0%, #404040 30%, #1a1a1a 50%, #404040 70%, #000000 100%);
  background-size: 200% auto;
  animation: luxury-shimmer 8s ease-in-out infinite;
  color: #fff;
  padding: 0.9rem 2rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  margin-top: 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
  width: 100%;
  max-width: 300px;
}

.load-more-reviews:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.load-more-reviews.hidden {
  display: none;
}

.rv { 
  background: #f5f5f5; 
  padding: 1.8rem; 
  position: relative; 
  border: 1px solid #eeeeee; 
}

.rv::before { 
  content: '"'; 
  position: absolute; 
  top: 0.5rem; 
  right: 1rem; 
  font-family: Georgia, serif; 
  font-size: 4rem; 
  color: rgba(0,0,0,0.07); 
  line-height: 1; 
}

.stars { 
  color: #111111; 
  margin-bottom: 0.5rem; 
}

.rv-txt { 
  color: #333333; 
  font-size: 0.9rem; 
  line-height: 1.7; 
  font-style: italic; 
  font-weight: 500; 
  margin-bottom: 0.6rem; 
}

.rv-name { 
  font-size: 0.78rem; 
  color: #555555; 
  font-weight: 700; 
  text-transform: uppercase; 
  letter-spacing: 1px; 
}

.rv-source { 
  font-size: 0.72rem; 
  color: #888888; 
  font-weight: 600; 
  margin-top: 0.3rem; 
}

/* ── CTA / CONTACT ── */
.cta-s { 
  padding: 5rem 2rem; 
  background: #f5f5f5; 
  text-align: center; 
  border-top: 2px solid #111111; 
}

.cta-s h2 { 
  font-family: 'Barlow Condensed', sans-serif; 
  font-size: clamp(3rem, 8vw, 6.5rem); 
  font-weight: 900; 
  text-transform: uppercase; 
  background: linear-gradient(135deg, #000000 0%, #404040 30%, #1a1a1a 50%, #404040 70%, #000000 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: luxury-shimmer 8s ease-in-out infinite;
  line-height: 1; 
  margin-bottom: 1rem; 
}

.cta-s p { 
  color: #555555; 
  max-width: 480px; 
  margin: 1rem auto 2rem; 
}

.call-big { 
  display: inline-flex; 
  align-items: center; 
  gap: 0.8rem; 
  background: linear-gradient(135deg, #000000 0%, #404040 30%, #1a1a1a 50%, #404040 70%, #000000 100%);
  background-size: 200% auto;
  animation: luxury-shimmer 8s ease-in-out infinite;
  color: #fff; 
  padding: 1.1rem 2.5rem; 
  font-family: 'Barlow Condensed', sans-serif; 
  font-weight: 900; 
  font-size: 1.3rem; 
  text-transform: uppercase; 
  letter-spacing: 1px; 
  text-decoration: none; 
  margin-bottom: 2.5rem; 
  transition: transform 0.2s, box-shadow 0.2s; 
}

.call-big:hover { 
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.form-wrap { 
  background: #ffffff; 
  padding: 2.5rem; 
  max-width: 700px; 
  margin: 0 auto; 
  border: 1px solid #dddddd; 
  text-align: left; 
}

.form-grid { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 1rem; 
  margin-bottom: 1rem; 
}

.ff { 
  display: flex; 
  flex-direction: column; 
  gap: 0.4rem; 
}

.ff label { 
  font-size: 0.72rem; 
  font-weight: 700; 
  text-transform: uppercase; 
  letter-spacing: 1px; 
  color: #555555; 
}

.fi { 
  padding: 0.8rem 1rem; 
  font-family: 'Barlow', sans-serif; 
  font-size: 0.92rem; 
  border: 1.5px solid #dddddd; 
  background: #ffffff; 
  color: #111111; 
  outline: none; 
  transition: border-color 0.2s; 
  width: 100%; 
}

.fi:focus { 
  border-color: #111111; 
}

.fi::placeholder { 
  color: #aaaaaa; 
}

.form-full { 
  margin-bottom: 1rem; 
}

.form-full label { 
  display: block; 
  font-size: 0.72rem; 
  font-weight: 700; 
  text-transform: uppercase; 
  letter-spacing: 1px; 
  color: #555555; 
  margin-bottom: 0.4rem; 
}

.fta { 
  width: 100%; 
  min-height: 100px; 
  resize: vertical; 
}

.btn-sub { 
  background: linear-gradient(135deg, #000000 0%, #404040 30%, #1a1a1a 50%, #404040 70%, #000000 100%);
  background-size: 200% auto;
  animation: luxury-shimmer 8s ease-in-out infinite;
  color: #fff; 
  padding: 1rem; 
  font-family: 'Barlow Condensed', sans-serif; 
  font-weight: 700; 
  font-size: 1.1rem; 
  text-transform: uppercase; 
  letter-spacing: 1px; 
  border: none; 
  cursor: pointer; 
  width: 100%; 
  margin-top: 0.5rem; 
  transition: transform 0.2s, box-shadow 0.2s; 
}

.btn-sub:hover { 
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); 
}

/* Form messages and required indicator */
.form-message {
  max-width: 700px;
  margin: 0 auto 2rem;
  padding: 1.2rem 1.5rem;
  border-radius: 4px;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
}

.form-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.required {
  color: #d32f2f;
  font-weight: 700;
}

.fi.error-field {
  border-color: #d32f2f;
  background: #fff5f5;
}

/* ── FOOTER ── */
footer { 
  background: #f5f5f5; 
  padding: 4rem 2rem 2.5rem; 
  border-top: 3px solid #e0e0e0; 
}

.ft-inner { 
  max-width: 1200px; 
  margin: 0 auto; 
  display: grid; 
  grid-template-columns: 2fr 1fr 1fr 1.2fr; 
  gap: 3rem; 
  margin-bottom: 2.5rem; 
}

.ft-brand p { 
  color: #555555; 
  font-size: 0.9rem; 
  line-height: 1.7; 
  margin: 1rem 0 1.5rem; 
  font-weight: 500; 
}

.ft-ph { 
  color: #111111; 
  font-weight: 700; 
  text-decoration: none; 
  display: block; 
}

.social-links {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.social-links a {
  color: #111111;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.social-links a:hover {
  background: #111111;
  color: #ffffff;
  border-color: #111111;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.social-links svg {
  width: 18px;
  height: 18px;
}

.ft-col h4 { 
  font-family: 'Barlow Condensed', sans-serif; 
  font-size: 0.8rem; 
  letter-spacing: 3px; 
  text-transform: uppercase; 
  color: #111111;
  margin-bottom: 1.2rem;
  font-weight: 700;
}

.ft-col a { 
  display: block; 
  color: #555555; 
  text-decoration: none; 
  font-size: 0.9rem; 
  font-weight: 500; 
  margin-bottom: 0.7rem; 
  transition: all 0.2s ease; 
}

.ft-col a:hover { 
  color: #111111; 
  padding-left: 4px;
}

.ft-contact-link {
  display: flex !important;
  align-items: center;
  gap: 0.4rem;
  color: #555555 !important;
  padding: 0.5rem 0;
}

.ft-contact-link:hover {
  color: #111111 !important;
}

.ft-col p { 
  font-size: 0.85rem; 
  color: #666666; 
  line-height: 1.8; 
  font-weight: 500; 
}

.ft-hours {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #666666;
  line-height: 1.6;
}

.ft-col p + p {
  margin-top: 0.5rem;
}

.ft-bottom { 
  border-top: 1px solid #e0e0e0; 
  padding-top: 2rem; 
  padding-bottom: 5rem;
  display: flex; 
  justify-content: center; 
  flex-wrap: wrap; 
  gap: 0.5rem; 
  font-size: 0.85rem; 
  color: #666666; 
  font-weight: 500;
  text-align: center; 
}

.ft-bottom p {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.ft-bottom span { 
  font-weight: 700; 
}

.ft-bottom a {
  color: #111111;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.ft-bottom a:hover {
  color: #666666;
}

.ft-divider {
  color: #cccccc;
  font-weight: 400;
  margin: 0 0.3rem;
}

.jd-link {
  text-decoration: none;
  display: inline-flex;
  transition: opacity 0.2s ease;
}

.jd-link:hover {
  opacity: 0.8;
}

.jd-purple {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 50%, #6d28d9 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.jd-blue {
  background: linear-gradient(135deg, #00a8e8 0%, #007ea7 50%, #003459 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── ADDITIONAL UTILITY STYLES ── */
.hero-logo {
  height: 160px;
  width: auto;
  margin-bottom: 1.8rem;
  background: linear-gradient(135deg, #000000 0%, #404040 30%, #1a1a1a 50%, #404040 70%, #000000 100%);
  background-size: 200% 200%;
  border-radius: 50%;
  padding: 6px;
  animation: float-breathe 4s ease-in-out infinite, luxury-shimmer 8s ease-in-out infinite;
  will-change: transform;
}

@keyframes float-breathe {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

.hero.compact {
  min-height: 50vh;
}

.ft-logo {
  margin-bottom: 0.8rem;
  display: inline-flex;
  position: static;
  left: auto;
  top: auto;
  bottom: auto;
}

.ft-logo .logo-img {
  height: 80px;
  padding: 8px;
  background: linear-gradient(135deg, #000000 0%, #404040 30%, #1a1a1a 50%, #404040 70%, #000000 100%);
  background-size: 200% 200%;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  animation: luxury-shimmer 8s ease-in-out infinite;
}

.sec-title-left {
  text-align: left;
  margin-bottom: 1rem;
}

.cta-s.full-height {
  min-height: calc(100vh - 68px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ── BACK TO TOP BUTTON ── */
.back-to-top {
  position: fixed;
  bottom: 105px;
  right: 25px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #000000 0%, #404040 30%, #1a1a1a 50%, #404040 70%, #000000 100%);
  background-size: 200% auto;
  animation: luxury-shimmer 8s ease-in-out infinite;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  z-index: 999;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.35);
}

.back-to-top svg {
  width: 24px;
  height: 24px;
}

/* ── WHATSAPP FLOATING BUTTON ── */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  z-index: 1000;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  background: #20ba5a;
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0,0,0,0.35);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

/* ── RESPONSIVE ── */

/* Desktop: Add space for floating buttons */
@media (min-width: 769px) {
  .ft-bottom {
    padding-right: 0;
  }
}

/* Tablet Landscape: Extra top padding for logo float animation */
@media (max-width: 1024px) and (max-height: 768px) and (orientation: landscape) {
  .hero {
    padding-top: 3.5rem;
  }
  
  .hero-logo {
    margin-top: 1rem;
  }
}

/* Tablet (Portrait & Landscape) */
@media (max-width: 1024px) {
  nav ul li a {
    font-size: 0.9rem;
    padding: 0.5rem 0.8rem;
  }
  
  .nav-cta {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
  
  .hero {
    padding: 3rem 2rem 4rem;
    overflow: visible;
  }
  
  .hero h1 {
    font-size: clamp(3.5rem, 9vw, 6rem);
    margin-bottom: 1.5rem;
  }
  
  .hero-logo {
    height: 140px;
    margin-bottom: 1.5rem;
  }
  
  .trust {
    gap: 1rem;
  }
  
  .trust-badge {
    font-size: 0.85rem;
    padding: 0.7rem 1.2rem;
  }
  
  .stats {
    gap: 1.5rem;
    padding: 1.5rem 1.5rem;
  }
  
  section {
    padding: 4rem 2rem;
  }
  
  .svc-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .svc-card {
    padding: 2rem 1.5rem;
  }
  
  .vid-grid,
  .img-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .how-steps {
    gap: 3rem;
  }
  
  .why-inner {
    gap: 3rem;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .ft-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
  
  .ft-brand {
    grid-column: 1 / -1;
  }
  
  footer {
    padding: 3.5rem 2rem 2.5rem;
  }
  
  .ft-bottom {
    justify-content: center;
    gap: 0.8rem;
  }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
  nav ul, .nav-cta { 
    display: none; 
  }
  
  .hamburger { 
    display: flex;
    position: absolute;
    right: 1.2rem;
  }
  
  nav { 
    padding: 0 1.2rem; 
    height: 60px; 
  }
  
  .logo-wrap {
    left: 1.2rem;
  }
  
  .mobile-menu { 
    top: 60px; 
  }
  
  .logo-img { 
    height: 40px; 
  }
  
  .hero { 
    padding: 2.5rem 1.2rem 3.5rem;
    overflow: visible;
  }
  
  .hero h1 { 
    font-size: clamp(3rem, 11vw, 5.5rem);
    margin-bottom: 1.3rem;
  }
  
  .hero-logo {
    height: 130px;
    margin-bottom: 1.3rem;
  }
  
  .hero p { 
    font-size: 1rem; 
  }
  
  .hero-btns { 
    flex-direction: column; 
    align-items: center; 
  }
  
  .hero-btns a { 
    width: 100%; 
    max-width: 320px; 
    text-align: center; 
  }
  
  .eyebrow { 
    font-size: 0.7rem; 
  }
  
  .trust { 
    gap: 0.8rem; 
    flex-wrap: wrap; 
    justify-content: center; 
  }
  
  .trust-badge { 
    font-size: 0.78rem; 
  }
  
  .stats { 
    gap: 1.2rem; 
    padding: 1.2rem 1rem; 
  }
  
  .stat-n { 
    font-size: 1.8rem; 
  }
  
  .how { 
    padding: 3rem 1.2rem; 
  }
  
  .how-steps { 
    gap: 2.5rem; 
    margin-top: 2rem; 
  }
  
  .services { 
    padding: 3rem 1.2rem; 
  }
  
  .svc-grid { 
    grid-template-columns: 1fr 1fr; 
    gap: 8px; 
  }
  
  .svc-card { 
    padding: 1.5rem 1.2rem; 
  }
  
  .gallery { 
    padding: 3rem 1.2rem; 
  }
  
  .vid-grid,
  .img-grid { 
    grid-template-columns: 1fr; 
    gap: 12px; 
  }
  
  .lb-nav {
    width: 40px;
    height: 40px;
  }
  
  .lb-prev {
    left: 10px;
  }
  
  .lb-next {
    right: 10px;
  }
  
  .lb-nav svg {
    width: 20px;
    height: 20px;
  }
  
  .why { 
    padding: 3rem 1.2rem; 
  }
  
  .why-inner { 
    grid-template-columns: 1fr; 
    gap: 2.5rem; 
  }
  
  .why-inner > .load-more-reviews {
    grid-column: 1;
    justify-self: center;
    width: 100%;
    max-width: 100%;
  }
  
  .cta-s { 
    padding: 3rem 1.2rem; 
  }
  
  .call-big { 
    font-size: 1.1rem; 
    padding: 1rem 1.5rem; 
    width: 100%; 
    justify-content: center; 
  }
  
  .form-wrap { 
    padding: 1.5rem 1.2rem; 
  }
  
  .form-grid { 
    grid-template-columns: 1fr; 
  }
  
  footer { 
    padding: 2.5rem 1.2rem; 
  }
  
  .ft-bottom {
    justify-content: center;
    gap: 0.6rem 0.8rem;
    text-align: center;
    font-size: 0.8rem;
  }
  
  .ft-inner { 
    grid-template-columns: repeat(2, 1fr); 
    gap: 2rem; 
  }
  
  .ft-brand {
    grid-column: 1 / -1;
  }
  
  .social-links {
    flex-wrap: wrap;
    gap: 0.8rem;
  }
  
  .sec-title { 
    font-size: clamp(1.8rem, 7vw, 3rem); 
  }
}

@media (max-width: 480px) {
  .svc-grid { 
    grid-template-columns: 1fr; 
  }
  
  .trust { 
    gap: 0.6rem; 
  }
  
  .hero h1 { 
    font-size: clamp(2.5rem, 13vw, 4.5rem);
    margin-bottom: 1.2rem;
  }
  
  .hero-logo {
    height: 110px;
    margin-bottom: 1.2rem;
  }
  
  .stats { 
    flex-wrap: wrap; 
  }
  
  .stat { 
    min-width: 40%; 
  }
  
  .back-to-top {
    width: 45px;
    height: 45px;
    bottom: 90px;
    right: 20px;
  }
  
  .back-to-top svg {
    width: 20px;
    height: 20px;
  }
  
  .whatsapp-float {
    width: 55px;
    height: 55px;
    bottom: 20px;
    right: 20px;
  }
  
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
  
  .ft-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
  
  .ft-brand {
    grid-column: 1;
  }

  .ft-col a {
    padding-left: 0;
  }

  .ft-col a:hover {
    padding-left: 0;
  }

  .ft-contact-link {
    justify-content: center;
  }
  
  .social-links {
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
  }
  
  .ft-bottom {
    padding-bottom: 6rem;
    justify-content: center;
    gap: 0.5rem 0.7rem;
    font-size: 0.75rem;
  }
  
  .ft-divider {
    margin: 0 0.2rem;
  }
}