/* ============================================================
   HAVEN DESIGN AND DWELL — Global Stylesheet
   Premium Interior Design & Real Estate Solutions
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Serif+Display:ital@0;1&family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,600&display=swap');

/* ---- CSS Variables ---------------------------------------- */
:root {
  --gold: #C9A96E;
  --gold-light: #E8D5B0;
  --gold-dark: #A07840;
  --gold-darker: #7A5A28;
  --charcoal: #1C1C1C;
  --dark: #111111;
  --beige: #F5F0E8;
  --cream: #FAFAF8;
  --warmgrey: #8A8A8A;
  --lightgrey: #E8E8E8;
  --midgrey: #C8C8C8;
  --darkbrown: #5C4A32;
  --white: #FFFFFF;
  --shadow-gold: rgba(201, 169, 110, 0.25);
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Base & Reset ----------------------------------------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }

/* Text selection */
::selection { background: var(--gold); color: white; }

/* ---- Typography Helpers ----------------------------------- */
.font-serif { font-family: 'Playfair Display', Georgia, serif !important; }
.font-cormorant { font-family: 'Cormorant Garamond', serif !important; }
.font-cinzel { font-family: 'Cinzel', serif !important; }
.font-dm-serif { font-family: 'DM Serif Display', serif !important; }

.section-tag {
  display: inline-block;
  color: var(--gold);
  font-family: 'Cinzel', serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 14px;
  position: relative;
  padding-left: 40px;
}
.section-tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.section-heading {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.15;
}
.section-heading-white {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 400;
  color: white;
  line-height: 1.15;
}

.gold-text { color: var(--gold) !important; }
.gold-underline {
  display: inline-block;
  position: relative;
}
.gold-underline::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
}

/* ---- Dividers --------------------------------------------- */
.divider-gold {
  width: 50px;
  height: 2px;
  background: var(--gold);
  display: block;
  margin: 18px 0;
}
.divider-gold-center {
  width: 50px;
  height: 2px;
  background: var(--gold);
  display: block;
  margin: 18px auto;
}

/* ---- Buttons ---------------------------------------------- */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: white;
  padding: 15px 34px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border-radius: 1px;
}
.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-dark);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  z-index: 0;
}
.btn-gold span, .btn-gold i { position: relative; z-index: 1; }
.btn-gold:hover::before { transform: scaleX(1); }
.btn-gold:hover { box-shadow: 0 12px 35px var(--shadow-gold); transform: translateY(-2px); }

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: white;
  padding: 15px 34px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.6);
  cursor: pointer;
  transition: var(--transition);
  border-radius: 1px;
}
.btn-outline-white:hover {
  background: white;
  color: var(--charcoal);
  border-color: white;
  transform: translateY(-2px);
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--gold);
  padding: 13px 30px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: var(--transition);
  border-radius: 1px;
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px var(--shadow-gold);
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--charcoal);
  color: white;
  padding: 15px 34px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--charcoal);
  cursor: pointer;
  transition: var(--transition);
  border-radius: 1px;
}
.btn-dark:hover { background: var(--dark); transform: translateY(-2px); }

/* ---- Navigation ------------------------------------------- */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 24px 0;
}
#navbar.scrolled {
  background: rgba(17, 17, 17, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: 0 4px 40px rgba(0,0,0,0.4);
}
#navbar.navbar-inner {
  background: rgba(17, 17, 17, 0.98);
  padding: 14px 0;
}

.nav-link {
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 6px 0;
  position: relative;
  transition: color 0.3s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s ease;
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

/* Logo text fallback */
.logo-text-fallback {
  font-family: 'Cinzel', 'Playfair Display', serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: white;
  letter-spacing: 2px;
  line-height: 1.3;
  text-transform: uppercase;
  white-space: nowrap;
}
.logo-text-fallback span { color: var(--gold); }

/* Logo in navbar: image + name side by side */
.logo-nav-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-nav-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}
.logo-nav-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.logo-nav-title {
  font-family: 'Cinzel', serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: white;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}
.logo-nav-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Mobile menu */
#mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(12, 12, 12, 0.99);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.18, 1);
}
#mobile-menu.open { transform: translateX(0); }

.mobile-nav-link {
  color: rgba(255,255,255,0.8);
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  text-decoration: none;
  padding: 12px 0;
  transition: color 0.3s ease;
  letter-spacing: 2px;
}
.mobile-nav-link:hover { color: var(--gold); }

/* ---- Hero Section ----------------------------------------- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transition: transform 0.1s ease;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.88) 0%,
    rgba(20, 18, 15, 0.72) 50%,
    rgba(15, 12, 8, 0.82) 100%
  );
}
.hero-content { position: relative; z-index: 2; }

.hero-headline {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 400;
  color: white;
  line-height: 1.1;
  letter-spacing: -0.5px;
}
.hero-headline .gold-word { color: var(--gold); font-style: italic; }

.hero-subtitle {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

/* Stats Bar */
.stats-bar {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(201,169,110,0.2);
  border-bottom: 1px solid rgba(201,169,110,0.2);
}
.stat-item { text-align: center; padding: 32px 20px; }
.stat-item+.stat-item { border-left: 1px solid rgba(255,255,255,0.08); }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 6px;
  display: block;
}

/* ---- Page Banner ------------------------------------------ */
.page-banner {
  background: var(--charcoal);
  padding: 240px 0 110px;
  min-height: 75vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.page-banner > .max-w-7xl {
  width: 100%;
}
.page-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}
.page-banner::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.banner-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}
.breadcrumb-link {
  font-size: 12px;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.3s;
}
.breadcrumb-link:hover { color: var(--gold); }
.breadcrumb-sep { color: var(--gold); font-size: 10px; }
.breadcrumb-current { font-size: 12px; letter-spacing: 1px; color: var(--gold); }

/* ---- Service Cards ---------------------------------------- */
.service-card {
  background: white;
  border: 1px solid var(--lightgrey);
  padding: 40px 32px 36px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width 0.45s ease;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.1);
  border-color: transparent;
}
.service-card:hover::after { width: 100%; }

.service-icon-wrap {
  width: 68px;
  height: 68px;
  background: var(--beige);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  font-size: 26px;
  color: var(--gold-dark);
  transition: var(--transition);
  flex-shrink: 0;
}
.service-card:hover .service-icon-wrap {
  background: var(--gold);
  color: white;
  transform: rotate(5deg) scale(1.05);
}

/* ---- Gallery --------------------------------------------- */
.gallery-item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
  display: block;
}
.gallery-item img {
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.15) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.45s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-zoom-icon {
  width: 52px;
  height: 52px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  transform: scale(0.6);
  transition: transform 0.35s ease;
}
.gallery-item:hover .gallery-zoom-icon { transform: scale(1); }

/* Gallery Filter Buttons */
.filter-btn {
  padding: 10px 24px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--warmgrey);
  background: transparent;
  border: 1px solid var(--lightgrey);
  cursor: pointer;
  transition: var(--transition);
  border-radius: 1px;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--gold);
  color: white;
  border-color: var(--gold);
}

/* ---- Lightbox --------------------------------------------- */
#lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(6, 6, 6, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
#lightbox.active {
  opacity: 1;
  pointer-events: all;
}
#lightbox-img {
  max-width: 88vw;
  max-height: 88vh;
  object-fit: contain;
  border: 1px solid rgba(201,169,110,0.3);
  box-shadow: 0 0 80px rgba(0,0,0,0.8);
}
.lightbox-btn {
  position: absolute;
  width: 50px;
  height: 50px;
  background: rgba(201,169,110,0.15);
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  cursor: pointer;
  transition: var(--transition);
}
.lightbox-btn:hover { background: var(--gold); border-color: var(--gold); }
#lightbox-close { top: 24px; right: 24px; }
#lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); }
#lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-caption {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ---- Testimonials ----------------------------------------- */
.testimonials-section { background: var(--charcoal); }

.testimonial-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}
.testimonial-slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: all;
}
.testimonial-wrapper { position: relative; min-height: 320px; }

.testimonial-content blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
  font-style: italic;
  font-weight: 400;
}
.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 7rem;
  color: var(--gold);
  opacity: 0.2;
  line-height: 0.6;
  display: block;
  margin-bottom: 20px;
}
.star-rating { color: var(--gold); font-size: 15px; letter-spacing: 3px; }

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}
.testimonial-dot.active {
  background: var(--gold);
  transform: scale(1.2);
}

/* ---- FAQ -------------------------------------------------- */
.faq-item { border-bottom: 1px solid var(--lightgrey); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--charcoal);
  transition: color 0.3s ease;
  gap: 16px;
}
.faq-question:hover { color: var(--gold); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, padding 0.3s ease;
  font-size: 14px;
  color: var(--warmgrey);
  line-height: 1.8;
}
.faq-answer.open { max-height: 250px; padding-bottom: 22px; }
.faq-icon {
  width: 28px;
  height: 28px;
  background: var(--beige);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 14px;
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.open .faq-icon {
  background: var(--gold);
  color: white;
  transform: rotate(45deg);
}

/* ---- Why Choose Us --------------------------------------- */
.choose-card {
  background: white;
  padding: 36px 28px;
  border: 1px solid var(--lightgrey);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.choose-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.choose-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.09); }
.choose-card:hover::before { transform: scaleX(1); }

/* ---- Process Steps --------------------------------------- */
.process-connector {
  position: absolute;
  top: 34px;
  left: 55%;
  right: -45%;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(201,169,110,0.15));
}
.step-number {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--gold);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 25px var(--shadow-gold);
  transition: transform 0.3s ease;
}
.process-step:hover .step-number { transform: scale(1.1); }

/* ---- Quote / Contact Form -------------------------------- */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--cream);
  border: 1px solid var(--lightgrey);
  color: var(--charcoal);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  border-radius: 2px;
  -webkit-appearance: none;
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.12);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--midgrey); }
.form-textarea { resize: vertical; min-height: 130px; }
.form-select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A96E' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 42px; }

/* ---- CTA Section ---------------------------------------- */
.cta-section {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
.cta-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(201,169,110,0.08) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(201,169,110,0.06) 0%, transparent 50%);
}

/* ---- Floating Buttons ------------------------------------ */
.floating-buttons {
  position: fixed;
  right: 24px;
  bottom: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.float-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.float-label {
  background: rgba(17,17,17,0.9);
  color: white;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  transform: translateX(8px);
  white-space: nowrap;
}
.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: white;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(0,0,0,0.28);
  transition: var(--transition);
  flex-shrink: 0;
}
.float-btn:hover { transform: scale(1.12); box-shadow: 0 10px 30px rgba(0,0,0,0.35); }
.float-item:hover .float-label { opacity: 1; transform: translateX(0); }
.float-whatsapp { background: #25D366; }
.float-call { background: #1a73e8; }
.float-quote { background: var(--gold); }

/* Pulse animation for floating WhatsApp */
.float-whatsapp::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: pulse-ring 2.5s infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(0.9); opacity: 0.6; }
  80%, 100% { transform: scale(1.4); opacity: 0; }
}

/* ---- About Section Image Layout -------------------------- */
.about-image-stack {
  position: relative;
}
.about-img-main {
  width: 78%;
  aspect-ratio: 3/4;
  object-fit: cover;
  margin-left: auto;
  display: block;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.about-img-accent {
  position: absolute;
  bottom: -30px;
  left: 0;
  width: 50%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border: 6px solid white;
  box-shadow: 0 15px 50px rgba(0,0,0,0.2);
}
.about-experience-badge {
  position: absolute;
  top: 40px;
  right: 0;
  transform: translateX(20px);
  background: var(--gold);
  color: white;
  padding: 20px 24px;
  text-align: center;
  box-shadow: 0 10px 30px var(--shadow-gold);
}

/* ---- Social Icons ---------------------------------------- */
.social-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 15px;
  transition: var(--transition);
  text-decoration: none;
}
.social-icon:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,169,110,0.1);
  transform: translateY(-3px);
}

/* ---- Footer ---------------------------------------------- */
.footer {
  background: #0D0D0D;
  color: white;
}
.footer-divider { border-color: rgba(255,255,255,0.06); }
.footer-link {
  color: rgba(255,255,255,0.45);
  font-size: 13px;
  text-decoration: none;
  display: block;
  padding: 5px 0;
  transition: color 0.3s ease;
}
.footer-link:hover { color: var(--gold); padding-left: 5px; }

/* ---- Scroll Animations ----------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-45px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(45px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ---- Contact Icons --------------------------------------- */
.contact-icon-box {
  width: 56px;
  height: 56px;
  background: var(--beige);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--gold-dark);
  flex-shrink: 0;
  transition: var(--transition);
}
.contact-card:hover .contact-icon-box {
  background: var(--gold);
  color: white;
}
.contact-card {
  background: white;
  padding: 36px 30px;
  border: 1px solid var(--lightgrey);
  transition: var(--transition);
  text-align: center;
}
.contact-card:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(201,169,110,0.12);
  transform: translateY(-5px);
}
.contact-icon-box { margin: 0 auto 18px; }

/* ---- Map Embed ------------------------------------------- */
.map-container {
  position: relative;
  width: 100%;
  padding-bottom: 55%;
  overflow: hidden;
  border: 1px solid var(--lightgrey);
}
.map-container iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---- Miscellaneous --------------------------------------- */
.text-balance { text-wrap: balance; }

.bg-beige { background: var(--beige); }
.bg-cream { background: var(--cream); }
.bg-charcoal { background: var(--charcoal); }
.bg-dark { background: var(--dark); }

.gold-gradient-bg {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
}

.luxury-border {
  border: 1px solid var(--lightgrey);
  position: relative;
}
.luxury-border::before {
  content: '';
  position: absolute;
  top: 8px; left: 8px; right: -8px; bottom: -8px;
  border: 1px solid rgba(201,169,110,0.25);
  pointer-events: none;
  z-index: -1;
}

/* ---- Responsive Adjustments ------------------------------ */
@media (max-width: 1024px) {
  .process-connector { display: none; }
  .about-img-accent { display: none; }
  .about-experience-badge { transform: none; top: 20px; right: 20px; }
}

@media (max-width: 768px) {
  .hero-headline { font-size: clamp(2rem, 9vw, 3rem); }
  .stat-number { font-size: 2rem; }
  .floating-buttons { right: 16px; bottom: 20px; }
  .float-btn { width: 48px; height: 48px; font-size: 19px; }
  .btn-gold, .btn-outline-white, .btn-outline-gold { padding: 13px 26px; font-size: 11px; }
  .about-img-main { width: 100%; }
  .page-banner { padding: 160px 0 80px; min-height: 60vh; }
  .float-label { display: none; }
  #lightbox-prev { left: 10px; }
  #lightbox-next { right: 10px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: clamp(1.9rem, 9vw, 2.8rem); }
  .section-heading { font-size: clamp(1.7rem, 6vw, 2.2rem); }
}

/* ---- Loading Animation ----------------------------------- */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-ring {
  width: 50px;
  height: 50px;
  border: 2px solid rgba(201,169,110,0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ---- Decorative Gold Line -------------------------------- */
.gold-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0;
}
