/* ══════════════════════════════════════════════════════════════
   Sethmag eCafe — style.css
   Mobile-first, CSS custom properties, production-grade
══════════════════════════════════════════════════════════════ */

/* ── Reset & Base ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

/* ── Design Tokens ── */
:root {
  /* Colours */
  --navy:        #0B1A2E;
  --navy-mid:    #12243D;
  --navy-light:  #162C4A;
  --yellow:      #F5E132;
  --magenta:     #E8177A;
  --cyan:        #1CC8D9;
  --blue-icon:   #1A3A6B;
  --white:       #FFFFFF;
  --off-white:   #F5F7FA;
  --text:        #0B1A2E;
  --text-muted:  #5A6A82;
  --wa-green:    #25D366;

  /* Typography */
  --font-display: 'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  /* Spacing */
  --section-py: clamp(4rem, 8vw, 8rem);
  --gap:        clamp(1.5rem, 3vw, 2.5rem);

  /* Radius */
  --radius-card: 16px;
  --radius-btn:  999px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Nav height */
  --nav-h: 72px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
ul { list-style: none; }
a { text-decoration: none; color: inherit; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-wa {
  background: var(--wa-green);
  color: var(--white);
  position: relative;
  overflow: visible;
}
.btn-wa:hover {
  background: #1ebe58;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
}
.btn-wa--lg {
  font-size: 1.0625rem;
  padding: 1rem 2rem;
}

/* WhatsApp pulse ring */
.btn-wa--pulse::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-btn);
  border: 2px solid var(--wa-green);
  animation: wa-pulse 2s ease-out infinite;
  pointer-events: none;
}
@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: 0.8; }
  100% { transform: scale(1.5); opacity: 0; }
}

.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);
  box-shadow: 0 4px 16px rgba(255,255,255,0.15);
}

/* ══════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.site-nav.scrolled {
  background: rgba(11,26,46,0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  height: var(--nav-h);
  padding-inline: clamp(1.25rem, 5vw, 3rem);
  max-width: 1280px;
  margin-inline: auto;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-badge svg { flex-shrink: 0; }

.logo-img {
  height: 40px;
  width: auto;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--white);
  letter-spacing: -0.01em;
}

.logo-sub {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.02em;
}

.logo-e {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  background: var(--cyan);
  color: var(--navy);
  border-radius: 50%;
  font-size: 0.5625rem;
  font-weight: 800;
  margin-right: 1px;
  vertical-align: middle;
}

/* Nav links */
.nav-links {
  display: none;
  gap: 0.25rem;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.8);
  padding: 0.5rem 0.875rem;
  border-radius: 8px;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.nav-link.active { color: var(--cyan); }

/* Nav WhatsApp — hidden on mobile */
.nav-wa {
  display: none;
  margin-left: auto;
  font-size: 0.875rem;
  padding: 0.5625rem 1.125rem;
}

@media (min-width: 768px) {
  .nav-wa { display: inline-flex; }
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
  border-radius: 8px;
  transition: background 0.2s var(--ease);
}

.hamburger:hover { background: rgba(255,255,255,0.08); }

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 768px) {
  .hamburger { display: none; }
}

/* Mobile menu — hidden by default, shown only via .is-open added by JS on hamburger click */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.5rem clamp(1.25rem,5vw,3rem) 2rem;
  background: rgba(11,26,46,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.mobile-menu.is-open {
  display: flex;
  animation: menu-slide-down 0.28s var(--ease) both;
}

@keyframes menu-slide-down {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Always hide on tablet/desktop regardless of JS state */
@media (min-width: 768px) {
  .mobile-menu,
  .mobile-menu.is-open {
    display: none !important;
  }
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-link {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.85);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.mobile-link:hover { color: var(--white); background: rgba(255,255,255,0.06); }

.mobile-menu .btn-wa {
  margin-top: 0.75rem;
  align-self: flex-start;
}

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh; /* fallback */
  background: var(--navy);
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}

/* Dot grid */
.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

/* Atmospheric blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.hero-blob--cyan {
  width: clamp(300px, 45vw, 600px);
  height: clamp(300px, 45vw, 600px);
  background: rgba(28,200,217,0.08);
  top: -10%;
  right: -8%;
  animation: blob-drift 9s ease-in-out infinite;
}

.hero-blob--magenta {
  width: clamp(250px, 38vw, 500px);
  height: clamp(250px, 38vw, 500px);
  background: rgba(232,23,122,0.08);
  bottom: -8%;
  left: -6%;
  animation: blob-drift 11s ease-in-out infinite reverse;
}

@keyframes blob-drift {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-30px) scale(1.04); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap);
  align-items: center;
  padding-block: clamp(3rem, 6vw, 5rem);
  width: 100%;
}

@media (min-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
  }
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: var(--yellow);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  padding: 0.375rem 0.875rem;
  border-radius: 999px;
  box-shadow: 0 0 20px rgba(245,225,50,0.35);
  /* Animation */
  animation: fade-up 0.5s var(--ease) 0.1s both;
}

/* Hero Heading */
.hero-heading {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-top: 1.25rem;
}

.hero-h1-line1 {
  color: var(--white);
  animation: fade-up 0.5s var(--ease) 0.25s both;
}

.hero-h1-line2 {
  color: var(--cyan);
  animation: fade-up 0.5s var(--ease) 0.4s both;
}

/* Hero Subtitle */
.hero-subtitle {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(1rem, 2vw, 1.1875rem);
  color: rgba(255,255,255,0.7);
  max-width: 42ch;
  margin-top: 1.25rem;
  animation: fade-up 0.5s var(--ease) 0.55s both;
}

/* Hero CTAs */
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-top: 2rem;
  animation: fade-up 0.5s var(--ease) 0.7s both;
}

/* Hero Location */
.hero-location {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  align-items: center;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  margin-top: 1.5rem;
  animation: fade-up 0.5s var(--ease) 0.85s both;
}

.hero-sep { opacity: 0.4; }

.hero-tel {
  color: rgba(255,255,255,0.6);
  transition: color 0.2s var(--ease);
}
.hero-tel:hover { color: var(--cyan); }

/* Hero icon grid */
.hero-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 0;
}

.icon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 3vw, 1.75rem);
}

.icon-grid > *:nth-child(even) {
  margin-top: clamp(1.5rem, 4vw, 2.5rem);
}

.icon-circle {
  width: clamp(90px, 12vw, 130px);
  height: clamp(90px, 12vw, 130px);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s var(--ease);
  cursor: default;
  /* Bounce-in animation */
  animation: icon-pop 0.6s var(--ease-spring) calc(0.8s + var(--i) * 0.1s) both;
}

@keyframes icon-pop {
  0%   { opacity: 0; transform: scale(0.5); }
  100% { opacity: 1; transform: scale(1); }
}

.icon-circle:hover {
  transform: scale(1.08) translateY(-4px);
}

.icon-circle svg {
  width: 38%;
  height: 38%;
  flex-shrink: 0;
}

.icon-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(0.5rem, 1.2vw, 0.6875rem);
  text-align: center;
  line-height: 1.2;
  padding-inline: 0.5rem;
}

.icon-circle--yellow {
  background: rgba(245,225,50,0.15);
  border: 2px solid rgba(245,225,50,0.35);
  color: var(--yellow);
  box-shadow: 0 8px 32px rgba(245,225,50,0.15);
}
.icon-circle--yellow:hover { box-shadow: 0 12px 40px rgba(245,225,50,0.3); }

.icon-circle--magenta {
  background: rgba(232,23,122,0.15);
  border: 2px solid rgba(232,23,122,0.35);
  color: var(--magenta);
  box-shadow: 0 8px 32px rgba(232,23,122,0.15);
}
.icon-circle--magenta:hover { box-shadow: 0 12px 40px rgba(232,23,122,0.3); }

.icon-circle--cyan {
  background: rgba(28,200,217,0.15);
  border: 2px solid rgba(28,200,217,0.35);
  color: var(--cyan);
  box-shadow: 0 8px 32px rgba(28,200,217,0.15);
}
.icon-circle--cyan:hover { box-shadow: 0 12px 40px rgba(28,200,217,0.3); }

.icon-circle--blue {
  background: rgba(26,58,107,0.5);
  border: 2px solid rgba(26,58,107,0.8);
  color: #5a9fd4;
  box-shadow: 0 8px 32px rgba(26,58,107,0.3);
}
.icon-circle--blue:hover { box-shadow: 0 12px 40px rgba(26,58,107,0.5); }

/* Hero fade-up keyframe */
@keyframes fade-up {
  0%   { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════════
   SECTION HEADER (shared)
══════════════════════════════════════════════ */
.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* ══════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════ */
.services-section {
  background: var(--white);
  padding-block: var(--section-py);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: var(--gap);
  row-gap: 3.5rem;    /* 56px: 40px icon overflow + 16px breathing room */
  padding-top: 2.5rem; /* clears the icon of the first row above the grid */
}

@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); }
}

.service-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-card);
  border: 1px solid rgba(0,0,0,0.07);
  overflow: visible;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px color-mix(in srgb, var(--accent) 20%, transparent);
}

.card-accent-bar {
  height: 4px;
  background: var(--accent);
  border-radius: var(--radius-card) var(--radius-card) 0 0;
}

.card-icon-wrap {
  display: flex;
  justify-content: center;
  margin-top: -40px;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 2;
}

.card-icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--accent);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 20px color-mix(in srgb, var(--accent) 40%, transparent);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s var(--ease);
}

.card-icon-circle svg {
  width: 38px;
  height: 38px;
}

.service-card:hover .card-icon-circle {
  transform: scale(1.08);
  box-shadow: 0 6px 28px color-mix(in srgb, var(--accent) 55%, transparent);
}

.card-body {
  padding: 0 1.5rem 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1875rem;
  color: var(--text);
  margin-bottom: 0.875rem;
  letter-spacing: -0.01em;
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
  margin-bottom: 1.25rem;
}

.card-list li {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-muted);
  padding-left: 1rem;
  position: relative;
}

.card-list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.card-cta {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--accent);
  transition: opacity 0.2s var(--ease), gap 0.2s var(--ease);
  display: inline-flex;
  align-items: center;
}

.card-cta:hover { opacity: 0.75; }

/* ══════════════════════════════════════════════
   WHY SETHMAG
══════════════════════════════════════════════ */
.why-section {
  background: var(--off-white);
  padding-block: var(--section-py);
}

.why-section .section-title { color: var(--text); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap);
}

@media (min-width: 640px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

.why-block {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 1.75rem 1.5rem;
  border-left: 4px solid var(--accent);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.why-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.why-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--text);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.why-desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ══════════════════════════════════════════════
   GET A QUOTE
══════════════════════════════════════════════ */
.quote-section {
  background: var(--navy);
  padding-block: var(--section-py);
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.quote-section::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(28,200,217,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.quote-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (min-width: 768px) {
  .quote-inner { grid-template-columns: 1fr 1fr; }
}

.quote-heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.quote-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  color: rgba(255,255,255,0.65);
  max-width: 38ch;
  line-height: 1.65;
}

.quote-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  padding: 0.75rem 1.25rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.contact-link:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-color: rgba(255,255,255,0.25);
}

.contact-icon { font-size: 1.125rem; }

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.site-footer {
  background: var(--navy-mid);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-block: 3rem 2rem;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.footer-logo .logo-brand,
.footer-logo .logo-sub { color: rgba(255,255,255,0.85); }

.footer-logo .logo-img { height: 64px; }

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.5rem;
}

.footer-nav a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  padding: 0.375rem 0.75rem;
  border-radius: 6px;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.footer-nav a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}

.footer-tagline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 0.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(0.8125rem, 2vw, 1rem);
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.5);
  text-align: center;
  padding-block: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 2rem;
}

.footer-dot { opacity: 0.3; }

.footer-address {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  text-align: center;
  margin-bottom: 1.75rem;
}

.footer-address a {
  color: rgba(255,255,255,0.55);
  transition: color 0.2s var(--ease);
}
.footer-address a:hover { color: var(--cyan); }

.footer-sep { opacity: 0.35; }

.footer-copy {
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.3);
}

/* ══════════════════════════════════════════════
   RESPONSIVE — MOBILE TWEAKS
══════════════════════════════════════════════ */

/* Hero CTAs: stack vertically on narrow phones */
@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-ctas .btn {
    justify-content: center;
    text-align: center;
  }
}

/* Hero: tighten heading on very small phones */
@media (max-width: 380px) {
  .hero-heading {
    font-size: clamp(1.875rem, 9vw, 2.5rem);
  }
  .logo-brand { font-size: 0.9375rem; }
  .logo-sub   { font-size: 0.6875rem; }
  .logo-badge svg { width: 34px; height: 34px; }
  .logo-img { height: 34px; }
}

/* Hero location: stack on narrow phones */
@media (max-width: 480px) {
  .hero-location {
    flex-direction: column;
    gap: 0.25rem;
  }
  .hero-sep { display: none; }
}

/* Footer top: centre-stack on mobile, row on tablet+ */
.footer-top {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

@media (min-width: 640px) {
  .footer-top {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }
}

/* Quote section: full-width buttons on mobile */
@media (max-width: 767px) {
  .quote-right {
    align-items: stretch;
  }
  .quote-right .btn,
  .contact-link {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

/* Why blocks: improve layout on very small screens */
@media (max-width: 400px) {
  .why-block {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}

/* Service cards: ensure card body has enough top breathing room on mobile */
@media (max-width: 639px) {
  .card-body {
    padding-top: 0.5rem;
  }
}

/* ══════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
══════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease) var(--delay, 0ms),
              transform 0.6s var(--ease) var(--delay, 0ms);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* No-JS fallback — show everything */
.no-js .reveal {
  opacity: 1;
  transform: none;
}

/* ══════════════════════════════════════════════
   REDUCED MOTION
══════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
