/* ================================================= */
/* css/style.css — The Cleaning Queens (Advanced)    */
/* ================================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Jost:wght@300;400;500;600;700&display=swap');

/* ── CSS CUSTOM PROPERTIES ── */
:root {
  --royal:        #071739;
  --royal-mid:    #0B2C6B;
  --royal-light:  #1a4a9e;
  --gold:         #C9A24A;
  --gold-light:   #e8c46a;
  --gold-pale:    #f5e6c3;
  --cream:        #faf7f2;
  --cream-mid:    #f3ede2;
  --white:        #ffffff;
  --text-dark:    #0a1f4e;
  --text-mid:     #3a4a6b;
  --text-light:   #8a9ab8;

  --shadow-sm:    0 4px 16px rgba(7,23,57,.08);
  --shadow-md:    0 8px 32px rgba(7,23,57,.12);
  --shadow-lg:    0 20px 60px rgba(7,23,57,.18);
  --shadow-gold:  0 8px 30px rgba(201,162,74,.35);

  --radius-sm:    10px;
  --radius-md:    18px;
  --radius-lg:    28px;
  --radius-full:  999px;

  --transition:   0.35s cubic-bezier(.4,0,.2,1);
  --transition-slow: 0.6s cubic-bezier(.4,0,.2,1);
}

/* ── RESET & BASE ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── SELECTION ── */
::selection {
  background: var(--gold);
  color: var(--royal);
}

/* ── SCROLL PROGRESS BAR ── */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 9999;
  width: var(--scroll-progress, 0%);
  transition: width .1s linear;
}

/* ══════════════════════════════════════
   HEADER
══════════════════════════════════════ */
header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 8%;
  height: 78px;

  background: rgba(7, 23, 57, 0.95);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  border-bottom: 1px solid rgba(255,255,255,.05);

  z-index: 1000;
}

header.scrolled {
  background: rgba(7, 23, 57, 0.97);
  box-shadow: 0 4px 40px rgba(0,0,0,.3);
  height: 68px;
}

/* Logo */
a.logo, .logo {
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-crown {
  font-size: 1.4rem;
  color: var(--gold);
  filter: drop-shadow(0 0 8px rgba(201,162,74,.5));
  animation: crown-pulse 3s ease-in-out infinite;
}

@keyframes crown-pulse {
  0%,100% { transform: translateY(0); filter: drop-shadow(0 0 8px rgba(201,162,74,.5)); }
  50%      { transform: translateY(-3px); filter: drop-shadow(0 0 16px rgba(201,162,74,.8)); }
}

.logo h2 {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: .03em;
}

.logo h2 span {
  color: var(--gold);
  font-style: italic;
}

/* Nav links */
nav {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

nav a {
  color: rgba(255,255,255,.85);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .07em;
  text-transform: uppercase;
  position: relative;
  transition: color var(--transition);
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1.5px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

nav a:hover { color: var(--gold); }
nav a:hover::after { transform: scaleX(1); }

/* Nav CTA button */
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--royal) !important;
  padding: .5rem 1.4rem;
  border-radius: var(--radius-full);
  font-weight: 700 !important;
  font-size: .82rem !important;
  letter-spacing: .08em;
  transition: box-shadow var(--transition), transform var(--transition) !important;
  box-shadow: var(--shadow-gold);
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 12px 36px rgba(201,162,74,.55) !important;
}

/* Hamburger */
.menu-btn {
  color: var(--white);
  font-size: 1.6rem;
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  transition: color var(--transition);
}

.menu-btn:hover { color: var(--gold); }

/* ── MOBILE MENU ── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--royal);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  text-decoration: none;
  font-size: 2rem;
  font-weight: 700;
  transition: color var(--transition);
}

.mobile-nav a:hover { color: var(--gold); }

.mobile-close {
  position: absolute;
  top: 24px; right: 8%;
  font-size: 1.8rem;
  color: var(--white);
  cursor: pointer;
  transition: color var(--transition), transform var(--transition);
}

.mobile-close:hover { color: var(--gold); transform: rotate(90deg); }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  height: 100vh;
  min-height: 700px;
  background:
    linear-gradient(135deg, rgba(7,23,57,.85) 0%, rgba(11,44,107,.7) 60%, rgba(7,23,57,.9) 100%),
    url('../images/background.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

/* Animated mesh overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(201,162,74,.14) 0%, transparent 45%),
    radial-gradient(circle at 80% 20%, rgba(201,162,74,.1)  0%, transparent 45%);
  pointer-events: none;
}

/* Grid texture */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 85%;
  max-width: 900px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,162,74,.12);
  border: 1px solid rgba(201,162,74,.35);
  padding: .38rem 1.1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
  font-size: .78rem;
  color: var(--gold);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  animation: fadeInDown .8s ease both;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.2rem;
  animation: fadeInUp 1s ease .2s both;
}

.hero-content h1 em {
  font-style: italic;
  color: var(--gold);
  display: block;
}

.hero-content p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-style: italic;
  color: rgba(255,255,255,.8);
  margin-bottom: 2.5rem;
  line-height: 1.8;
  animation: fadeInUp 1s ease .4s both;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1.1rem;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease .6s both;
}

/* Trust strip below hero buttons */
.hero-trust {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2.5rem;
  animation: fadeInUp 1s ease .8s both;
}

.trust-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.65);
  font-size: .82rem;
  font-weight: 500;
}

.trust-chip i { color: var(--gold); }

/* Sparkle particles */
.hero-sparkle {
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  pointer-events: none;
  animation: sparkle 3s ease-in-out infinite;
}

@keyframes sparkle {
  0%,100% { opacity: 0; transform: scale(0) translateY(0); }
  50%      { opacity: 1; transform: scale(1) translateY(-12px); }
}

/* Scroll cue */
.hero-scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.45);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  z-index: 2;
  animation: fadeIn 2s 1.5s ease both;
}

.scroll-mouse {
  width: 22px; height: 36px;
  border: 1.5px solid rgba(255,255,255,.3);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-mouse::before {
  content: '';
  width: 3px; height: 7px;
  background: var(--gold);
  border-radius: 2px;
  animation: scroll-dot 1.8s ease-in-out infinite;
}

@keyframes scroll-dot {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

/* Curved bottom divider */
.hero-curve {
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  pointer-events: none;
}

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--royal);
  padding: .9rem 2.2rem;
  text-decoration: none;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .04em;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-gold);
  border: none;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
}

.btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 44px rgba(201,162,74,.5);
}

.btn:active { transform: translateY(-1px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(255,255,255,.45);
  color: var(--white);
  padding: .9rem 2.2rem;
  text-decoration: none;
  border-radius: var(--radius-full);
  font-weight: 500;
  font-size: .95rem;
  transition: all var(--transition);
  backdrop-filter: blur(6px);
  cursor: pointer;
  font-family: 'Jost', sans-serif;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,162,74,.1);
  transform: translateY(-4px);
}

.btn-dark {
  background: var(--royal);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-dark:hover { box-shadow: 0 16px 44px rgba(7,23,57,.4); }

/* ══════════════════════════════════════
   SECTION UTILITIES
══════════════════════════════════════ */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(201,162,74,.16), rgba(201,162,74,.05));
  border: 1px solid rgba(201,162,74,.3);
  padding: .35rem .95rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.section-label i    { color: var(--gold); font-size: .78rem; }
.section-label span { font-size: .75rem; color: var(--gold); font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--royal);
  line-height: 1.2;
}

.section-title h2 em {
  font-style: italic;
  color: var(--gold);
}

.section-title p {
  color: var(--text-mid);
  margin-top: .75rem;
  font-size: 1rem;
  line-height: 1.8;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* Dark section override */
.section-title.light h2 { color: var(--white); }
.section-title.light p  { color: rgba(255,255,255,.65); }

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible { opacity: 1; transform: none; }

.reveal-left  { opacity: 0; transform: translateX(-36px); transition: opacity .8s ease, transform .8s ease; }
.reveal-right { opacity: 0; transform: translateX(36px);  transition: opacity .8s ease, transform .8s ease; }
.reveal-left.visible,
.reveal-right.visible { opacity: 1; transform: none; }

.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }
.delay-5 { transition-delay: .5s; }

/* ══════════════════════════════════════
   ABOUT PREVIEW
══════════════════════════════════════ */
.about-preview {
  padding: 110px 8%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem;
  align-items: center;
  background: var(--cream);
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-slow);
}

.about-image:hover img { transform: scale(1.02); }

/* Gold accent bar */
.about-image::before {
  content: '';
  position: absolute;
  top: 30px; left: -8px;
  width: 4px; height: 110px;
  background: linear-gradient(to bottom, var(--gold), var(--gold-light));
  border-radius: 2px;
}

/* Floating badge on image */
.about-badge {
  position: absolute;
  bottom: -24px; right: -16px;
  background: var(--royal);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.4rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--cream);
}

.about-badge .num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--gold);
  font-weight: 900;
  line-height: 1;
}

.about-badge .lbl {
  font-size: .72rem;
  color: rgba(255,255,255,.7);
  margin-top: 4px;
  font-weight: 500;
}

.about-text .section-label { margin-bottom: 1rem; }

.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  margin-bottom: 1.25rem;
  color: var(--royal);
  line-height: 1.2;
}

.about-text h2 em {
  font-style: italic;
  color: var(--gold);
}

.about-text p {
  line-height: 1.9;
  margin-bottom: 1.25rem;
  color: var(--text-mid);
  font-size: 1rem;
}

/* Stats row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  margin-top: 2.2rem;
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem;
  text-align: center;
  border: 1px solid rgba(201,162,74,.15);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.85rem;
  font-weight: 900;
  color: var(--royal);
}

.stat-lbl {
  font-size: .76rem;
  color: var(--text-light);
  margin-top: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ══════════════════════════════════════
   SERVICES SECTION
══════════════════════════════════════ */
.services-section {
  padding: 110px 8%;
  background: var(--royal);
  position: relative;
  overflow: hidden;
}

/* Curved top/bottom */
.services-section::before,
.services-section::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 80px;
}

.services-section::before {
  top: -1px;
  background: var(--cream);
  clip-path: ellipse(55% 100% at 50% 0%);
}

.services-section::after {
  bottom: -1px;
  background: var(--cream);
  clip-path: ellipse(55% 100% at 50% 100%);
}

/* Mesh glow behind cards */
.services-section .bg-glow {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,162,74,.08) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
  position: relative;
  z-index: 1;
}

.service-card {
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.1);
  padding: 2.25rem 1.75rem;
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}

/* Shimmer line on top */
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform var(--transition-slow);
}

/* Inner glow */
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,162,74,.1), rgba(201,162,74,.03));
  opacity: 0;
  transition: opacity var(--transition);
  border-radius: var(--radius-lg);
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(201,162,74,.4);
  box-shadow: 0 24px 60px rgba(0,0,0,.3), 0 0 0 1px rgba(201,162,74,.15);
}

.service-card:hover::before { transform: scaleX(1); }
.service-card:hover::after  { opacity: 1; }

.icon {
  position: relative;
  z-index: 1;
  width: 62px; height: 62px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--royal);
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-gold);
  transition: transform var(--transition);
}

.service-card:hover .icon { transform: scale(1.1) rotate(6deg); }

.service-card h3 {
  position: relative;
  z-index: 1;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: .55rem;
}

.service-card p {
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  line-height: 1.75;
}

.service-tag {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-top: 1rem;
  background: rgba(201,162,74,.15);
  color: var(--gold);
  font-size: .72rem;
  padding: .22rem .7rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* ══════════════════════════════════════
   WHY US
══════════════════════════════════════ */
.why-us {
  padding: 110px 8%;
  background: var(--cream);
}

.why-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.why-box {
  background: var(--white);
  padding: 2rem 1.75rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(11,44,107,.07);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

/* Animated bottom border */
.why-box::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-slow);
}

.why-box:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201,162,74,.22);
}

.why-box:hover::after { transform: scaleX(1); }

.why-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, #eef3ff, #dce8ff);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--royal);
  margin-bottom: 1.1rem;
  transition: transform var(--transition);
}

.why-box:hover .why-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, var(--gold-pale), var(--gold-pale));
}

.why-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--royal);
  margin-bottom: .5rem;
}

.why-box p {
  font-size: .9rem;
  color: var(--text-mid);
  line-height: 1.8;
}

/* ══════════════════════════════════════
   GALLERY PREVIEW
══════════════════════════════════════ */
.gallery-preview {
  padding: 110px 8%;
  background: var(--cream-mid);
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.1rem;
}

/* Span classes for masonry feel */
.gallery-container .span-2 { grid-column: span 2; }
.gallery-container .tall   { grid-row:    span 2; }

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.gallery-item.tall img { height: 100%; min-height: 400px; }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,23,57,.85), transparent 55%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem 1.5rem;
}

.gallery-overlay span {
  color: var(--white);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .04em;
  transform: translateY(8px);
  transition: transform var(--transition);
}

.gallery-item:hover img                { transform: scale(1.07); }
.gallery-item:hover .gallery-overlay   { opacity: 1; }
.gallery-item:hover .gallery-overlay span { transform: translateY(0); }

/* ══════════════════════════════════════
   CONTACT BANNER
══════════════════════════════════════ */
.contact-banner {
  background: linear-gradient(135deg, var(--royal) 0%, #0d3a8a 100%);
  padding: 110px 8%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(201,162,74,.12), transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(201,162,74,.08), transparent 50%);
  pointer-events: none;
}

.contact-content {
  position: relative;
  z-index: 1;
}

.contact-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.contact-content h2 em {
  font-style: italic;
  color: var(--gold);
}

.contact-content p {
  color: rgba(255,255,255,.7);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.contact-items {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.contact-chip {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  padding: .75rem 1.25rem;
}

.contact-chip .ci {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--royal);
  font-size: .95rem;
  flex-shrink: 0;
}

.contact-chip .cl span {
  display: block;
  font-size: .7rem;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
}

.contact-chip .cl strong {
  color: var(--white);
  font-size: .95rem;
}

/* ══════════════════════════════════════
   FORM (if on contact page)
══════════════════════════════════════ */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2.25rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(201,162,74,.12);
  max-width: 640px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-mid);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid rgba(11,44,107,.12);
  border-radius: var(--radius-sm);
  padding: .75rem 1rem;
  font-family: 'Jost', sans-serif;
  font-size: .92rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,74,.14);
  background: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--royal);
  border: none;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .06em;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(201,162,74,.5);
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  background: #050f24;
  color: var(--white);
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  padding: 80px 8% 50px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.footer-box { display: flex; flex-direction: column; }

/* Footer logo */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}

.footer-logo i { font-size: 1.4rem; color: var(--gold); }
.footer-logo span { font-family: 'Playfair Display', serif; font-size: 1.2rem; }
.footer-logo span em { font-style: normal; color: var(--gold); }

.footer-box p {
  color: rgba(255,255,255,.5);
  font-size: .88rem;
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

/* Social icons */
.socials {
  display: flex;
  gap: .65rem;
}

.social-btn {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.65);
  font-size: .9rem;
  text-decoration: none;
  transition: all var(--transition);
}

.social-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--royal);
  transform: translateY(-3px);
}

/* Footer columns */
.footer-box h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 1.4rem;
  position: relative;
  padding-bottom: .75rem;
}

.footer-box h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 32px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
}

.footer-box a {
  color: rgba(255,255,255,.5);
  text-decoration: none;
  margin-top: .55rem;
  font-size: .88rem;
  transition: color var(--transition), padding-left var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-box a i { font-size: .65rem; color: var(--gold); }

.footer-box a:hover {
  color: var(--gold);
  padding-left: 4px;
}

/* Newsletter */
.newsletter-form {
  display: flex;
  gap: .5rem;
  margin-top: 1rem;
}

.newsletter-form input {
  flex: 1;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  padding: .65rem .9rem;
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: .85rem;
  outline: none;
  transition: border-color var(--transition);
}

.newsletter-form input::placeholder { color: rgba(255,255,255,.3); }
.newsletter-form input:focus { border-color: var(--gold); }

.newsletter-form button {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--royal);
  border: none;
  padding: .65rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  font-size: .9rem;
}

.newsletter-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,162,74,.35);
}

/* Footer bottom */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 22px 8%;
  font-size: .82rem;
  color: rgba(255,255,255,.35);
}

.footer-bottom a { color: var(--gold); text-decoration: none; }
.footer-bottom a:hover { text-decoration: underline; }

/* ══════════════════════════════════════
   FLOATING WHATSAPP BUTTON
══════════════════════════════════════ */
#wa-btn {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(37,211,102,.45);
  z-index: 900;
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
#wa-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 12px 40px rgba(37,211,102,.6);
}
#wa-btn svg { display: block; }

#wa-btn:hover { transform: scale(1.12); }

@keyframes wa-pulse {
  0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.4); }
  50%      { box-shadow: 0 6px 24px rgba(37,211,102,.45), 0 0 0 14px rgba(37,211,102,0); }
}

/* ══════════════════════════════════════
   KEYFRAMES
══════════════════════════════════════ */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: none; }
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  header { padding: 0 5%; }

  nav, .nav-cta { display: none; }
  .menu-btn { display: block; }

  .about-preview {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 80px 5%;
  }

  .about-image { display: none; }

  .services-section,
  .why-us,
  .gallery-preview,
  .contact-banner {
    padding: 80px 5%;
  }

  .services-section::before,
  .services-section::after { height: 50px; }

  .gallery-container .span-2 { grid-column: span 1; }

  .footer-container {
    grid-template-columns: 1fr;
    padding: 60px 5% 40px;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: 20px 5%;
  }

  .contact-items { flex-direction: column; align-items: center; }

  .form-row { grid-template-columns: 1fr; }

  .stats-row { grid-template-columns: repeat(3, 1fr); gap: .75rem; }

  .hero-trust { gap: 1rem; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 2.4rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .section-title h2 { font-size: 1.85rem; }
}
.loader-logo img {
  display: block;
  border: none;
  outline: none;
  box-shadow: none;
  background: transparent;
}
.footer-logo img{
  width: 120px;
  height: auto;
  object-fit: contain;
} .about-text .mission-list li{
  color: orange;
}