/* =====================================================
   JAB Cleaning Services – style.css
   Navy + Gold · Cormorant + Jost
===================================================== */

/* ---------- CSS VARIABLES ---------- */
:root {
  --navy:      #0d1b2a;
  --navy-mid:  #152336;
  --navy-lt:   #1e3350;
  --gold:      #c9a84c;
  --gold-lt:   #e0c06a;
  --gold-pale: #f5e9c8;
  --white:     #ffffff;
  --off-white: #f9f6f0;
  --text:      #2e2e2e;
  --text-lt:   #5a5a5a;
  --border:    #e4ddd0;
  --radius:    10px;
  --shadow:    0 8px 40px rgba(13,27,42,.10);
  --shadow-lg: 0 20px 60px rgba(13,27,42,.18);
  --transition: .3s ease;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Jost', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---------- CONTAINER ---------- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }
.sec-hdr { text-align: center; margin-bottom: 3.5rem; }
.sec-label {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.sec-label.light { color: var(--gold-lt); }
.sec-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: .9rem;
}
.sec-title.light { color: var(--white); }
.sec-desc { font-size: 1rem; color: var(--text-lt); max-width: 560px; margin: 0 auto; line-height: 1.7; }

/* ---------- BUTTONS ---------- */
.btn-gold {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Jost', sans-serif;
  font-size: .9rem; font-weight: 600;
  letter-spacing: .06em;
  padding: .85rem 2rem; border-radius: 4px;
  transition: background var(--transition), transform var(--transition);
}
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: .5rem;
  border: 2px solid rgba(255,255,255,.4);
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: .9rem; font-weight: 500;
  padding: .83rem 1.8rem; border-radius: 4px;
  transition: border-color var(--transition), background var(--transition);
}
.btn-ghost:hover { border-color: var(--gold); background: rgba(201,168,76,.1); }

/* ---------- SCROLL REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =====================================================
   NAVBAR
===================================================== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.nav-container {
  max-width: 1200px; margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
  display: flex; align-items: center; gap: 2rem;
}
.nav-logo {
  display: flex; align-items: center; gap: .85rem;
  margin-right: auto;
}
.logo-badge {
  background: var(--gold);
  color: var(--navy);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 700;
  width: 46px; height: 46px;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  letter-spacing: .05em;
  flex-shrink: 0;
}

.logo-name {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 700;
  color: var(--white);
  letter-spacing: .02em;
}
.logo-tag {
  display: block;
  font-size: .65rem; font-weight: 400;
  color: rgba(255,255,255,.55);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.nav-links { display: flex; align-items: center; gap: .25rem; }
.nav-a {
  color: rgba(255,255,255,.8);
  font-size: .85rem; font-weight: 500;
  letter-spacing: .04em;
  padding: .45rem .8rem;
  border-radius: 4px;
  transition: color var(--transition), background var(--transition);
}
.nav-a:hover, .nav-a.active { color: var(--gold); background: rgba(201,168,76,.08); }
.nav-cta {
  display: flex; align-items: center; gap: .4rem;
  background: var(--gold);
  color: var(--navy);
  font-size: .82rem; font-weight: 600;
  letter-spacing: .06em;
  padding: .55rem 1.2rem; border-radius: 4px;
  white-space: nowrap;
  transition: background var(--transition);
}
.nav-cta:hover { background: var(--gold-lt); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none; flex-direction: column;
  background: var(--navy-mid);
  padding: 1rem 2rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,.08);
  gap: .25rem;
}
.mobile-menu.open { display: flex; }
.mob-a {
  color: rgba(255,255,255,.85); font-size: .95rem;
  padding: .65rem .5rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color var(--transition);
}
.mob-a:hover { color: var(--gold); }
.mob-cta {
  margin-top: .75rem;
  background: var(--gold); color: var(--navy);
  text-align: center; padding: .8rem;
  border-radius: 4px; font-weight: 600; font-size: .9rem;
}

/* =====================================================
   HERO
===================================================== */
.hero {
  min-height: 100vh;
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-mid) 55%, #1a3a5c 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 8rem 2rem 0;
  position: relative; overflow: hidden;
  text-align: center;
}
.hero-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.shape {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.12), transparent 70%);
}
.shape-1 { width: 700px; height: 700px; top: -200px; right: -200px; }
.shape-2 { width: 500px; height: 500px; bottom: 50px; left: -200px; }
.shape-3 { width: 300px; height: 300px; top: 40%; left: 40%; opacity: .5; }

.hero-content { position: relative; z-index: 1; max-width: 780px; }
.hero-pill {
  display: inline-block;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.35);
  color: var(--gold-lt);
  font-size: .75rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase;
  padding: .4rem 1.2rem; border-radius: 50px;
  margin-bottom: 1.8rem;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 1.5rem;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 1.05rem; font-weight: 300;
  color: rgba(255,255,255,.72);
  line-height: 1.75; margin-bottom: 2.5rem;
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero-strip {
  position: relative; z-index: 1;
  width: 100%; max-width: 860px;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px 12px 0 0;
  display: flex; align-items: stretch;
  margin-top: 4rem;
}
.strip-item {
  flex: 1; padding: 1.4rem 1.8rem; text-align: center;
}
.strip-item strong {
  display: block; color: var(--gold-lt);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 700;
  margin-bottom: .3rem;
}
.strip-item span {
  font-size: .8rem; color: rgba(255,255,255,.6);
  letter-spacing: .04em;
}
.strip-sep { width: 1px; background: rgba(255,255,255,.12); margin: 1rem 0; }

/* =====================================================
   SERVICES
===================================================== */
.services { padding: 7rem 0; background: var(--off-white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.srv-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.srv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.srv-card.featured {
  background: var(--navy);
  border-color: var(--navy);
}
.srv-card.featured h3, .srv-card.featured p, .srv-card.featured .srv-num { color: var(--white); }
.srv-card.featured .srv-icon { color: var(--gold); }
.srv-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; font-weight: 700;
  color: var(--gold-pale);
  position: absolute; top: 1.2rem; right: 1.5rem;
  line-height: 1;
}
.srv-card.featured .srv-num { color: rgba(201,168,76,.2); }
.srv-icon {
  width: 52px; height: 52px;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.srv-icon svg { width: 100%; height: 100%; }
.srv-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 700;
  color: var(--navy);
  margin-bottom: .8rem;
}
.srv-card p {
  font-size: .92rem; color: var(--text-lt);
  line-height: 1.7; margin-bottom: 1.5rem;
}
.srv-card.featured p { color: rgba(255,255,255,.7); }
.srv-badge {
  display: inline-block;
  font-size: .72rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .35rem .9rem; border-radius: 50px;
}
.srv-badge.open { background: rgba(34,197,94,.12); color: #16a34a; }
.srv-badge.limited { background: rgba(201,168,76,.12); color: #a07c1f; }
.srv-card.featured .srv-badge.limited { background: rgba(201,168,76,.2); color: var(--gold-lt); }

/* =====================================================
   HOURS
===================================================== */
.hours-sec {
  padding: 7rem 0;
  background: var(--navy);
}
.hours-wrap {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 5rem; align-items: start;
}
.hours-left p { color: rgba(255,255,255,.65); font-size: .97rem; line-height: 1.75; }
.hours-right { display: flex; flex-direction: column; gap: 1.25rem; }
.h-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 2rem;
  transition: background var(--transition);
}
.h-card:hover { background: rgba(255,255,255,.09); }
.h-card.big { border-color: rgba(201,168,76,.35); background: rgba(201,168,76,.07); }
.h-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.h-card-label {
  font-size: .72rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .6rem;
}
.h-time {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; font-weight: 700;
  color: var(--white); line-height: 1;
  margin-bottom: .5rem;
}
.h-time.small-t { font-size: 1.9rem; }
.h-sub { font-size: .85rem; color: rgba(255,255,255,.55); line-height: 1.5; }

/* =====================================================
   GALLERY
===================================================== */
.gallery-sec { padding: 7rem 0; background: var(--white); }
.gallery-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.g-item {
  position: relative; overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  background: var(--navy-lt);
}
.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.g-item:hover img { transform: scale(1.05); }
.g-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,.75) 0%, transparent 60%);
  display: flex; align-items: flex-end;
  padding: 1.5rem;
  opacity: 0; transition: opacity var(--transition);
}
.g-item:hover .g-overlay { opacity: 1; }
.g-overlay span {
  color: var(--white); font-size: .85rem;
  font-weight: 500; letter-spacing: .08em;
  text-transform: uppercase;
}

/* =====================================================
   ABOUT
===================================================== */
.about-sec { padding: 7rem 0; background: var(--off-white); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.about-text p {
  font-size: .97rem; color: var(--text-lt);
  line-height: 1.8; margin-bottom: 1rem;
}
.about-details { margin-top: 1.75rem; display: flex; flex-direction: column; gap: .8rem; }
.a-detail {
  display: flex; align-items: center; gap: .7rem;
  font-size: .9rem; color: var(--text);
}
.a-detail svg { color: var(--gold); flex-shrink: 0; }
.a-detail a { color: var(--navy); font-weight: 500; }
.a-detail a:hover { color: var(--gold); }

.video-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--navy);
  aspect-ratio: 16/9;
}
.video-frame video { width: 100%; height: 100%; object-fit: cover; }

/* =====================================================
   CONTACT
===================================================== */
.contact-sec { padding: 7rem 0; background: var(--white); }
.contact-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.5rem; margin-bottom: 3rem;
}
.c-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.2rem 2rem; text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.c-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.c-icon {
  width: 48px; height: 48px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
}
.c-icon svg { width: 22px; height: 22px; }
.c-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; font-weight: 700;
  color: var(--navy); margin-bottom: .5rem;
}
.c-card a { color: var(--text-lt); font-size: .95rem; line-height: 1.6; transition: color var(--transition); }
.c-card a:hover { color: var(--gold); }
.c-open { color: #16a34a; font-weight: 600; font-size: .9rem; margin-bottom: .3rem; }
.c-limited { color: var(--text-lt); font-size: .85rem; line-height: 1.6; }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

/* =====================================================
   FOOTER
===================================================== */
.footer {
  background: var(--navy);
  padding: 3.5rem 0 2rem;
}
.footer-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 2rem;
  display: flex; flex-direction: column; align-items: center;
  gap: 1.5rem; text-align: center;
}
.footer-brand { display: flex; align-items: center; gap: .85rem; }
.f-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 700;
  color: var(--white);
}
.f-addr { font-size: .75rem; color: rgba(255,255,255,.5); margin-top: .2rem; }
.footer-nav {
  display: flex; flex-wrap: wrap; gap: .25rem .15rem;
  justify-content: center;
}
.footer-nav a {
  color: rgba(255,255,255,.55);
  font-size: .82rem; font-weight: 400;
  padding: .3rem .75rem; border-radius: 4px;
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--gold); }
.footer-copy { font-size: .75rem; color: rgba(255,255,255,.35); }

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .hours-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .h-row { grid-template-columns: 1fr; }

  .hero { padding-top: 6rem; }
  .hero-strip { flex-direction: column; border-radius: 12px; }
  .strip-sep { width: 100%; height: 1px; margin: 0; }

  .hours-wrap { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .hero-btns { flex-direction: column; align-items: center; }
  .btn-gold, .btn-ghost { width: 100%; max-width: 280px; justify-content: center; }
}

/* Logo image */
.logo-img {
  height: 46px;
  width: auto;
  object-fit: contain;
  display: block;
}
.logo-img.sm {
  height: 38px;
}
