/* ============================================================
   GET ONLINE — Shared Stylesheet
   Colour theme: light blue & white
   Design system: Notion-inspired (see design copy/DESIGN.md)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --blue:          #3da5c9;
  --blue-dark:     #2b8aac;
  --blue-deeper:   #1e7a9e;
  --blue-light:    #e6f5fb;
  --blue-lighter:  #f0f9fd;
  --white:         #ffffff;
  --off-white:     #f5fbfd;
  --text:          rgba(0, 0, 0, 0.90);
  --text-secondary:#4a6572;
  --text-muted:    #8aacb8;
  --border:        1px solid rgba(0, 0, 0, 0.08);
  --shadow-card:   0px 4px 18px rgba(0,0,0,0.04),
                   0px 2px 7px rgba(0,0,0,0.027),
                   0px 0.8px 3px rgba(0,0,0,0.02);
  --shadow-deep:   0px 1px 3px rgba(0,0,0,0.03),
                   0px 4px 10px rgba(0,0,0,0.04),
                   0px 12px 28px rgba(0,0,0,0.06);
  --radius-sm:     4px;
  --radius-md:     8px;
  --radius-lg:     12px;
  --radius-xl:     16px;
  --radius-pill:   9999px;
  --max-width:     1160px;
  --nav-height:    68px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

/* ── Utility ────────────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue-light);
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.section-heading {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--text);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 560px;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-sm);
  padding: 12px 24px;
  cursor: pointer;
  transition: background 0.18s, transform 0.15s, box-shadow 0.18s;
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(61,165,201,0.35);
}
.btn-primary:active { transform: scale(0.97); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(0,0,0,0.12);
}
.btn-ghost:hover {
  background: rgba(0,0,0,0.03);
  border-color: rgba(0,0,0,0.2);
}

/* ── Navigation ────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: var(--border);
  transition: box-shadow 0.2s;
}

.nav.scrolled {
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}


.nav-logo {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--text);
  flex-shrink: 0;
}

.nav-logo span {
  color: var(--blue);
}

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

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.15s;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-self: end;
}

.nav-phone {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-phone:hover { color: var(--blue); }

/* Hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.25s;
}

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: var(--border);
  padding: 20px 24px 24px;
  box-shadow: var(--shadow-deep);
  z-index: 99;
}
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 12px 0;
  border-bottom: var(--border);
}
.nav-mobile a:last-of-type { border-bottom: none; }
.nav-mobile .btn {
  margin-top: 16px;
  width: 100%;
  justify-content: center;
}

/* ── Scroll Animations ─────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-left {
  opacity: 0;
  transform: translateX(48px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-right {
  opacity: 0;
  transform: translateX(-48px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible,
.slide-left.visible,
.slide-right.visible {
  opacity: 1;
  transform: translate(0, 0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  padding: calc(var(--nav-height) + 80px) 0 88px;
  background: var(--white);
  text-align: center;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 60%;
  background: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(61,165,201,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue-light);
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
}

.hero h1 {
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -2px;
  color: var(--text);
  max-width: 820px;
  margin: 0 auto 24px;
}

.hero h1 .accent {
  color: var(--blue);
}

.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto 40px;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-actions .btn {
  font-size: 16px;
  padding: 14px 28px;
}

.hero-visual {
  margin: 64px auto 0;
  max-width: 760px;
  position: relative;
}

/* Browser mockup */
.browser-mock {
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-deep);
  overflow: hidden;
}

.browser-bar {
  background: #f3f4f6;
  border-bottom: var(--border);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.browser-dots {
  display: flex;
  gap: 5px;
}

.browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
}

.browser-dots span:nth-child(1) { background: #ff6059; }
.browser-dots span:nth-child(2) { background: #ffbd2e; }
.browser-dots span:nth-child(3) { background: #28c941; }

.browser-url {
  flex: 1;
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius-sm);
  padding: 4px 10px;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

.browser-content {
  padding: 28px 28px 24px;
  background: var(--off-white);
}

.mock-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  margin-bottom: 20px;
}

.mock-logo {
  width: 80px;
  height: 8px;
  background: var(--blue);
  border-radius: 4px;
  opacity: 0.6;
}

.mock-nav-links {
  display: flex;
  gap: 12px;
}

.mock-nav-links span {
  width: 36px;
  height: 6px;
  background: #ddd;
  border-radius: 3px;
}

.mock-hero-block {
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: left;
}

.mock-h1 {
  width: 60%;
  height: 12px;
  background: var(--text);
  border-radius: 6px;
  margin-bottom: 8px;
  opacity: 0.15;
}

.mock-h2 {
  width: 45%;
  height: 12px;
  background: var(--text);
  border-radius: 6px;
  margin-bottom: 16px;
  opacity: 0.1;
}

.mock-lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.mock-lines span {
  height: 6px;
  background: #ddd;
  border-radius: 3px;
}
.mock-lines span:nth-child(1) { width: 80%; }
.mock-lines span:nth-child(2) { width: 70%; }
.mock-lines span:nth-child(3) { width: 55%; }

.mock-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.mock-card {
  background: var(--blue-lighter);
  border: var(--border);
  border-radius: var(--radius-md);
  padding: 14px 12px;
}

.mock-card-icon {
  width: 20px;
  height: 20px;
  background: var(--blue);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  opacity: 0.5;
}

.mock-card-text {
  width: 60%;
  height: 6px;
  background: var(--text);
  border-radius: 3px;
  margin-bottom: 6px;
  opacity: 0.15;
}

.mock-card-sub {
  width: 80%;
  height: 4px;
  background: #ccc;
  border-radius: 2px;
}

/* ── Stats Bar ─────────────────────────────────────────────── */
.stats-bar {
  background: var(--off-white);
  border-top: var(--border);
  border-bottom: var(--border);
  padding: 40px 0;
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.stat {
  text-align: center;
  padding: 12px 16px;
  border-right: var(--border);
}
.stat:last-child { border-right: none; }

.stat-number {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -1.5px;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}

/* ── Services ───────────────────────────────────────────────── */
.services {
  padding: 96px 0;
  background: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header .section-sub {
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.22s, transform 0.22s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover {
  box-shadow: var(--shadow-deep);
  transform: translateY(-3px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--blue-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--blue-dark);
}

.service-icon svg {
  width: 24px;
  height: 24px;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--text);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ── Why Us ─────────────────────────────────────────────────── */
.why-us {
  padding: 96px 0;
  background: var(--off-white);
}

.why-us-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-us-content .section-sub {
  margin-bottom: 40px;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--blue-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-dark);
  margin-top: 2px;
}

.why-icon svg {
  width: 20px;
  height: 20px;
}

.why-item h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.why-item p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Feature visual panel */
.why-visual {
  position: relative;
}

.why-panel {
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-deep);
}

.why-panel-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: var(--border);
}

.rank-badge {
  background: var(--blue);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.3px;
}

.why-panel-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
}

.search-result {
  padding: 14px 0;
  border-bottom: var(--border);
}

.search-result:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.result-url {
  font-size: 12px;
  color: var(--blue);
  margin-bottom: 3px;
  font-weight: 500;
}

.result-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 3px;
}

.result-desc {
  font-size: 13px;
  color: var(--text-secondary);
}

.result-top { opacity: 1; }
.result-mid { opacity: 0.6; }
.result-low { opacity: 0.35; }

.why-badge-float {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--blue);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 14px 18px;
  box-shadow: 0 6px 20px rgba(61,165,201,0.4);
  text-align: center;
}

.why-badge-float strong {
  display: block;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1;
  margin-bottom: 2px;
}

.why-badge-float span {
  font-size: 11px;
  font-weight: 500;
  opacity: 0.85;
}

/* ── How It Works ───────────────────────────────────────────── */
.how-it-works {
  padding: 96px 0;
  background: var(--white);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.67% + 16px);
  right: calc(16.67% + 16px);
  height: 1px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue) 50%, var(--blue) 100%);
  opacity: 0.2;
}

.step {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  position: relative;
}

.step-number {
  width: 56px;
  height: 56px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--blue-dark);
  margin: 0 auto 20px;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 1px rgba(61,165,201,0.2);
}

.step h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.25px;
  color: var(--text);
  margin-bottom: 10px;
}

.step p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ── CTA Banner ─────────────────────────────────────────────── */
.cta-banner {
  padding: 56px 0;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% -20%, rgba(255,255,255,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.cta-banner h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.1;
}

.cta-banner p {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .btn-white {
  background: var(--white);
  color: var(--blue-dark);
  font-size: 16px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  transition: background 0.18s, transform 0.15s, box-shadow 0.18s;
}

.cta-banner .btn-white:hover {
  background: var(--blue-lighter);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.cta-phone {
  margin-top: 20px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

.cta-phone a {
  color: var(--white);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  background: #0f2a38;
  color: rgba(255,255,255,0.7);
  padding: 56px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo {
  color: var(--white);
  font-size: 20px;
  display: block;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.5);
  max-width: 240px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: color 0.15s;
}

.footer-col ul a:hover {
  color: var(--white);
}

.footer-col .footer-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.footer-col .footer-phone svg {
  width: 16px;
  height: 16px;
  color: var(--blue);
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 8px;
}

/* ── Enquire Page ───────────────────────────────────────────── */
.enquire-hero {
  padding: calc(var(--nav-height) + 64px) 0 56px;
  background: var(--off-white);
  border-bottom: var(--border);
  text-align: center;
}

.enquire-hero h1 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -1.5px;
  margin-bottom: 14px;
}

.enquire-hero p {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto;
}

.enquire-section {
  padding: 72px 0 96px;
}

.enquire-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}

.enquire-info h2 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.enquire-info p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: var(--border);
}

.contact-item:first-of-type {
  border-top: var(--border);
}

.contact-icon {
  width: 36px;
  height: 36px;
  background: var(--blue-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue-dark);
}

.contact-icon svg {
  width: 18px;
  height: 18px;
}

.contact-item strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 2px;
}

.contact-item a,
.contact-item span {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}

.contact-item a:hover { color: var(--blue); }

/* Form */
.enquire-form-card {
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  box-shadow: var(--shadow-deep);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 7px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  border: 1px solid #d5dde0;
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(61,165,201,0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234a6572' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-submit .btn {
  width: 100%;
  justify-content: center;
  font-size: 16px;
  padding: 14px;
  border-radius: var(--radius-sm);
}

.form-note {
  margin-top: 12px;
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
}

/* Success state */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success.show { display: block; }

.success-icon {
  width: 64px;
  height: 64px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--blue-dark);
}

.success-icon svg { width: 30px; height: 30px; }

.form-success h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 10px;
}

.form-success p {
  color: var(--text-secondary);
  font-size: 15px;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .services-grid    { grid-template-columns: 1fr; }
  .why-us-inner     { grid-template-columns: 1fr; gap: 48px; }
  .why-visual       { display: none; }
  .steps            { grid-template-columns: 1fr; }
  .steps::before    { display: none; }
  .enquire-inner    { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner     { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav-links        { display: none; }
  .nav-phone        { display: none; }
  .nav-right .btn   { display: none; }
  .nav-burger       { display: flex; }
  .hero-visual      { display: none; }
  .stats-inner      { grid-template-columns: 1fr; }
  .stat             { border-right: none; border-bottom: var(--border); }
  .stat:last-child  { border-bottom: none; }
  .services-grid    { grid-template-columns: 1fr; }
  .form-row         { grid-template-columns: 1fr; }
  .footer-inner     { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom    { flex-direction: column; gap: 8px; text-align: center; }
  .enquire-form-card{ padding: 28px 20px; }
  .why-badge-float  { display: none; }
}

@media (max-width: 480px) {
  .hero { padding: calc(var(--nav-height) + 48px) 0 56px; }
  .services, .why-us, .how-it-works, .cta-banner { padding: 64px 0; }
  .section-heading  { letter-spacing: -0.5px; }
}
