/*
Theme Name: Carologist
Theme URI: https://carologist.sg
Author: Freemansland Consultancy
Author URI: https://freemansland.sg
Description: Custom WordPress theme for Carologist – Singapore automotive company. Clean light theme with blue and green accents.
Version: 2.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: carologist
Tags: one-page, light, automotive, clean, professional
*/

/* ============================================================
   CSS VARIABLES — LIGHT THEME
   ============================================================ */
:root {
  --bg:         #F7F8FC;
  --bg2:        #FFFFFF;
  --bg3:        #EEF1F8;
  --card:       #FFFFFF;
  --border:     #E2E6F0;
  --accent:     #1A56DB;
  --accent2:    #0E9F6E;
  --amber:      #D97706;
  --text:       #1A1F36;
  --muted:      #5E6A87;
  --light:      #8A95B0;
  --grad1: linear-gradient(135deg, #1A56DB 0%, #0E9F6E 100%);
  --grad2: linear-gradient(135deg, #0E9F6E 0%, #1A56DB 100%);
  --grad-warm: linear-gradient(135deg, #D97706 0%, #1A56DB 100%);
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body:    'Manrope', sans-serif;
  --font-mono:    'DM Mono', monospace;
  --radius: 14px;
  --shadow-sm: 0 2px 8px rgba(26,86,219,0.07);
  --shadow: 0 8px 24px rgba(26,86,219,0.10);
  --shadow-lg: 0 20px 60px rgba(26,86,219,0.14);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; transition: color .2s; }
a:hover { color: #1040AA; }
img { max-width: 100%; display: block; }

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  color: var(--text);
  line-height: 1.18;
  letter-spacing: -0.025em;
}

p { color: var(--muted); font-size: 1.05rem; line-height: 1.75; }

/* ============================================================
   UTILITY
   ============================================================ */
.container { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1.5px solid rgba(26,86,219,.18);
  background: rgba(26,86,219,.06);
  padding: .3rem .85rem;
  border-radius: 100px;
  margin-bottom: 1.1rem;
}
.section-label::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,100%{ opacity:1; transform:scale(1); }
  50%{ opacity:.4; transform:scale(1.7); }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.8rem;
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .92rem;
  cursor: pointer;
  transition: all .25s;
  border: none;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 16px rgba(26,86,219,.25);
}
.btn-primary:hover {
  background: #1040AA;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,86,219,.3);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.glow-text {
  background: var(--grad1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1rem;
}

section { padding: 6rem 0; }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  background: rgba(247,248,252,.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: all .3s;
}
#site-header.scrolled {
  background: rgba(255,255,255,.97);
  border-bottom-color: var(--border);
  box-shadow: 0 2px 14px rgba(26,86,219,.07);
  padding: .7rem 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.02em;
  text-decoration: none;
}

.logo-mark {
  width: 36px; height: 36px;
  background: var(--grad1);
  border-radius: 9px;
  display: grid;
  place-items: center;
  font-size: .88rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.logo-text { color: var(--text); font-weight: 700; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  list-style: none;
}
.nav-links a {
  font-size: .88rem;
  font-weight: 500;
  color: var(--muted);
  transition: color .2s;
}
.nav-links a:hover { color: var(--text); }

.nav-cta { display: flex; align-items: center; gap: .75rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .4rem;
}
.hamburger span {
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
}

/* ============================================================
   MOBILE NAV
   ============================================================ */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,.98);
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.8rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
}
.mobile-nav a:hover { color: var(--accent); }
.mobile-nav-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none; border: none;
  font-size: 1.4rem; color: var(--text); cursor: pointer;
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 5rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(155deg, #EDF2FF 0%, #F7F8FC 55%, #E6F7F1 100%);
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(26,86,219,.1) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(ellipse 75% 75% at 65% 45%, black 20%, transparent 100%);
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  opacity: .18;
  animation: floatBlob 9s ease-in-out infinite;
}
.hero-blob-1 { width: 500px; height: 500px; background: #1A56DB; top: -80px; right: -50px; }
.hero-blob-2 { width: 340px; height: 340px; background: #0E9F6E; bottom: -50px; left: 8%; animation-delay: -5s; }

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

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.4rem;
  animation: fadeUp .7s ease both;
}
.hero-eyebrow::before {
  content: '';
  width: 18px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.7rem);
  font-weight: 800;
  margin-bottom: 1.3rem;
  color: var(--text);
  animation: fadeUp .7s ease .08s both;
}

.hero-desc {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 2.2rem;
  animation: fadeUp .7s ease .16s both;
}

.hero-actions {
  display: flex;
  gap: .85rem;
  flex-wrap: wrap;
  animation: fadeUp .7s ease .24s both;
}

.hero-visual { animation: fadeUp .9s ease .1s both; }

.hero-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(26,86,219,.14);
  border: 1px solid var(--border);
}
.hero-img-wrap img {
  width: 100%; height: 420px;
  object-fit: cover;
}

.hero-float-card {
  position: absolute;
  bottom: -18px; left: -22px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem 1.3rem;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: .85rem;
}
.float-icon {
  width: 40px; height: 40px;
  background: rgba(26,86,219,.08);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1.15rem;
}
.float-num {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}
.float-lbl { font-size: .73rem; color: var(--muted); margin-top: .1rem; }

.hero-visual { position: relative; }

.hero-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  animation: fadeUp .7s ease .3s both;
}
.strip-num {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 800;
  background: var(--grad1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.strip-lbl { font-size: .78rem; color: var(--light); margin-top: .3rem; }

@keyframes fadeUp {
  from { opacity:0; transform:translateY(22px); }
  to   { opacity:1; transform:translateY(0); }
}

/* ============================================================
   ABOUT
   ============================================================ */
#about {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-img {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
}
.about-img img {
  width: 100%; height: 400px;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  bottom: 1.5rem; right: 1.5rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: .85rem 1.1rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: .65rem;
}
.about-badge-icon { font-size: 1.4rem; }
.about-badge-num {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}
.about-badge-lbl { font-size: .7rem; color: var(--muted); }

.about-content p { margin-bottom: .9rem; }

.about-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.5rem;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .8rem;
  font-weight: 500;
  color: var(--accent);
  background: rgba(26,86,219,.06);
  border: 1px solid rgba(26,86,219,.14);
  padding: .28rem .8rem;
  border-radius: 100px;
}

/* ============================================================
   SERVICES / CAPABILITIES
   ============================================================ */
#services { background: var(--bg); }

.services-lead {
  max-width: 600px;
  margin-bottom: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: all .3s;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad1);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s;
}
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
  border-color: rgba(26,86,219,.18);
}

.service-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(26,86,219,.07);
  border: 1px solid rgba(26,86,219,.14);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: .97rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .4rem;
}
.service-card p { font-size: .85rem; line-height: 1.6; }

/* ============================================================
   HOW WE WORK
   ============================================================ */
#how {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.how-img {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.how-img img { width: 100%; height: 400px; object-fit: cover; }

.steps-list {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.step-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}
.step-dot {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--grad1);
  color: #fff;
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: .1rem;
}
.step-body h4 {
  font-size: .97rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .25rem;
}
.step-body p { font-size: .88rem; line-height: 1.6; }

/* ============================================================
   STATS BANNER
   ============================================================ */
#stats {
  background: var(--grad1);
  padding: 4.5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-num-big {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.stat-lbl-light {
  font-size: .8rem;
  color: rgba(255,255,255,.65);
  margin-top: .4rem;
}

/* ============================================================
   WHY CAROLOGIST
   ============================================================ */
#why { background: var(--bg); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.why-img {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.why-img img { width: 100%; height: 420px; object-fit: cover; }

.why-list {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.why-list li {
  display: flex;
  gap: .9rem;
  align-items: flex-start;
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.6;
}
.check-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(14,159,110,.1);
  border: 1.5px solid rgba(14,159,110,.28);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: .65rem;
  color: var(--accent2);
  font-weight: 700;
  margin-top: .15rem;
}

/* ============================================================
   CTA
   ============================================================ */
#cta {
  background: linear-gradient(155deg, #EDF2FF 0%, #E6F7F1 100%);
  border-top: 1px solid var(--border);
}

.cta-inner {
  max-width: 660px;
  margin: 0 auto;
  text-align: center;
}
.cta-inner h2 { margin-bottom: 1rem; }
.cta-inner p { margin-bottom: 2rem; font-size: 1.05rem; }

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-trust {
  display: flex;
  justify-content: center;
  gap: 2.2rem;
  margin-top: 2.8rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .8rem;
  color: var(--muted);
  font-weight: 500;
}
.trust-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent2);
}

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: var(--text);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .9rem;
}

.footer-brand p {
  font-size: .86rem;
  color: rgba(255,255,255,.42);
  max-width: 260px;
  line-height: 1.65;
}

.footer-col h4 {
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 1rem;
  font-family: var(--font-mono);
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul li a {
  font-size: .86rem;
  color: rgba(255,255,255,.5);
  transition: color .2s;
}
.footer-col ul li a:hover { color: #fff; }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: .78rem;
  color: rgba(255,255,255,.28);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-strip { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .how-grid, .about-grid, .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta .btn-outline { display: none; }
  .hamburger { display: flex; }
  section { padding: 4rem 0; }
  .hero-strip { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero-strip { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.1rem; }
  .stats-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   ENQUIRY FORM
   ============================================================ */
.enq-wrap {
  max-width: 780px;
  margin: 3rem auto 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 3rem 3.5rem;
  box-shadow: var(--shadow-lg);
}

.enq-errors {
  background: #fff5f5;
  border: 1px solid #fca5a5;
  border-left: 3px solid #ef4444;
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
}
.enq-errors p {
  margin: 0.25rem 0;
  color: #b91c1c;
  font-size: 0.875rem;
}

.enq-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.enq-field {
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
}
.enq-field label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.enq-req { color: var(--accent); }

.enq-field input,
.enq-field select,
.enq-field textarea {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  box-sizing: border-box;
  -webkit-appearance: none;
}
.enq-field input:focus,
.enq-field select:focus,
.enq-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(26,86,219,0.1);
}
.enq-field textarea {
  min-height: 130px;
  resize: vertical;
}

.enq-footer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 0.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.enq-btn { white-space: nowrap; }
.enq-trust { margin: 0; }

.enq-success {
  text-align: center;
  padding: 3rem 1rem;
}
.enq-success-icon { font-size: 3rem; margin-bottom: 1rem; }
.enq-success h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 0.75rem;
}
.enq-success p {
  color: var(--muted);
  font-size: 0.9375rem;
  margin: 0;
}

@media (max-width: 768px) {
  .enq-wrap { padding: 2rem 1.5rem; }
  .enq-row  { grid-template-columns: 1fr; gap: 0; }
  .enq-footer { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   ENQUIRY FORM
   ============================================================ */
.cta-top {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}
.cta-top p {
  color: var(--muted);
}

.enq-card {
  max-width: 780px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 3rem 3.5rem;
  box-shadow: var(--shadow-lg);
}

.enq-errors {
  background: #fff5f5;
  border: 1px solid #fca5a5;
  border-left: 3px solid #ef4444;
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
}
.enq-errors p {
  margin: 0.25rem 0;
  color: #b91c1c;
  font-size: 0.875rem;
}

.enq-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.enq-field {
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
}
.enq-field label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.enq-req { color: var(--accent); }

.enq-field input,
.enq-field select,
.enq-field textarea {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}
.enq-field input:focus,
.enq-field select:focus,
.enq-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(26,86,219,0.1);
}
.enq-field textarea {
  min-height: 130px;
  resize: vertical;
}

.enq-footer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 0.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.enq-btn { white-space: nowrap; }

.enq-success {
  text-align: center;
  padding: 3rem 1rem;
}
.enq-success-icon { font-size: 3rem; margin-bottom: 1rem; }
.enq-success h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 0.75rem;
}
.enq-success p {
  color: var(--muted);
  font-size: 0.9375rem;
  margin: 0;
}

@media (max-width: 768px) {
  .enq-card  { padding: 2rem 1.5rem; }
  .enq-row   { grid-template-columns: 1fr; gap: 0; }
  .enq-footer { flex-direction: column; align-items: flex-start; }
}
