@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Inter:wght@300;400;500;600&family=Barlow+Condensed:wght@400;600;700&display=swap');

/* ── VARIABLES ── */
:root {
  --navy:       #0D1B36;
  --navy-mid:   #162645;
  --navy-dark:  #091224;
  --gold:       #C9A84C;
  --gold-lt:    #DFB96A;
  --gold-dim:   rgba(201,168,76,0.12);
  --dark-bg:    #f5f7fa;
  --card-bg:    #ffffff;
  --card-border:#dde1e7;
  --text:       #3d4a5c;
  --text-lt:    #6b7787;
  --text-dim:   rgba(173,181,189,0.55);
  --white:      #ffffff;
  --transition: 0.3s ease;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--dark-bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── PAGE FADE IN ── */
body { animation: fadeIn 0.5s ease both; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.5px;
  color: var(--navy);
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.25rem; }
p  { line-height: 1.75; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  border-bottom: 1px solid rgba(201,168,76,0.18);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 2rem;
  overflow: visible;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-left: -4%;
}
.nav-logo img {
  width: 300px;
  height: auto;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-cta { flex-shrink: 0; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ── HERO ── */
.hero {
  background: var(--navy);
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 5% 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--dark-bg);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.hero-inner {
  position: relative;
  max-width: 820px;
}
.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 3.5rem; }
.trust-badges {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.trust-badge svg { color: var(--gold); flex-shrink: 0; }

/* ── TICKER / MARQUEE ── */
.ticker-wrap {
  background: var(--gold);
  overflow: hidden;
  padding: 14px 0;
}
.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--navy);
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.ticker-dot {
  width: 4px;
  height: 4px;
  background: var(--navy);
  border-radius: 50%;
  opacity: 0.5;
  flex-shrink: 0;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--navy);
  padding: 88px 5% 72px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 60px;
  background: var(--dark-bg);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero-inner { position: relative; }
.breadcrumb {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  opacity: 0.85;
}
.page-hero h1 { color: var(--white); }
.page-hero h1 em { color: var(--gold); font-style: normal; }
.page-hero p {
  margin-top: 1rem;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
}

/* ── SECTION UTILITIES ── */
.section     { padding: 90px 5%; }
.section-sm  { padding: 60px 5%; }
.section-navy { background: var(--navy); }
.section-dark { background: var(--dark-bg); }

/* Navy section text overrides — keep all text white on dark navy backgrounds */
.section-navy .section-title          { color: var(--white); }
.section-navy .section-sub            { color: rgba(255,255,255,0.75); }
.section-navy h2,
.section-navy h3,
.section-navy h4                      { color: var(--white); }
/* But cards inside navy sections have white bg — restore dark text there */
.section-navy .why-card h3,
.section-navy .why-card h4            { color: var(--navy); }
.section-navy .why-card p             { color: var(--text); }
.section-navy .service-card h3        { color: var(--navy); }
.section-navy .service-card p         { color: var(--text); }

.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.section-title { color: var(--navy); margin-bottom: 0.75rem; }
.section-sub {
  font-size: 1.05rem;
  color: var(--text);
  max-width: 580px;
  margin-bottom: 3rem;
  line-height: 1.8;
}
.gold-rule {
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin: 0.75rem 0 2rem;
  border-radius: 2px;
}

/* ── SERVICE CARDS ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
}
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 4px;
  padding: 44px 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gold);
  transition: width 0.4s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,168,76,0.35);
  box-shadow: 0 16px 48px rgba(13,27,54,0.12);
}
.service-card:hover::after { width: 100%; }
.service-card-icon {
  width: 52px;
  height: 52px;
  background: var(--gold-dim);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--gold);
  transition: background var(--transition);
}
.service-card:hover .service-card-icon { background: rgba(201,168,76,0.2); }
.service-card h3 {
  color: var(--navy);
  margin-bottom: 0.6rem;
  font-size: 1.1rem;
}
.service-card p {
  font-size: 0.93rem;
  color: var(--text);
  line-height: 1.7;
}

/* ── WHY CHOOSE US CARDS ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.why-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 4px;
  padding: 32px 24px;
  transition: all var(--transition);
  border-top: 3px solid transparent;
}
.why-card:hover {
  border-top-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(13,27,54,0.1);
}
.why-card-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-dim);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.why-card h3 { color: var(--navy); font-size: 1.05rem; margin-bottom: 0.5rem; }
.why-card p  { font-size: 0.9rem; color: var(--text); line-height: 1.65; }

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-top: 3px solid var(--gold);
  border-radius: 4px;
  padding: 32px 28px;
  transition: all var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(13,27,54,0.1);
}
.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
  color: var(--gold);
}
.testimonial-card blockquote {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 2px;
}
.testimonial-loc {
  font-size: 0.8rem;
  color: var(--text-lt);
}

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--gold);
  padding: 80px 5%;
  text-align: center;
}
.cta-banner h2 { color: var(--navy); margin-bottom: 0.75rem; }
.cta-banner p  { color: rgba(13,27,54,0.75); font-size: 1.05rem; margin-bottom: 2rem; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-banner .btn-navy {
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--navy);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: 50px;
  display: inline-block;
  transition: all var(--transition);
}
.cta-banner .btn-navy:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  transform: translateY(-2px);
}

/* ── FOOTER ── */
footer {
  background: #090c11;
  padding: 68px 5% 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo img { height: 44px; margin-bottom: 1rem; }
.footer-logo p { font-size: 0.9rem; line-height: 1.8; color: var(--text-dim); max-width: 260px; }
.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.footer-col ul li { margin-bottom: 0.55rem; }
.footer-col ul li a {
  font-size: 0.9rem;
  color: var(--text-dim);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-col p { font-size: 0.9rem; line-height: 1.9; color: var(--text-dim); }
.footer-col p strong { color: var(--white); font-weight: 500; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: var(--gold); transition: opacity var(--transition); }
.footer-bottom a:hover { opacity: 0.8; }

/* ── CONTACT PAGE ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}
.contact-info-block { }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 1.75rem;
}
.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-dim);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-detail-text strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3px;
}
.contact-detail-text span {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
}
.contact-detail-text a { color: var(--text); transition: color var(--transition); }
.contact-detail-text a:hover { color: var(--gold); }

/* ── CONTACT FORM ── */
.contact-form {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 4px;
  padding: 44px 40px;
  box-shadow: 0 4px 24px rgba(13,27,54,0.07);
}
.contact-form h3 { color: var(--navy); font-size: 1.4rem; margin-bottom: 1.75rem; }
.form-group { margin-bottom: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group label {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.76rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--card-border);
  border-radius: 3px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--navy);
  background: #f8f9fb;
  transition: border-color var(--transition), background var(--transition);
  outline: none;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-lt); }
.form-group select { color: var(--navy); }
.form-group select option { background: var(--white); color: var(--navy); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit { width: 100%; padding: 16px; font-size: 1rem; margin-top: 0.5rem; cursor: pointer; border: none; }

/* ── ABOUT PAGE ── */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-text p { color: var(--text); margin-bottom: 1.25rem; }
.about-text p:last-child { margin-bottom: 0; }
.stat-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stat-card {
  background: var(--navy);
  border-radius: 4px;
  padding: 28px 20px;
  text-align: center;
}
.stat-num {
  font-family: 'Oswald', sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-lbl {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.values-list { }
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--card-border);
}
.value-item:last-child { border-bottom: none; }
.value-icon {
  width: 38px;
  height: 38px;
  background: var(--gold-dim);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.value-item h4 { color: var(--navy); font-size: 1rem; margin-bottom: 4px; }
.value-item p  { font-size: 0.9rem; color: var(--text); line-height: 1.6; }
.quote-block {
  background: var(--navy);
  border-left: 4px solid var(--gold);
  border-radius: 0 4px 4px 0;
  padding: 36px 40px;
  margin: 0;
}
.quote-block blockquote {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 1rem;
}
.quote-attribution {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── SERVICES PAGE ── */
.service-full-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 4px;
  padding: 36px 32px;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  align-items: start;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-full-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--gold);
  transition: width 0.35s ease;
}
.service-full-card:hover {
  border-color: rgba(201,168,76,0.35);
  box-shadow: 0 12px 40px rgba(13,27,54,0.1);
  transform: translateX(4px);
}
.service-full-card:hover::before { width: 3px; }
.service-full-icon {
  width: 64px;
  height: 64px;
  background: var(--gold-dim);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.service-full-text h3 { color: var(--navy); margin-bottom: 0.5rem; }
.service-full-text p  { font-size: 0.95rem; color: var(--text); line-height: 1.75; }
.services-full-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ── GALLERY ── */
.gallery-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.filter-btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: 3px;
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  color: var(--text);
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.gallery-card {
  background: var(--navy-mid);
  aspect-ratio: 4/3;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: all var(--transition);
  border: 1px solid rgba(201,168,76,0.08);
  overflow: hidden;
  position: relative;
}
.gallery-card:hover {
  background: #1e3060;
  border-color: rgba(201,168,76,0.25);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(13,27,54,0.2);
}
.gallery-card svg { color: var(--gold); opacity: 0.7; }
.gallery-card-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.gallery-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-card img.loaded { opacity: 1; }

/* ── AREA TAG ── */
.area-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-dim);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 3px;
  padding: 8px 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1.25rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-intro-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 80px;
    left: 0; right: 0;
    background: var(--navy-dark);
    padding: 0.5rem 0 1rem;
    border-bottom: 1px solid rgba(201,168,76,0.15);
  }
  .nav-links.open { display: flex; }
  .nav-links li { display: block; }
  .nav-links a { display: block; padding: 14px 5%; border-bottom: 1px solid rgba(255,255,255,0.04); }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .hero { min-height: auto; padding: 72px 5% 60px; }
  .hero::after { display: none; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .trust-badges { gap: 16px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .service-full-card { grid-template-columns: 1fr; }
  .service-full-icon { width: 52px; height: 52px; }
  .contact-form { padding: 32px 24px; }
}
@media (max-width: 480px) {
  .section { padding: 60px 5%; }
  .cards-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .stat-cards { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 2.2rem; }
  .about-intro-grid { gap: 36px; }
}

/* ════════════════════════════════════════════════════════════════
   PHOTO SLIDESHOW — 3-up carousel
════════════════════════════════════════════════════════════════ */
.slideshow-section {
  background: #070e1a;
  padding: 52px 5% 44px;
}
.slideshow-3up {
  position: relative;
  user-select: none;
}
.slide3-group {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.slide3-group.active {
  display: grid;
  animation: slide3In 0.55s ease;
}
@keyframes slide3In {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.slide3-photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 4px;
  background: var(--navy-mid);
}
.slide3-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Arrows */
.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(201,168,76,0.3);
  color: #fff;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
  padding: 0;
}
.slide-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: translateY(-50%) scale(1.08);
}
.slide-prev { left: 8px; }
.slide-next { right: 8px; }
/* Dots */
.slide-dots {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 18px;
}
.slide-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.28);
  border: none;
  cursor: pointer;
  transition: background 0.25s, width 0.25s, border-radius 0.25s;
  padding: 0;
  flex-shrink: 0;
}
.slide-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}
@media (max-width: 680px) {
  .slide3-group { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 440px) {
  .slide3-group { grid-template-columns: 1fr; }
  .slide-arrow { width: 36px; height: 36px; }
}

/* ════════════════════════════════════════════════════════════════
   HOMEADVISOR REVIEWS — Home page
════════════════════════════════════════════════════════════════ */
.angies-reviews { text-align: center; }
.angies-stars-row {
  display: flex;
  justify-content: center;
  gap: 7px;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.angies-platform-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 2.75rem;
}
.angies-platform-label span { color: var(--gold); }
/* Review Carousel */
.rev-carousel {
  position: relative;
  max-width: 1100px;
  margin: 0 auto 2.5rem;
}
.rev-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  min-height: 180px;
}
.rev-card {
  display: none;
  flex-direction: column;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.18);
  border-top: 3px solid var(--gold);
  border-radius: 4px;
  padding: 28px 26px;
  text-align: left;
}
.rev-card.rev-active {
  display: flex;
  animation: rev-card-in 0.5s ease;
}
@keyframes rev-card-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.rev-card-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.rev-card-stars::before { content: "★★★★★"; }
.rev-card blockquote {
  font-size: 0.97rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.82);
  font-style: italic;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}
.rev-author {
  color: var(--gold-lt);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 1px;
  margin-bottom: 2px;
}
.rev-date { color: rgba(255,255,255,0.38); font-size: 0.82rem; }
@media (max-width: 900px) { .rev-track { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .rev-track { grid-template-columns: 1fr; } }

/* Light-background overrides — HomeAdvisor section on section-dark */
.angies-reviews-light .angies-platform-label { color: var(--text-lt); }
.angies-reviews-light .rev-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-top: 3px solid var(--gold);
  box-shadow: 0 2px 12px rgba(13,27,54,0.06);
}
.angies-reviews-light .rev-card blockquote { color: var(--text); }
.angies-reviews-light .rev-author          { color: var(--navy); }
.angies-reviews-light .rev-date            { color: var(--text-lt); }
.angies-reviews-light .slide-dot          { background: rgba(13,27,54,0.18); }
.angies-reviews-light .slide-dot.active   { background: var(--gold); }
/* Bare chevron arrows for review carousel */
.rev-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
  color: var(--navy);
  line-height: 0;
  transition: color 0.2s, transform 0.2s;
}
.rev-arrow:hover {
  color: var(--gold);
  transform: translateY(-50%) scale(1.18);
}
.rev-prev { left: -46px; }
.rev-next { right: -46px; }
@media (max-width: 1220px) {
  .rev-prev { left: -28px; }
  .rev-next { right: -28px; }
}
@media (max-width: 640px) {
  .rev-prev { left: 2px; }
  .rev-next { right: 2px; }
  .rev-carousel { padding: 0 38px; }
}

/* ════════════════════════════════════════════════════════════════
   HOMEADVISOR TRUST BADGE — About page
════════════════════════════════════════════════════════════════ */
.angies-trust-strip {
  background: var(--navy);
  padding: 44px 5%;
  text-align: center;
  border-top: 1px solid rgba(201,168,76,0.12);
  border-bottom: 1px solid rgba(201,168,76,0.12);
}
.angies-trust-inner {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.angies-trust-stars { display: flex; gap: 5px; color: var(--gold); }
.angies-trust-text { text-align: left; }
.angies-trust-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 3px;
}
.angies-trust-sub { font-size: 0.88rem; color: rgba(255,255,255,0.5); }
@media (max-width: 600px) {
  .angies-trust-inner { flex-direction: column; gap: 18px; }
  .angies-trust-text { text-align: center; }
}

/* ════════════════════════════════════════════════════════════════
   GALLERY — updated grid & cards
════════════════════════════════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 960px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gallery-grid { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .gallery-grid { grid-template-columns: 1fr; } }

.gallery-card {
  cursor: pointer;
  transition: transform 0.28s ease, box-shadow 0.28s ease, opacity 0.28s ease;
}
.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(0,0,0,0.35);
}
.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.28s ease;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  padding: 14px;
  pointer-events: none;
}
.gallery-card:hover .gallery-card-overlay { opacity: 1; }
.gallery-card-overlay svg {
  color: rgba(255,255,255,0.9);
  background: rgba(0,0,0,0.35);
  padding: 6px;
  border-radius: 50%;
  box-sizing: content-box;
}

/* ════════════════════════════════════════════════════════════════
   LIGHTBOX
════════════════════════════════════════════════════════════════ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.93);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-img-wrap { max-width: 90vw; max-height: 88vh; }
.lightbox-img-wrap img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  display: block;
  border-radius: 2px;
  transition: opacity 0.18s ease;
}
.lightbox-close,
.lightbox-btn {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  padding: 0;
  z-index: 9010;
}
.lightbox-close:hover,
.lightbox-btn:hover { background: rgba(201,168,76,0.28); border-color: var(--gold); }
.lightbox-close {
  position: fixed;
  top: 16px; right: 18px;
  width: 44px; height: 44px;
}
.lightbox-btn {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
}
.lightbox-btn:hover { transform: translateY(-50%) scale(1.06); }
.lightbox-prev { left: 14px; }
.lightbox-next { right: 14px; }
@media (max-width: 600px) {
  .lightbox-btn { width: 40px; height: 40px; }
  .lightbox-prev { left: 6px; }
  .lightbox-next { right: 6px; }
  .lightbox-close { top: 8px; right: 8px; width: 38px; height: 38px; }
}
