/* ============================================================
   Tents For Rent & Party Supply
   Palette: White #ffffff | Light Grey #f5f6fa | Blue #1a4080
   ============================================================ */

:root {
  --black:       #ffffff;       /* page backgrounds → white        */
  --dark:        #f5f6fa;       /* subtle section tint              */
  --dark2:       #eef0f6;       /* alternate section background     */
  --dark3:       #e4e7f0;       /* card / input backgrounds         */
  --mid:         #d0d4e0;       /* muted UI elements                */
  --border:      #cdd1df;       /* borders                          */
  --grey-muted:  #5a6280;       /* body copy                        */
  --grey-light:  #3a3f55;       /* slightly darker copy             */
  --off-white:   #1a1f36;       /* headings / primary text          */
  --white:       #ffffff;
  --blue:        #1a4080;
  --blue-light:  #2a5aad;
  --blue-glow:   rgba(26,64,128,0.20);
  --blue-soft:   rgba(26,64,128,0.08);
  --radius-sm:   6px;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow:      0 4px 24px rgba(26,64,128,0.10);
  --shadow-lg:   0 12px 48px rgba(26,64,128,0.15);
  --transition:  all 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-head:   'Montserrat', sans-serif;
  --font-body:   'Inter', sans-serif;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--off-white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1,h2,h3,h4,h5 { font-family: var(--font-head); line-height: 1.2; }
button { cursor: pointer; font-family: inherit; }

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark3); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }

/* ---- LAYOUT ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.section-pad { padding: 100px 0; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.06);
  opacity: 0;
  transition: var(--transition);
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  box-shadow: 0 0 0 0 var(--blue-glow);
}
.btn-primary:hover {
  background: var(--blue-light);
  border-color: var(--blue-light);
  box-shadow: 0 0 28px var(--blue-glow);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-ghost:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--blue-glow);
}
/* Ghost white variant — for use on dark/blue backgrounds (CTA band, hero) */
.cta-band .btn-ghost,
.hero .btn-ghost {
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.cta-band .btn-ghost:hover,
.hero .btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  box-shadow: none;
}

.btn-outline-blue {
  background: transparent;
  color: var(--blue-light);
  border-color: var(--blue);
}
.btn-outline-blue:hover {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 0 24px var(--blue-glow);
  transform: translateY(-2px);
}

.btn-lg { padding: 16px 40px; font-size: 0.95rem; }

/* ---- CHIPS / TAGS ---- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: var(--blue-soft);
  border: 1px solid var(--blue);
  border-radius: 50px;
  color: var(--blue-light);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

/* ---- SECTION HEADERS ---- */
.section-header { margin-bottom: 64px; }
.section-header.center { text-align: center; }
.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--off-white);
  margin-bottom: 16px;
  font-weight: 800;
}
.section-header p {
  color: var(--grey-muted);
  font-size: 1.05rem;
  max-width: 540px;
}
.section-header.center p { margin: 0 auto; }
.highlight { color: var(--blue-light); }
.underline-blue {
  position: relative;
  display: inline-block;
}
.underline-blue::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--blue);
  border-radius: 3px;
}

/* ---- DIVIDER ---- */
.divider {
  width: 48px;
  height: 3px;
  background: var(--blue);
  border-radius: 3px;
  margin: 16px auto 0;
}

/* ============================================================
   TOP BAR
============================================================ */
.top-bar {
  background: var(--blue);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding: 9px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.9);
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.top-bar span { display: flex; align-items: center; gap: 7px; }
.top-bar i { color: rgba(255,255,255,0.75); }
.top-bar a { color: rgba(255,255,255,0.9); transition: color 0.2s; }
.top-bar a:hover { color: var(--white); text-decoration: underline; }
.top-bar-social { display: flex; gap: 10px; }
.top-bar-social a {
  width: 26px; height: 26px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem;
  color: var(--white);
  transition: var(--transition);
}
.top-bar-social a:hover { background: rgba(255,255,255,0.3); }

/* ============================================================
   NAVBAR
============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
  box-shadow: 0 2px 16px rgba(26,64,128,0.08);
}
.navbar.scrolled { border-bottom-color: var(--blue); box-shadow: 0 4px 24px rgba(26,64,128,0.12); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo img {
  height: 58px;
  width: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--blue);
  transition: var(--transition);
}
.nav-logo:hover img { border-color: var(--blue-light); box-shadow: 0 0 16px var(--blue-glow); }

/* Make the <nav> wrapper itself a flex row so the links list
   and the Get a Quote button sit on the same baseline */
.nav-inner nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.84rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--grey-muted);
  padding: 8px 12px;           /* tighter padding for 7 items */
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%; right: 50%;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--blue);
  background: var(--blue-soft);
}
.nav-links a:hover::after, .nav-links a.active::after {
  left: 16px; right: 16px;
}

.nav-cta {
  margin-left: 8px;
  /* Ensure it sits on the same vertical midline as the nav links */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px;                /* 44px+ touch target */
  min-width: 44px; min-height: 44px;
  align-items: center; justify-content: center;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
}
.mobile-nav.open { display: block; pointer-events: all; }
.mobile-nav-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  animation: fadeIn 0.3s;
}
.mobile-nav-drawer {
  position: absolute;
  top: 0; right: 0;
  width: min(320px, 90vw);
  height: 100%;
  background: var(--white);
  border-left: 1px solid var(--border);
  padding: 28px 24px;
  animation: slideInRight 0.3s ease;
  overflow-y: auto;
}
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.mobile-nav-header img { height: 50px; width: 50px; border-radius: 50%; border: 2px solid var(--blue); object-fit: cover; }
.mobile-nav-close {
  background: var(--dark3);
  border: none;
  color: var(--grey-muted);
  width: 44px; height: 44px;   /* meet 44px touch target */
  border-radius: 50%;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}
.mobile-nav-close:hover { background: var(--blue); color: var(--white); }
.mobile-nav-links { display: flex; flex-direction: column; gap: 4px; margin-bottom: 32px; }
.mobile-nav-links a {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--grey-muted);
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border-left: 3px solid transparent;
  transition: var(--transition);
  display: flex; align-items: center; gap: 12px;
}
.mobile-nav-links a:hover, .mobile-nav-links a.active {
  color: var(--blue);
  background: var(--blue-soft);
  border-left-color: var(--blue);
}
.mobile-nav-links i { color: var(--blue-light); width: 18px; }
.mobile-nav-cta { width: 100%; text-align: center; justify-content: center; }

@keyframes slideInRight {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--blue);
  border-top: 1px solid rgba(255,255,255,0.15);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
}
.footer-brand img {
  height: 72px; width: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--blue);
  margin-bottom: 16px;
}
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 20px; max-width: 260px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  color: var(--white);
  transition: var(--transition);
}
.footer-social a:hover { background: rgba(255,255,255,0.3); border-color: rgba(255,255,255,0.5); }

.footer h4 {
  font-family: var(--font-head);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.95);
  margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  display: flex; align-items: center; gap: 8px;
  transition: var(--transition);
}
.footer-links a::before { content: '→'; color: rgba(255,255,255,0.5); font-size: 0.75rem; transition: var(--transition); }
.footer-links a:hover { color: var(--white); padding-left: 4px; }

.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.9rem; color: rgba(255,255,255,0.75); }
.footer-contact-list i { color: rgba(255,255,255,0.6); margin-top: 3px; flex-shrink: 0; width: 14px; }
.footer-contact-list a { color: rgba(255,255,255,0.75); transition: color 0.2s; }
.footer-contact-list a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  flex-wrap: wrap;
  gap: 10px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.footer-bottom a { color: rgba(255,255,255,0.8); }

/* ---- FAB Call ---- */
.fab-call {
  display: none;
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 998;
  width: 56px; height: 56px;
  background: var(--blue);
  border-radius: 50%;
  align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
  box-shadow: 0 6px 28px var(--blue-glow);
  transition: var(--transition);
  animation: pulse 2.5s infinite;
}
.fab-call:hover { background: var(--blue-light); transform: scale(1.1); }
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 var(--blue-glow), 0 6px 28px var(--blue-glow); }
  50%      { box-shadow: 0 0 0 12px rgba(26,64,128,0), 0 6px 28px var(--blue-glow); }
}

/* ============================================================
   PAGE HERO (inner pages)
============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--blue) 0%, #0f2d5e 100%);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--blue-soft) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
}
.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  max-width: 520px;
  margin-bottom: 24px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
}
.breadcrumb a { color: rgba(255,255,255,0.85); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb i { font-size: 0.65rem; color: rgba(255,255,255,0.35); }

/* ============================================================
   SCROLL ANIMATION
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  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; }

/* ============================================================
   HOME HERO
============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(10,10,10,0.72) 0%, rgba(10,10,10,0.45) 100%),
    url('../images/frame-tent-wedding-lakeside.jpg')
    center/cover no-repeat;
}
.hero-glow {
  position: absolute;
  width: 600px; height: 600px;
  top: -100px; right: -100px;
  background: radial-gradient(circle, rgba(26,64,128,0.3) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 40px 28px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.hero-content h1 {
  font-size: clamp(2.4rem, 7vw, 5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
}
.hero-content h1 .word-blue { color: #7eb3ff; }
.hero-content p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.8;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 64px; }

.hero-stats {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  width: fit-content;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(10px);
}
.hero-stat {
  padding: 20px 32px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.hero-stat:last-child { border-right: none; }
.hero-stat strong {
  display: block;
  font-size: 1.8rem;
  font-family: var(--font-head);
  font-weight: 800;
  color: #7eb3ff;
}
.hero-stat span { font-size: 0.76rem; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 0.08em; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--grey-muted);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.scroll-indicator i { font-size: 1rem; color: var(--blue-light); }
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   MARQUEE / TICKER
============================================================ */
.ticker {
  background: var(--blue);
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  animation: ticker 22s linear infinite;
  gap: 0;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 0 32px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}
.ticker-item i { opacity: 0.6; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   HOME — FEATURE STRIP
============================================================ */
.feature-strip {
  padding: 80px 0;
  background: var(--dark2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.feature-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.feature-strip-item {
  background: var(--white);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}
.feature-strip-item:hover { background: var(--blue-soft); }
.feature-strip-item i {
  font-size: 2rem;
  color: var(--blue);
  margin-bottom: 14px;
  display: block;
}
.feature-strip-item h3 { font-size: 1rem; color: var(--off-white); margin-bottom: 8px; }
.feature-strip-item p { font-size: 0.87rem; color: var(--grey-muted); }

/* ============================================================
   HOME — ABOUT PREVIEW
============================================================ */
.home-about { background: var(--white); border-top: 1px solid var(--border); }
.home-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.about-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--blue);
  color: var(--white);
  padding: 22px 26px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 8px 32px rgba(26,64,128,0.35);
  border: 1px solid var(--blue-light);
}
.about-img-badge strong {
  display: block;
  font-size: 2.2rem;
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1;
}
.about-img-badge span { font-size: 0.78rem; letter-spacing: 0.1em; opacity: 0.85; }
.about-text p { color: var(--grey-muted); font-size: 1rem; margin-bottom: 16px; line-height: 1.8; }
.about-checklist { margin: 28px 0 36px; display: flex; flex-direction: column; gap: 12px; }
.about-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--grey-muted);
}
.about-checklist i { color: var(--blue-light); flex-shrink: 0; }

/* ============================================================
   SERVICES GRID
============================================================ */
.services-section { background: var(--dark2); border-top: 1px solid var(--border); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
  box-shadow: 0 2px 12px rgba(26,64,128,0.06);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.service-card:hover {
  border-color: var(--blue);
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.4);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 54px; height: 54px;
  background: var(--blue-soft);
  border: 1px solid var(--blue);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--blue); box-shadow: 0 0 20px var(--blue-glow); }
.service-icon i { font-size: 1.3rem; color: var(--blue-light); transition: var(--transition); }
.service-card:hover .service-icon i { color: var(--white); }
.service-card h3 { font-size: 1.08rem; color: var(--off-white); margin-bottom: 12px; }
.service-card p { font-size: 0.9rem; color: var(--grey-muted); line-height: 1.7; }

/* ============================================================
   GALLERY GRID
============================================================ */
.gallery-section { background: var(--white); border-top: 1px solid var(--border); }
.gallery-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 8px 22px;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--grey-muted);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: var(--transition);
}
.filter-btn:hover { border-color: var(--blue); color: var(--blue-light); }
.filter-btn.active { background: var(--blue); border-color: var(--blue); color: var(--white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  cursor: pointer;
  aspect-ratio: 4/3;
  box-shadow: 0 2px 12px rgba(26,64,128,0.08);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay h4 { font-size: 1rem; color: var(--white); margin-bottom: 4px; }
.gallery-overlay span { font-size: 0.78rem; color: var(--blue-light); text-transform: uppercase; letter-spacing: 0.08em; }
.gallery-overlay .gallery-icon {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  background: var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  color: var(--white);
}

/* Gallery Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.95);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: var(--radius-sm); }
.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  background: var(--mid);
  border: none;
  color: var(--white);
  width: 42px; height: 42px;
  border-radius: 50%;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.lightbox-close:hover { background: var(--blue); }

/* ============================================================
   REVIEWS
============================================================ */
.reviews-section { background: var(--dark2); border-top: 1px solid var(--border); }
.rating-hero {
  display: flex;
  align-items: center;
  gap: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  margin-bottom: 56px;
  flex-wrap: wrap;
  box-shadow: 0 4px 24px rgba(26,64,128,0.08);
}
.rating-big {
  font-size: 5rem;
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--off-white);
  line-height: 1;
  flex-shrink: 0;
}
.rating-detail h3 { font-size: 1.1rem; color: var(--off-white); margin-bottom: 8px; }
.rating-detail .stars { display: flex; gap: 4px; margin-bottom: 6px; }
.rating-detail .stars i { color: #f5c518; font-size: 1.1rem; }
.rating-detail p { font-size: 0.9rem; color: var(--grey-muted); }
.rating-bars { flex: 1; min-width: 200px; display: flex; flex-direction: column; gap: 8px; }
.rating-bar { display: flex; align-items: center; gap: 12px; font-size: 0.82rem; color: var(--grey-muted); }
.rating-bar-track { flex: 1; height: 6px; background: var(--dark3); border-radius: 3px; overflow: hidden; }
.rating-bar-fill { height: 100%; background: var(--blue); border-radius: 3px; transition: width 1.2s ease; }
.rating-bar span:last-child { width: 24px; text-align: right; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: var(--transition);
  position: relative;
  box-shadow: 0 2px 12px rgba(26,64,128,0.06);
}
.review-card:hover { border-color: var(--blue); transform: translateY(-4px); box-shadow: var(--shadow); }
.review-quote {
  font-size: 2.5rem;
  color: var(--blue);
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: 8px;
}
.review-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.review-stars i { color: #f5c518; font-size: 0.9rem; }
.review-card p { font-size: 0.95rem; color: var(--grey-muted); font-style: italic; line-height: 1.7; margin-bottom: 22px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  flex-shrink: 0;
}
.review-author div strong { display: block; font-size: 0.9rem; color: var(--off-white); }
.review-author div small { font-size: 0.78rem; color: var(--grey-muted); }

/* ============================================================
   CONTACT
============================================================ */
.contact-section { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-info-cards { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(26,64,128,0.06);
}
.contact-card:hover { border-color: var(--blue); }
.contact-card-icon {
  width: 44px; height: 44px;
  background: var(--blue-soft);
  border: 1px solid var(--blue);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--blue-light);
  font-size: 1rem;
}
.contact-card-text strong {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--grey-muted);
  margin-bottom: 4px;
}
.contact-card-text a, .contact-card-text span {
  font-size: 0.97rem;
  color: var(--off-white);
  font-weight: 500;
}
.contact-card-text a:hover { color: var(--blue-light); }

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: 0 4px 32px rgba(26,64,128,0.10);
}
.contact-form-wrap h3 { font-size: 1.4rem; color: var(--off-white); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; display: flex; flex-direction: column; gap: 7px; }
.form-group label {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--grey-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--off-white);
  transition: var(--transition);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #aab0c4; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--blue-soft);
}
.form-group select { color: var(--off-white); }
.form-group select option { background: var(--white); color: var(--off-white); }
.btn-submit { width: 100%; justify-content: center; }
.form-success {
  display: none;
  margin-top: 16px;
  padding: 14px 18px;
  background: rgba(26,64,128,0.2);
  border: 1px solid var(--blue);
  border-radius: var(--radius-sm);
  color: var(--blue-light);
  font-weight: 600;
  align-items: center;
  gap: 10px;
}
.map-wrap {
  margin-top: 60px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.map-wrap iframe { width: 100%; height: 400px; border: none; display: block; }

/* ============================================================
   ABOUT PAGE
============================================================ */
.about-story { background: var(--white); }
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-story-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.about-story-text p { color: var(--grey-muted); margin-bottom: 16px; line-height: 1.8; }
.about-story-text .btn { margin-top: 12px; }

.team-section { background: var(--dark2); }
.values-section { background: var(--white); border-top: 1px solid var(--border); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--transition);
  text-align: center;
  box-shadow: 0 2px 12px rgba(26,64,128,0.06);
}
.value-card:hover { border-color: var(--blue); transform: translateY(-5px); }
.value-card i {
  font-size: 2.2rem;
  color: var(--blue-light);
  margin-bottom: 18px;
  display: block;
}
.value-card h3 { font-size: 1.1rem; color: var(--off-white); margin-bottom: 12px; }
.value-card p { font-size: 0.9rem; color: var(--grey-muted); line-height: 1.7; }

/* ============================================================
   CTA BAND
============================================================ */
.cta-band {
  background: linear-gradient(135deg, var(--blue) 0%, #0f2d5e 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-band-inner { position: relative; z-index: 1; }
.cta-band h2 { font-size: clamp(1.8rem, 4vw, 3rem); color: var(--white); margin-bottom: 16px; font-weight: 800; }
.cta-band p { color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 520px; margin: 0 auto 36px; }
.cta-band-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   RESPONSIVE
============================================================ */
/* ---- 7-item nav: compress at wide-tablet range ---- */
@media (max-width: 1100px) {
  .nav-links a { font-size: 0.78rem; padding: 8px 10px; letter-spacing: 0.03em; }
  .nav-cta { margin-left: 4px; }
}

@media (max-width: 1024px) {
  .home-about-grid, .about-story-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-wrap img, .about-story-img img { height: 360px; }
  /* Badge pulled in so it never overflows the image column */
  .about-img-badge { bottom: 12px; right: 12px; max-width: 140px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .feature-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section-pad { padding: 70px 0; }
  .top-bar-right { display: none; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero { min-height: 95vh; }
  .hero-stats { flex-direction: column; align-items: flex-start; width: 100%; }
  .hero-stat { width: 100%; border-right: none; border-bottom: 1px solid var(--border); }
  .hero-stat:last-child { border-bottom: none; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .services-grid, .gallery-grid, .reviews-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .feature-strip-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .rating-hero { flex-direction: column; align-items: flex-start; padding: 28px; }
  .rating-big { font-size: 3.5rem; }
  .fab-call { display: flex; }
  .hero-stat { padding: 16px 20px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .feature-strip-grid { grid-template-columns: 1fr; }
  .cta-band-btns { flex-direction: column; align-items: center; }
  .top-bar-inner { justify-content: center; }
  /* Badge never overflows on very small screens */
  .about-img-badge { bottom: 8px; right: 8px; max-width: 120px; font-size: 0.8rem; padding: 10px 14px; }
}
