/* ============================================================
   SOLVOR — STYLES  (Sherwin-Williams inspired)
   ============================================================ */

/* ── Skip Navigation ──────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  padding: 10px 20px;
  background: var(--primary, #0d2a5c);
  color: #fff;
  font-weight: 700;
  z-index: 9999;
  text-decoration: none;
}
.skip-link:focus { top: 0; }

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Theme: Navy Blue · White · Yellow */
  --primary:      #0d2a5c;
  --primary-dark: #071a3e;
  --accent:       #f0b429;
  --accent-light: #f7c52e;
  --navy:         #0d2a5c;
  --navy-light:   #1a3e7a;
  --white:        #ffffff;
  --off-white:    #f5f8ff;
  --light-gray:   #eef1f8;
  --text:         #1a1a1a;
  --text-muted:   #4a5572;
  --border:       #cdd5e8;
  /* Fonts */
  --font-display: 'Jost', sans-serif;
  --font-sans:    'Jost', sans-serif;
  --font-body:    'Jost', sans-serif;
  /* Sizing */
  --radius:    6px;
  --radius-sm: 4px;
  --radius-pill: 6px;
  --shadow:    0 2px 20px rgba(13,42,92,0.08);
  --shadow-md: 0 8px 32px rgba(13,42,92,0.14);
  --shadow-lg: 0 16px 56px rgba(13,42,92,0.22);
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  --topbar-h: 38px;
  --nav-h: 70px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Jost', sans-serif; color: var(--text); background: var(--white); line-height: 1.65; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ── Typography scale ─────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-sans); line-height: 1.15; }
/* Display headings — serif for editorial gravitas */
h2 { font-family: var(--font-display); font-weight: 800; letter-spacing: -0.5px; }
.section-header h2,
.about-teaser-text h2,
.about-text h2,
.ss-pride-text h2,
.cta-inner h2,
.page-hero-content h1 {
  font-family: var(--font-display);
  font-weight: 800;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn::after {
  content: '→';
  font-size: 1rem;
  transition: transform 0.25s cubic-bezier(0.4,0,0.2,1);
  line-height: 1;
}

.btn-primary {
  background: var(--accent);
  color: var(--primary-dark);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(240,180,41,0.50);
}
.btn-primary:hover::after { transform: translateX(4px); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.50);
}
.btn-outline::after { content: '↗'; }
.btn-outline:hover {
  background: rgba(255,255,255,0.10);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid rgba(255,255,255,0.50);
  color: var(--white);
  background: transparent;
}
.btn-outline-light::after { content: '→'; font-size: 1rem; line-height: 1; transition: transform 0.25s; }
.btn-outline-light:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.10);
  transform: translateY(-2px);
}
.btn-outline-light:hover::after { transform: translateX(4px); }

.full-width { width: 100%; }

/* ── Top Contact Bar ──────────────────────────────────────── */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--topbar-h);
  background: var(--primary-dark);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  z-index: 1010;
  display: flex;
  align-items: center;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 100%;
}
.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.70);
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.2s;
}
.topbar-item:hover { color: var(--accent-light); }
.topbar-item svg {
  width: 12px; height: 12px;
  fill: var(--accent-light);
  flex-shrink: 0;
}
.topbar-social {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 4px;
}
.topbar-social a {
  display: flex;
  align-items: center;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.topbar-social a:hover { color: var(--accent-light); }
.topbar-social svg { width: 13px; height: 13px; fill: currentColor; }

/* ── Navbar ───────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: var(--topbar-h); left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.navbar.scrolled {
  background: var(--primary-dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.35);
}

.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}

.nav-logo { display: flex; align-items: center; }
.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.3));
  transition: opacity 0.2s ease;
}
.nav-logo-img:hover { opacity: 0.88; }
.logo-text {
  font-family: 'Jost', sans-serif;
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -1px;
}
.logo-sub {
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-light);
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

/* Nav links */
.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 14px;
  color: rgba(255,255,255,0.88);
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-links > li > a:hover,
.nav-links > li > a.active {
  color: var(--accent-light);
  background: rgba(255,255,255,0.07);
}
.nav-links > li > a.active { color: var(--accent-light); }

.chevron { font-size: 0.75rem; opacity: 0.7; transition: transform 0.2s; }
.has-dropdown:hover .chevron { transform: rotate(180deg); }

/* Dropdown menu */
.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--white);
  min-width: 210px;
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  border-top: 3px solid var(--accent);
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: 10px 18px;
  color: var(--text);
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition);
}
.dropdown li a:hover {
  background: var(--off-white);
  color: var(--accent);
  padding-left: 24px;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 10;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.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); }

/* ── Image utilities ──────────────────────────────────────── */
.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Service & About photos */
.service-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  flex-shrink: 0;
}
.service-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
.service-img:hover img { transform: scale(1.05); }

.about-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 56px;
  position: relative;
}
.about-photo img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}
.about-photo-badge {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(7,26,62,0.85));
  padding: 40px 24px 20px;
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
}

/* Hero Carousel ────────────────────────────────────────── */
.hero-carousel {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
}
.hero-carousel::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  z-index: 3;
}

.carousel-track { width: 100%; height: 100%; }

.carousel-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}
.carousel-slide.active { opacity: 1; pointer-events: all; }

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.06);
  transition: transform 8s ease;
}
.carousel-slide.active .slide-bg { transform: scale(1); }

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(7,26,62,0.88) 0%, rgba(13,42,92,0.70) 50%, rgba(7,26,62,0.45) 100%);
}

.slide-content {
  position: relative;
  max-width: 680px;
  padding: 0 60px;
  color: var(--white);
  z-index: 2;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--accent-light);
  flex-shrink: 0;
}

.slide-content h1, .slide-content .slide-h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -1px;
  margin-bottom: 24px;
  line-height: 1.05;
}
.slide-content h1 span, .slide-content .slide-h1 span { color: var(--accent-light); font-style: italic; }

.hero-subtitle {
  font-size: 1.05rem;
  opacity: 0.82;
  max-width: 520px;
  margin-bottom: 38px;
  line-height: 1.7;
}

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* Paint chip accent (decorative column) */
.slide-chip-accent {
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.accent-chip { width: 60px; height: 80px; }

/* Carousel controls */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}
.carousel-btn:hover { background: rgba(255,255,255,0.28); border-color: rgba(255,255,255,0.6); }
.carousel-btn.prev { left: 24px; }
.carousel-btn.next { right: 24px; }

.carousel-dots {
  position: absolute;
  bottom: 32px;
  left: 60px;
  display: flex;
  gap: 10px;
  z-index: 10;
}
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.6);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}
.dot.active,
.dot:hover { background: var(--accent-light); border-color: var(--accent-light); }

/* ── Featured Colours Strip (SW-style) ────────────────────── */
.featured-colours-strip {
  background: var(--white);
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}

.strip-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  gap: 20px;
  flex-wrap: wrap;
}
.strip-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.5px;
  margin-top: 8px;
}

/* Paint chip card (SW-style vertical chip) */
.featured-chips-row {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 12px;
}

.paint-chip {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid var(--border);
  text-decoration: none;
}
.paint-chip:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.chip-color {
  height: 100px;
  width: 100%;
}
.chip-label {
  background: var(--white);
  padding: 8px 10px;
}
.chip-label span {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}
.chip-label small {
  font-size: 0.6rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ── Sections ─────────────────────────────────────────────── */
.section { padding: 96px 0; }

.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 400;
  color: var(--primary);
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}
.section-header.light h2 { color: var(--white); }
.section-header.light .section-label { color: var(--accent-light); }
.section-header.light .section-desc { color: rgba(255,255,255,0.72); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}
.section-header.light .section-label::before,
.ss-pride .section-label::before { background: var(--accent-light); }
/* Remove the pseudo-element color from already-existing specific override */
.section-label {
  margin-bottom: 8px;
}
.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Angled top (SW section dividers) */
.angled-top {
  clip-path: polygon(0 40px, 100% 0, 100% 100%, 0 100%);
  padding-top: 128px;
}

/* ── About Teaser ─────────────────────────────────────────── */
.about-teaser { background: var(--off-white); }

.about-teaser-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: center;
}
.about-teaser-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -1px;
  margin: 10px 0 20px;
  line-height: 1.15;
}
.about-teaser-text p { color: var(--text-muted); font-size: 1rem; margin-bottom: 14px; line-height: 1.75; }

.about-teaser-cards { display: flex; flex-direction: column; gap: 14px; }

.teaser-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--accent);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: var(--transition);
}
.teaser-card:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.teaser-icon { font-size: 1.4rem; flex-shrink: 0; }
.teaser-card strong {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  margin-bottom: 3px;
}
.teaser-card p { font-size: 0.86rem; color: var(--text-muted); margin: 0; line-height: 1.5; }

/* ── Services ─────────────────────────────────────────────── */
.services-teaser { background: var(--navy); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 0 0 28px;
  text-align: left;
  transition: var(--transition);
  color: var(--white);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  background: rgba(255,255,255,0.10);
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.30);
  border-color: rgba(255,255,255,0.15);
}
.service-card-img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
  transition: transform 0.65s ease;
}
.service-card:hover .service-card-img { transform: scale(1.06); }
.service-card-body { padding: 22px 26px 0; flex: 1; display: flex; flex-direction: column; }
.service-icon { font-size: 2.2rem; margin-bottom: 16px; }
.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--accent-light);
}
.service-card p { font-size: 0.88rem; opacity: 0.8; line-height: 1.6; flex: 1; }
.service-link {
  display: inline-block;
  margin-top: 18px;
  font-family: 'Jost', sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--accent-light);
  transition: var(--transition);
}
.service-link:hover { color: var(--white); letter-spacing: 1.5px; }

/* ── Stats Bar ────────────────────────────────────────────── */
.stats-bar { background: var(--accent); padding: 52px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat { color: var(--primary-dark); }
.stat-num {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -2px;
}
.stat-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.82;
}

/* ── Products ─────────────────────────────────────────────── */
.products-teaser { background: var(--white); border-top: 4px solid var(--accent); }
.products { background: var(--white); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.product-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
  background: var(--white);
  position: relative;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.product-color { height: 110px; }
.product-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.product-card:hover .product-img { transform: scale(1.08); }

.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--primary-dark);
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}

.product-info { padding: 22px; }
.product-info h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
.product-info p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.6; }

.product-specs {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.product-specs li {
  font-size: 0.78rem;
  color: var(--text-muted);
  padding-left: 14px;
  position: relative;
}
.product-specs li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ── Colour Explorer (SW-style) ───────────────────────────── */
.colours-page { background: var(--white); }

.colour-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 52px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--border);
}
.tab-btn {
  padding: 9px 20px;
  border: 2px solid var(--border);
  border-radius: 4px;
  background: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}
.tab-btn:hover { border-color: var(--accent); color: var(--accent); }
.tab-btn.active { background: var(--accent); border-color: var(--accent); color: var(--white); }

.colour-family { margin-bottom: 56px; }

.family-title {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.3px;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
  position: relative;
}
.family-title::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 48px; height: 2px;
  background: var(--accent);
}

/* SW-style paint chip cards */
.chips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 14px;
}

.paint-chip-card {
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid var(--border);
}
.paint-chip-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}
.chip-swatch {
  height: 100px;
  width: 100%;
}
.chip-swatch.metallic { height: 100px; }

.chip-meta {
  background: var(--white);
  padding: 8px 10px 10px;
}
.chip-name {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 2px;
}
.chip-code {
  display: block;
  font-size: 0.6rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ── About page ───────────────────────────────────────────── */
.about { background: var(--off-white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.about-text p { color: var(--text-muted); margin-bottom: 16px; font-size: 1rem; line-height: 1.75; }
.about-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -1px;
  margin: 10px 0 20px;
}
.about-text p strong { color: var(--primary); font-weight: 700; }

.about-badges { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }

.badge {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--accent);
  transition: var(--transition);
}
.badge:hover { transform: translateX(4px); }
.badge-icon { font-size: 1.5rem; flex-shrink: 0; }
.badge strong {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 3px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.badge p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }

.about-values h3 {
  font-family: 'Jost', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 18px;
}

.values-list { display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; }
.values-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.97rem;
  color: var(--text-muted);
  font-weight: 600;
}
.value-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.aims-box {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius);
  padding: 26px;
}
.aims-box h4 {
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-light);
  margin-bottom: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.aims-box p { font-size: 0.9rem; opacity: 0.88; margin-bottom: 10px; }
.aims-box p:last-child { margin-bottom: 0; }

/* ── Service Detail (services page) ──────────────────────── */
.service-detail { background: var(--white); }
.service-detail.alt-bg { background: var(--off-white); }

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.service-detail-grid.reverse .service-img { order: 2; }
.service-detail-grid.reverse .service-detail-body { order: 1; }
.service-detail-body h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.5px;
  margin: 10px 0 14px;
}
.service-detail-body p { color: var(--text-muted); font-size: 1rem; line-height: 1.75; margin-bottom: 22px; }

.service-features { display: flex; flex-direction: column; gap: 9px; }
.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.93rem;
  color: var(--text-muted);
}

/* ── Contact ──────────────────────────────────────────────── */
.contact { background: var(--off-white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 26px;
}
.contact-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.contact-item strong {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  margin-bottom: 4px;
}
.contact-item p, .contact-item a { color: var(--text-muted); font-size: 0.94rem; }
.contact-item a:hover { color: var(--accent); }

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Jost', sans-serif;
  font-size: 0.93rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200,122,10,0.16);
}
.form-group textarea { resize: vertical; }

.form-success {
  display: none;
  margin-top: 14px;
  text-align: center;
  color: #2d7a3a;
  font-weight: 700;
  font-size: 0.88rem;
  background: #e8f5e9;
  padding: 12px;
  border-radius: var(--radius-sm);
}

/* ── South Sudan Pride Section ───────────────────────────── */
.ss-pride { background: var(--primary-dark); }

.ss-pride-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.ss-pride-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  gap: 14px;
}

.ss-pride-img-main {
  grid-column: 1 / -1;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.ss-pride-img-main img {
  width: 100%;
  height: auto;
  display: block;
}
.ss-pride-img-main:hover img { transform: scale(1.01); }

.ss-pride-img-secondary {
  grid-column: 1 / -1;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.ss-pride-img-secondary img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transition: transform 0.7s ease;
}
.ss-pride-img-secondary:hover img { transform: scale(1.04); }
.ss-pride-img-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.88));
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 24px 16px 12px;
  letter-spacing: 0.3px;
}

.ss-pride .section-label { color: var(--white); }

.ss-pride-text h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.8px;
  margin: 10px 0 22px;
  line-height: 1.15;
}
.ss-pride-lead {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.90);
  font-weight: 600;
  line-height: 1.7;
  margin-bottom: 16px;
}
.ss-pride-text p {
  color: rgba(255,255,255,0.70);
  font-size: 0.96rem;
  line-height: 1.75;
  margin-bottom: 14px;
}

.ss-pride-stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
  flex-wrap: wrap;
}
.ss-stat { text-align: left; }
.ss-stat-num {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--accent-light);
  line-height: 1;
  letter-spacing: -1px;
}
.ss-stat-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

@media (max-width: 1024px) {
  .ss-pride-grid { grid-template-columns: 1fr; gap: 40px; }
  .ss-pride-images { grid-template-columns: 1fr 1fr; }
  .ss-pride-img-main { grid-column: 1 / -1; }
  .ss-pride-img-secondary { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .ss-pride-images { grid-template-columns: 1fr; }
  .ss-pride-stats { gap: 24px; }
}

/* ── CTA Banner ───────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--navy-light) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(240,180,41,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-inner h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}
.cta-inner p { color: rgba(255,255,255,0.70); font-size: 1rem; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }

/* ── Page Hero (inner pages) ──────────────────────────────── */
.page-hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--navy-light) 100%);
  overflow: hidden;
  padding-top: calc(var(--nav-h) + var(--topbar-h));
}
.page-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' 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");
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7,26,62,0.85) 0%, rgba(13,42,92,0.65) 100%);
}
.page-hero-content {
  position: relative;
  text-align: center;
  color: var(--white);
  padding: 60px 24px;
}
.page-hero-content h1 {
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 400;
  letter-spacing: -0.5px;
  margin: 14px 0 16px;
}
.page-hero-content p { font-size: 1.04rem; opacity: 0.8; max-width: 480px; margin: 0 auto; }

/* ── Footer ───────────────────────────────────────────────── */
.footer { background: var(--primary-dark); color: rgba(255,255,255,0.72); }

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 72px 28px 48px;
  max-width: 1180px;
  margin: 0 auto;
}

.footer-logo { margin-bottom: 12px; }
.footer-logo-img {
  height: 48px;
  width: auto;
  display: block;
  opacity: 0.92;
}
.footer-brand > p { font-size: 0.88rem; opacity: 0.7; font-style: italic; }
.footer-about {
  font-size: 0.82rem !important;
  opacity: 0.65 !important;
  font-style: normal !important;
  line-height: 1.65;
  margin-top: 10px !important;
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 12px;
}
.footer-reg { font-size: 0.72rem; opacity: 0.5; margin-top: 8px; font-style: normal !important; }

.footer-links h4, .footer-services h4, .footer-contact h4 {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 18px;
}
.footer-links ul li,
.footer-services ul li { margin-bottom: 9px; font-size: 0.88rem; }
.footer-links a { transition: var(--transition); }
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-contact p { font-size: 0.88rem; margin-bottom: 8px; line-height: 1.6; }
.footer-contact a:hover { color: var(--accent-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 28px;
  text-align: center;
  font-size: 0.78rem;
  opacity: 0.5;
  max-width: 1180px;
  margin: 0 auto;
}

/* ── Back to Top ──────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  background: var(--accent);
  color: var(--white);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  z-index: 900;
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--accent-light); transform: translateY(-3px); }

/* ── Scroll Fade-in ───────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .featured-chips-row { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; --topbar-h: 34px; }
  .section { padding: 72px 0; }
  .angled-top { clip-path: polygon(0 20px, 100% 0, 100% 100%, 0 100%); padding-top: 96px; }

  /* Mobile nav */
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--primary);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 0;
    gap: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links > li > a {
    padding: 12px 24px;
    border-radius: 0;
    font-size: 0.85rem;
  }
  .has-dropdown:hover .dropdown,
  .has-dropdown .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-top: none;
    border-left: 3px solid var(--accent);
    border-radius: 0;
    background: rgba(0,0,0,0.15);
    display: none;
  }

  /* Hero */
  .slide-content { padding: 0 28px; }
  .slide-chip-accent { display: none; }
  .carousel-btn.prev { left: 10px; }
  .carousel-btn.next { right: 10px; }
  .carousel-dots { left: 28px; }

  /* Grids */
  .about-teaser-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; padding: 48px 24px 32px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .service-detail-grid,
  .service-detail-grid.reverse { grid-template-columns: 1fr; gap: 28px; }
  .service-detail-grid.reverse .service-img,
  .service-detail-grid.reverse .service-detail-body { order: unset; }
  .service-img img { height: 260px; }
  .form-row { grid-template-columns: 1fr; }
  .featured-chips-row { grid-template-columns: repeat(2, 1fr); }
  .strip-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .chips-grid { grid-template-columns: repeat(auto-fill, minmax(90px, 1fr)); }
}

@media (max-width: 480px) {
  .slide-content h1, .slide-content .slide-h1 { font-size: 2.6rem; letter-spacing: -0.5px; }
  .stat-num { font-size: 2.4rem; }
  .contact-form { padding: 24px 18px; }
  .featured-chips-row { grid-template-columns: repeat(2, 1fr); }
  .chips-grid { grid-template-columns: repeat(auto-fill, minmax(80px, 1fr)); }
}



/* ── Testimonials ─────────────────────────────────────────── */
.testimonials { background: var(--off-white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 30px 30px;
  box-shadow: var(--shadow);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px; left: 24px;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.25;
  pointer-events: none;
}
.testimonial-card {
  border-bottom: 4px solid var(--accent);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.testimonial-stars { color: #f59e0b; font-size: 1rem; letter-spacing: 3px; margin-bottom: 14px; }
.testimonial-text {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 20px;
  flex: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.86rem; font-weight: 700; color: var(--text); }
.testimonial-author span { font-size: 0.73rem; color: var(--text-muted); }

/* ── WhatsApp Float Button ────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 84px;
  right: 28px;
  width: 54px; height: 54px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.50);
  z-index: 900;
  transition: var(--transition);
  text-decoration: none;
}
.whatsapp-float:hover {
  background: #20ba5a;
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(37,211,102,0.60);
}
.whatsapp-float svg { width: 28px; height: 28px; fill: white; }
.whatsapp-float .wa-tooltip {
  position: absolute;
  right: 62px;
  background: var(--text);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
  padding: 5px 10px;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }

/* ── Social Links (footer) ────────────────────────────────── */
.footer-social { margin-top: 18px; }
.footer-social h5 {
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 12px;
}
.social-links { display: flex; gap: 8px; }
.social-link {
  width: 34px; height: 34px;
  border-radius: 6px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: rgba(255,255,255,0.65);
  text-decoration: none;
}
.social-link:hover { background: var(--accent); border-color: var(--accent); color: white; transform: translateY(-2px); }
.social-link svg { width: 15px; height: 15px; fill: currentColor; }

/* ── Gallery Page ─────────────────────────────────────────── */
.gallery-page { background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.gallery-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.65s ease;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 45%, rgba(7,26,62,0.90) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-cat {
  display: inline-block;
  background: var(--accent);
  color: white;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 3px 9px;
  border-radius: 3px;
  margin-bottom: 6px;
  width: fit-content;
}
.gallery-label {
  color: white;
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.3;
}

/* ── Google Map Container ─────────────────────────────────── */
.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 32px;
  border: 1px solid var(--border);
}
.map-container iframe { display: block; width: 100%; height: 360px; border: 0; }

/* ── Form Success State ───────────────────────────────────── */
.form-success {
  display: none;
  margin-top: 14px;
  text-align: center;
  color: #166534;
  font-weight: 700;
  font-size: 0.88rem;
  background: #dcfce7;
  padding: 14px;
  border-radius: var(--radius-sm);
  border: 1px solid #bbf7d0;
}

/* ── Stats counter animation ──────────────────────────────── */
.stat-num { transition: none; }

/* ── Accessibility ────────────────────────────────────────── */
:focus-visible {
  outline: 3px solid var(--accent-light);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ── Responsive additions ─────────────────────────────────── */
@media (max-width: 1024px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .topbar-left .topbar-item:not(:first-child) { display: none; }
  .topbar-right .topbar-item:last-of-type { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .whatsapp-float { bottom: 80px; right: 16px; width: 48px; height: 48px; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
}
