/* ================================================================
   FLOYD'S SERVICES LLC  —  floydsservices.com
   Main Stylesheet
================================================================ */

/* ── CUSTOM PROPERTIES ─────────────────────────────────────── */
:root {
  --navy:       #0D2545;
  --navy-dark:  #091A35;
  --navy-mid:   #163560;
  --blue:       #1B6FE8;
  --blue-hover: #1560C8;
  --blue-light: #EBF3FF;
  --blue-mid:   #3B9EFF;
  --accent:     #00C2FF;
  --white:      #FFFFFF;
  --off-white:  #F8FAFD;
  --gray-100:   #EEF2F7;
  --gray-200:   #DCE4F0;
  --gray-300:   #C4D0E2;
  --gray-400:   #8A9AB0;
  --gray-600:   #4A5568;
  --gray-800:   #1A202C;
  --gold:       #F59E0B;
  --green:      #16A34A;
  --font:       'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --section-v:  clamp(70px, 9vw, 110px);
  --radius:     8px;
  --radius-md:  12px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.07);
  --shadow:     0 4px 16px rgba(0,0,0,0.10);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.14);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.20);
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
  --t:          0.25s var(--ease);
  --t-fast:     0.15s var(--ease);
}

/* ── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font); color: var(--gray-800); line-height: 1.65; background: var(--white); }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font-family: var(--font); cursor: pointer; }
ul { list-style: none; }

/* ── TYPOGRAPHY ────────────────────────────────────────────── */
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); font-weight: 800; line-height: 1.12; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.015em; color: var(--navy); }
h3 { font-size: clamp(1.1rem, 2vw, 1.3rem); font-weight: 600; line-height: 1.3; color: var(--navy); }
h4 { font-size: 1rem; font-weight: 600; color: var(--navy); }
p  { font-size: 1rem; color: var(--gray-600); line-height: 1.75; }

/* ── LAYOUT ────────────────────────────────────────────────── */
.container   { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.container-sm{ max-width: 820px; margin: 0 auto; padding: 0 24px; }
.section     { padding: var(--section-v) 0; }
.section-alt { background: var(--off-white); }
.section-dark{ background: var(--navy); }

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: all var(--t);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27,111,232,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--gray-300);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--gray-100);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-sm { padding: 9px 20px; font-size: 0.85rem; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── BADGES / EYEBROWS ─────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.eyebrow-blue {
  background: var(--blue-light);
  color: var(--blue);
}
.eyebrow-white {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.25);
}

/* ── ICONS ─────────────────────────────────────────────────── */
.icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: var(--radius);
}
.icon-wrap svg { pointer-events: none; }
.icon-sm  { width: 20px; height: 20px; }
.icon-md  { width: 28px; height: 28px; }
.icon-lg  { width: 40px; height: 40px; }
.icon-xl  { width: 52px; height: 52px; }
.icon-bg-blue  { background: var(--blue-light); color: var(--blue); padding: 14px; }
.icon-bg-navy  { background: var(--navy); color: var(--white); padding: 14px; }
.icon-bg-white { background: rgba(255,255,255,0.15); color: var(--white); padding: 14px; }

/* ── SECTION HEADER ────────────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-header h2 { margin-bottom: 14px; }
.section-header p   { font-size: 1.05rem; }

/* ── NAVIGATION ────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--navy);
  transition: box-shadow var(--t);
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo-img {
  height: 48px;
  width: auto;
  display: block;
}
/* fallback SVG mark shown until logo image loads */
.nav-logo-icon {
  width: 52px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-logo-icon svg { width: 52px; height: 32px; color: var(--white); }
/* hide old text once img is present */
.nav-logo:has(.nav-logo-img) .nav-logo-icon,
.nav-logo:has(.nav-logo-img) > span { display: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links > li { position: relative; }

.nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  border-radius: var(--radius);
  transition: all var(--t-fast);
  white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li > a.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}
.nav-links > li > a svg { width: 14px; height: 14px; flex-shrink: 0; transition: transform var(--t-fast); }
.nav-links > li:hover > a svg { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 230px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s var(--ease);
  pointer-events: none;
}
.nav-links > li:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  font-size: 0.875rem;
  color: var(--gray-600);
  border-radius: var(--radius);
  transition: all var(--t-fast);
}
.nav-dropdown a svg { width: 16px; height: 16px; color: var(--blue); flex-shrink: 0; }
.nav-dropdown a:hover { background: var(--blue-light); color: var(--navy); }
.nav-dropdown a:hover svg { color: var(--blue-hover); }
.nav-dropdown .drop-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-400);
  padding: 8px 12px 4px;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  color: var(--white) !important;
}
.nav-phone svg { width: 15px; height: 15px; }

.btn-nav {
  background: var(--blue);
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: var(--radius);
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  transition: all var(--t);
}
.btn-nav:hover { background: var(--blue-hover) !important; transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  background-image: url('../images/sign-luxury-home.jpg');
  background-size: cover;
  background-position: center 30%;
  padding: clamp(80px, 12vw, 130px) 0 clamp(70px, 10vw, 110px);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    130deg,
    rgba(9,26,53,0.95) 0%,
    rgba(13,37,69,0.9) 55%,
    rgba(27,111,232,0.25) 100%
  );
  z-index: 0;
}
.hero > * { position: relative; z-index: 1; }
.hero .container { position: relative; z-index: 1; }

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 64px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59,158,255,0.15);
  border: 1px solid rgba(59,158,255,0.35);
  color: #7BC8FF;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.hero-eyebrow svg { width: 12px; height: 12px; }

.hero h1 {
  color: var(--white);
  margin-bottom: 22px;
}
.hero h1 span {
  background: linear-gradient(90deg, #3B9EFF, #00C2FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.stat-item {}
.stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-num.counting { color: #3B9EFF; }
.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-top: 5px;
  line-height: 1.3;
}

/* Hero form card */
.hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.35);
}
.hero-card h3 {
  font-size: 1.15rem;
  margin-bottom: 22px;
  color: var(--navy);
}

/* ── FORMS ─────────────────────────────────────────────────── */
.form-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 14px;
}
.form-field label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-600);
}
.form-field input,
.form-field select,
.form-field textarea,
.hero-form input,
.hero-form select,
.hero-form textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--gray-800);
  background: var(--white);
  transition: border-color var(--t), box-shadow var(--t);
  -webkit-appearance: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus,
.hero-form input:focus,
.hero-form select:focus,
.hero-form textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(27,111,232,0.12);
}
.form-field textarea, .hero-form textarea {
  resize: vertical;
  min-height: 90px;
  line-height: 1.6;
}
.hero-form { display: flex; flex-direction: column; gap: 10px; }
.hero-form .btn { margin-top: 4px; font-size: 1rem; padding: 14px; }

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-note {
  font-size: 0.78rem;
  color: var(--gray-400);
  text-align: center;
  margin-top: 10px;
}
.form-success {
  display: none;
  text-align: center;
  padding: 32px;
}
.form-success.visible { display: block; }
.form-success-icon {
  width: 56px;
  height: 56px;
  background: #DCFCE7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--green);
}
.form-success h3 { margin-bottom: 8px; }

/* ── SERVICES ──────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  transition: all var(--t);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.service-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.service-card .icon-wrap { margin-bottom: 22px; }
.service-card h3 { margin-bottom: 10px; }
.service-card > p { font-size: 0.9rem; margin-bottom: 20px; flex-grow: 1; }

.service-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.service-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.85rem;
  color: var(--gray-600);
}
.service-list li svg {
  width: 15px;
  height: 15px;
  color: var(--blue);
  flex-shrink: 0;
}

/* ── PROCESS ───────────────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 10px);
  right: calc(12.5% + 10px);
  height: 2px;
  background: linear-gradient(90deg, var(--blue-light), var(--blue), var(--blue-light));
}
.process-step {
  text-align: center;
  padding: 0 16px;
  position: relative;
}
.process-num {
  width: 56px;
  height: 56px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 4px var(--white), 0 0 0 6px var(--blue-light);
}
.process-step h4 { margin-bottom: 8px; font-size: 0.95rem; }
.process-step p  { font-size: 0.85rem; line-height: 1.55; }

/* ── WHY CARDS ─────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.why-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--t);
}
.why-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.why-card .icon-wrap { flex-shrink: 0; }
.why-card h3 { font-size: 1rem; margin-bottom: 6px; }
.why-card p  { font-size: 0.875rem; line-height: 1.65; }

/* ── GALLERY PREVIEW ───────────────────────────────────────── */
.gallery-prev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-prev-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--gray-200);
  transition: all var(--t);
}
.gallery-prev-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.ba-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.ba-side {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  background: var(--gray-100);
}
.ba-side img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.gallery-prev-item:hover .ba-side img { transform: scale(1.05); }
.ba-tag {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(0,0,0,0.65);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 8px;
  border-radius: 4px;
  z-index: 1;
}
.gallery-prev-info {
  padding: 14px 18px;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
}
.gallery-prev-info h4 { font-size: 0.85rem; margin-bottom: 3px; }
.gallery-prev-info p  { font-size: 0.75rem; color: var(--gray-400); }

/* ── TESTIMONIALS ──────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testimonial-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all var(--t);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.stars {
  display: flex;
  gap: 3px;
}
.stars svg { width: 16px; height: 16px; color: var(--gold); fill: var(--gold); }
.testimonial-card blockquote {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--gray-600);
  line-height: 1.75;
  flex-grow: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--gray-100);
  padding-top: 16px;
}
.author-avatar {
  width: 40px;
  height: 40px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: 0.875rem; color: var(--navy); }
.author-loc  { font-size: 0.75rem; color: var(--gray-400); }

/* ── LEARN PREVIEW BAND ────────────────────────────────────── */
.learn-band {
  background: var(--navy);
  padding: clamp(60px, 7vw, 90px) 0;
}
.learn-band-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.learn-band h2 { color: var(--white); margin-bottom: 14px; }
.learn-band p  { color: rgba(255,255,255,0.65); margin-bottom: 28px; font-size: 1.05rem; }
.learn-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.learn-link-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all var(--t);
}
.learn-link-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}
.learn-link-card svg { width: 20px; height: 20px; color: #5AADFF; flex-shrink: 0; }
.learn-link-card span {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  line-height: 1.35;
}

/* ── ABOUT ─────────────────────────────────────────────────── */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-content p { font-size: 0.95rem; margin-bottom: 18px; }
.about-content h2 { margin-bottom: 22px; }
.timeline {
  display: flex;
  flex-direction: column;
  margin-top: 36px;
  border-left: 2px solid var(--gray-200);
  padding-left: 28px;
  gap: 0;
}
.timeline-item {
  position: relative;
  padding-bottom: 26px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -33px;
  top: 4px;
  width: 10px;
  height: 10px;
  background: var(--blue);
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--blue);
}
.timeline-year {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 3px;
}
.timeline-text {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.55;
}
.about-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.about-image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}
.about-image-caption h4 { color: var(--white); font-size: 1.1rem; margin-bottom: 3px; }
.about-image-caption p  { color: rgba(255,255,255,0.7); font-size: 0.85rem; }

/* ── SERVICE AREAS ─────────────────────────────────────────── */
.areas-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 10px;
}
.area-chip {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--blue-light);
  color: #1460C0;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 100px;
  border: 1px solid #C0D9FF;
  transition: all var(--t);
}
.area-chip:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }
.area-chip svg { width: 13px; height: 13px; }

/* ── CONTACT ───────────────────────────────────────────────── */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 72px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { margin-bottom: 36px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.contact-item .icon-wrap { flex-shrink: 0; }
.contact-item-meta {}
.contact-item-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-400);
  margin-bottom: 2px;
}
.contact-item-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  transition: color var(--t);
}
a.contact-item-value:hover { color: var(--blue); }
.contact-form-wrap {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 38px;
}
.contact-form-wrap h3 { margin-bottom: 26px; font-size: 1.2rem; }

/* ── FAQ ───────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--t);
}
.faq-item.open { border-color: var(--blue); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font);
  transition: background var(--t-fast);
}
.faq-q:hover { background: var(--off-white); }
.faq-item.open .faq-q { background: var(--blue-light); }
.faq-q-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}
.faq-icon {
  width: 28px;
  height: 28px;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--t);
  color: var(--gray-600);
}
.faq-item.open .faq-icon {
  background: var(--blue);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-icon svg { width: 14px; height: 14px; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}
.faq-item.open .faq-a { max-height: 500px; }
.faq-a-inner {
  padding: 0 24px 22px;
  border-top: 1px solid var(--gray-200);
}
.faq-item.open .faq-a-inner { border-color: var(--blue-light); }
.faq-a-inner p {
  font-size: 0.9rem;
  line-height: 1.75;
  padding-top: 16px;
}

/* ── CTA BANNER ────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  padding: clamp(70px, 9vw, 100px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M40 44v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-40V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 44v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner > .container { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); margin-bottom: 14px; }
.cta-banner p  { color: rgba(255,255,255,0.68); font-size: 1.05rem; margin-bottom: 36px; }
.cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ── FOOTER ────────────────────────────────────────────────── */
.site-footer {
  background: #070F1E;
  padding: 64px 0 0;
  color: rgba(255,255,255,0.55);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand {}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.footer-logo span { color: #5AADFF; }
.footer-logo-img {
  height: 40px;
  width: auto;
  display: block;
}
.footer-logo:has(.footer-logo-img) .footer-logo-icon,
.footer-logo:has(.footer-logo-img) .footer-logo-text { display: none; }
.footer-logo-icon {
  width: 44px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.footer-logo-icon svg { width: 44px; height: 28px; color: #fff; }
.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 20px;
}
.footer-contact-line {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 8px;
}
.footer-contact-line svg { width: 14px; height: 14px; flex-shrink: 0; color: #5AADFF; }
.footer-contact-line a:hover { color: var(--white); }
.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.48);
  transition: color var(--t-fast);
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.28);
}

/* ── ARTICLE / LEARN PAGES ────────────────────────────────── */
.article-hero {
  background: var(--navy);
  padding: clamp(60px, 8vw, 100px) 0 clamp(50px, 6vw, 80px);
  position: relative;
  overflow: hidden;
}
.article-hero::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'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%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");
}
.article-hero > .container { position: relative; z-index: 1; }
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
}
.breadcrumbs a, .breadcrumbs span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--t-fast);
}
.breadcrumbs a:hover { color: rgba(255,255,255,0.9); }
.breadcrumbs .sep { color: rgba(255,255,255,0.25); }
.breadcrumbs .current { color: rgba(255,255,255,0.75); }
.article-hero h1 { color: var(--white); max-width: 800px; margin-bottom: 18px; }
.article-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.article-meta-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}
.article-meta-item svg { width: 14px; height: 14px; }

.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 56px;
  align-items: start;
  padding: clamp(50px, 7vw, 90px) 0;
}
.article-body { max-width: 700px; }
.article-body h2 {
  font-size: 1.5rem;
  margin: 40px 0 14px;
  padding-top: 8px;
  border-top: 1px solid var(--gray-200);
}
.article-body h2:first-child { margin-top: 0; border-top: none; }
.article-body h3 {
  font-size: 1.15rem;
  margin: 28px 0 10px;
}
.article-body p { margin-bottom: 18px; font-size: 0.975rem; }
.article-body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}
.article-body ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.65;
}
.article-body ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
}

.callout {
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin: 28px 0;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.callout-blue  { background: var(--blue-light); border-left: 4px solid var(--blue); }
.callout-gold  { background: #FFFBEB; border-left: 4px solid var(--gold); }
.callout-navy  { background: var(--navy); color: var(--white); }
.callout svg   { width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; }
.callout-blue svg { color: var(--blue); }
.callout-gold svg { color: var(--gold); }
.callout-navy svg { color: #5AADFF; }
.callout p, .callout-body p { font-size: 0.9rem; line-height: 1.65; margin: 0; }
.callout-navy p { color: rgba(255,255,255,0.8); }
.callout strong { color: var(--navy); }
.callout-navy strong { color: var(--white); }

.frequency-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0 28px;
  font-size: 0.875rem;
}
.frequency-table th {
  background: var(--navy);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 12px 16px;
  text-align: left;
}
.frequency-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--gray-200);
  color: var(--gray-600);
  vertical-align: top;
}
.frequency-table tr:hover td { background: var(--off-white); }
.frequency-table td:first-child { font-weight: 600; color: var(--navy); }

/* Article sidebar */
.article-sidebar { position: sticky; top: 90px; }
.sidebar-card {
  background: var(--off-white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 20px;
}
.sidebar-card h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-400);
  margin-bottom: 14px;
}
.toc-list { display: flex; flex-direction: column; gap: 8px; }
.toc-list a {
  font-size: 0.85rem;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--t-fast);
}
.toc-list a svg { width: 14px; height: 14px; color: var(--blue); flex-shrink: 0; }
.toc-list a:hover { color: var(--navy); }
.sidebar-cta-card {
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 24px;
}
.sidebar-cta-card h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 10px; }
.sidebar-cta-card p  { color: rgba(255,255,255,0.65); font-size: 0.85rem; margin-bottom: 16px; line-height: 1.6; }

.related-articles {
  padding: clamp(50px,6vw,80px) 0;
  border-top: 1px solid var(--gray-200);
}
.related-articles h3 { margin-bottom: 28px; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.related-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: all var(--t);
}
.related-card:hover { border-color: var(--blue); box-shadow: var(--shadow); transform: translateY(-2px); }
.related-card svg { width: 22px; height: 22px; color: var(--blue); flex-shrink: 0; margin-top: 2px; }
.related-card h4 { font-size: 0.875rem; margin-bottom: 5px; }
.related-card p  { font-size: 0.8rem; color: var(--gray-400); line-height: 1.5; }

/* ── GALLERY PAGE ──────────────────────────────────────────── */
.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.gallery-project {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  transition: all var(--t);
}
.gallery-project:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.gallery-single { position: relative; overflow: hidden; aspect-ratio: 16/9; background: var(--gray-100); }
.gallery-single img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.gallery-project:hover .gallery-single img { transform: scale(1.05); }
.gallery-single-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 10px 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
}
.gallery-project-info { padding: 14px 18px; border-top: 1px solid var(--gray-200); }
.gallery-project-title { font-weight: 600; font-size: 0.875rem; color: var(--navy); margin-bottom: 3px; }
.gallery-project-loc { font-size: 0.75rem; color: var(--gray-400); }
.gallery-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 8px 22px;
  border-radius: 100px;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-600);
  cursor: pointer;
  transition: all var(--t);
  font-family: var(--font);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* ── SCROLL REVEAL ANIMATIONS ─────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal][data-delay="1"] { transition-delay: 0.1s; }
[data-reveal][data-delay="2"] { transition-delay: 0.2s; }
[data-reveal][data-delay="3"] { transition-delay: 0.3s; }
[data-reveal][data-delay="4"] { transition-delay: 0.4s; }
[data-reveal][data-delay="5"] { transition-delay: 0.5s; }

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr 400px; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-grid::before { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .gallery-prev-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .learn-band-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-image { aspect-ratio: 16/9; max-height: 360px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .gallery-page-grid { grid-template-columns: 1fr 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .related-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy-dark);
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    gap: 4px;
    overflow-y: auto;
    z-index: 199;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius);
    margin-top: 4px;
    display: none;
  }
  .nav-links > li.open .nav-dropdown { display: block; }
  .nav-dropdown a { color: rgba(255,255,255,0.65); }
  .nav-dropdown a:hover { background: rgba(255,255,255,0.1); color: var(--white); }
  .drop-label { color: rgba(255,255,255,0.3) !important; }
  .nav-links > li > a { padding: 12px 16px; font-size: 1rem; }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-prev-grid { grid-template-columns: 1fr; }
  .gallery-page-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { text-align: center; justify-content: center; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .learn-links-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .article-body h2 { font-size: 1.3rem; }
  .frequency-table { font-size: 0.8rem; }
  .frequency-table th, .frequency-table td { padding: 10px 12px; }
}
