/* ===== ARUNWIN — Navy & Orange Theme ===== */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Navy + Orange palette */
  --espresso: #0F2942;
  --brown: #0A1F33;
  --warm-dark: #071827;
  --clay: #2D5289;
  --terracotta: #FF6B35;
  --amber: #FF8C5A;
  --sand: #EEF2F7;
  --cream: #F8FAFC;
  --warm-white: #FFFFFF;
  --white: #FFFFFF;

  /* Neutrals */
  --text-primary: #334155;
  --text-secondary: #64748B;
  --text-tertiary: #94A3B8;
  --border: #E2E8F0;
  --border-light: #F1F5F9;

  /* Radius */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 100px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(26, 54, 93, 0.06), 0 1px 2px rgba(26, 54, 93, 0.08);
  --shadow-md: 0 4px 16px rgba(26, 54, 93, 0.08), 0 2px 6px rgba(26, 54, 93, 0.05);
  --shadow-lg: 0 12px 40px rgba(26, 54, 93, 0.1), 0 4px 12px rgba(26, 54, 93, 0.06);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  color: var(--text-primary);
  background: var(--cream);
  line-height: 1.6;
  font-size: 15px;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===== HEADER ===== */
.header {
  background: var(--white);
  backdrop-filter: blur(20px);
  padding: 0 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.brand {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--espresso);
  letter-spacing: 1.5px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 0.5rem;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--text-secondary);
  padding: 0.5rem 1.1rem;
  border-radius: var(--r-pill);
  transition: all 0.25s ease;
}

.nav-links a:hover {
  color: var(--espresso);
  background: var(--sand);
}

.nav-links a.active {
  color: var(--white);
  background: var(--terracotta);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle:hover {
  background: var(--sand);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--espresso);
  border-radius: 2px;
}

/* ===== HERO ===== */
.hero {
  background: var(--espresso);
  color: var(--white);
  text-align: center;
  padding: 5.5rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}

/* Fabric weave texture overlay */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.015) 0px,
      rgba(255, 255, 255, 0.015) 1px,
      transparent 1px,
      transparent 12px
    ),
    repeating-linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0.015) 0px,
      rgba(255, 255, 255, 0.015) 1px,
      transparent 1px,
      transparent 12px
    );
  pointer-events: none;
  z-index: 1;
}

/* Warm radial glow */
.hero::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 200%;
  background: radial-gradient(ellipse at center top, rgba(255, 107, 53, 0.15) 0%, transparent 55%);
  pointer-events: none;
  animation: hero-glow 6s ease-in-out infinite alternate;
}

@keyframes hero-glow {
  0% { opacity: 0.7; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.05); }
}

/* Shimmer sweep across hero */
.hero-shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255, 255, 255, 0.03) 45%,
    rgba(255, 255, 255, 0.06) 50%,
    rgba(255, 255, 255, 0.03) 55%,
    transparent 70%
  );
  animation: shimmer-sweep 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}

@keyframes shimmer-sweep {
  0% { left: -100%; }
  50% { left: 200%; }
  100% { left: 200%; }
}

.hero-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(255, 107, 53, 0.12);
  padding: 0.45rem 1.2rem;
  border-radius: var(--r-pill);
  margin-bottom: 1.8rem;
  position: relative;
  z-index: 3;
  animation: hero-fade-in 0.8s ease-out;
}

.hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 3;
  animation: hero-fade-in 0.8s ease-out 0.15s both;
}

.hero p {
  font-size: 1.05rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.8;
  position: relative;
  z-index: 3;
  animation: hero-fade-in 0.8s ease-out 0.3s both;
}

@keyframes hero-fade-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

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

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
  z-index: 999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  animation: wa-bounce-in 0.6s ease-out 1s both;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

.whatsapp-float .wa-tooltip {
  position: absolute;
  right: 68px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--espresso);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: var(--r-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
  box-shadow: var(--shadow-md);
}

.whatsapp-float:hover .wa-tooltip {
  opacity: 1;
}

.whatsapp-float .wa-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.3);
  animation: wa-pulse 2s ease-out infinite;
  pointer-events: none;
}

@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.8); opacity: 0; }
}

@keyframes wa-bounce-in {
  0% { transform: scale(0) rotate(-45deg); opacity: 0; }
  60% { transform: scale(1.15) rotate(0deg); }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

/* ===== SECTIONS ===== */
.section {
  padding: 5rem 2rem;
}

.section--compact {
  padding: 3rem 2rem;
}

.section-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.section-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--terracotta);
  background: rgba(255, 107, 53, 0.08);
  padding: 0.4rem 1rem;
  border-radius: var(--r-pill);
  margin-bottom: 1rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--espresso);
  margin-bottom: 0.6rem;
}

.section-desc {
  font-size: 0.98rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== ABOUT ===== */
.about-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 3rem;
  box-shadow: var(--shadow-sm);
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  border: 1px solid var(--border-light);
}

.about-card p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.9;
}

.about-card strong {
  color: var(--espresso);
  font-weight: 700;
}

/* ===== WHY CHOOSE US ===== */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.reason-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 2rem 1.6rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.reason-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.reason-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.2rem;
  color: var(--terracotta);
}

.reason-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--espresso);
  margin-bottom: 0.5rem;
}

.reason-card p {
  font-size: 0.87rem;
  color: var(--text-tertiary);
  line-height: 1.65;
}

/* ===== CTA ===== */
.cta-section {
  background: var(--espresso);
  text-align: center;
  padding: 4rem 2rem;
  border-radius: var(--r-xl);
  max-width: 1000px;
  margin: 0 auto 4rem;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  display: none;
}

.cta-section h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.5rem;
  position: relative;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1.8rem;
  font-size: 0.95rem;
  position: relative;
}

.btn-pill {
  display: inline-block;
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.8rem 2rem;
  border-radius: var(--r-pill);
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-pill--light {
  background: var(--white);
  color: var(--espresso);
}

.btn-pill--light:hover {
  background: var(--sand);
}

.btn-pill--dark {
  background: var(--espresso);
  color: var(--white);
}

.btn-pill--dark:hover {
  background: var(--brown);
}

.btn-pill--outline {
  background: transparent;
  color: var(--espresso);
  border: 1.5px solid var(--border);
}

.btn-pill--outline:hover {
  border-color: var(--espresso);
}

.btn-pill--outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn-pill--outline-light:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

/* ===== CTA (Redesigned) ===== */
.cta-highlight {
  font-size: 1.6rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2rem;
  position: relative;
  line-height: 1.8;
}

.cta-link {
  font-weight: 800;
  color: var(--white) !important;
  text-decoration: none;
  position: relative;
  transition: color 0.2s;
}

.cta-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--amber);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.cta-link:hover::after {
  transform: scaleX(1);
}

.cta-divider {
  display: inline-block;
  margin: 0 0.6rem;
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.3);
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--espresso);
  color: rgba(255, 255, 255, 0.6);
  padding: 3.5rem 2rem 0;
}

.footer-brand-row {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto 2.5rem;
}

.footer-brand {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 3px;
  margin-bottom: 1.2rem;
}

.footer-brand-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--terracotta), transparent);
  margin: 0 auto;
  border-radius: 2px;
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.footer-col {
  /* individual column styling */
}

.footer h4 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 1.2rem;
}

.footer p {
  font-size: 0.95rem;
  line-height: 1.8;
}

.footer a {
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s;
}

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

.footer-contact-item {
  margin-bottom: 0.8rem;
}

.footer-contact-item .lbl {
  display: block;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 0.15rem;
}

.footer-contact-item .val {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
}

.footer-bottom {
  margin: 2.5rem -2rem 0;
  padding: 1.2rem 2rem;
  background: var(--white);
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.footer-map {
  position: relative;
  margin-top: 0.5rem;
  border-radius: 12px;
  overflow: hidden;
}

.footer-map a {
  display: block;
  position: relative;
}

.map-overlay-label {
  display: block;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.5rem;
  transition: color 0.2s;
}

.footer-map a:hover .map-overlay-label {
  color: var(--white);
}

/* ===== CATALOG ===== */
.material-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.material-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 2rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.material-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.material-card.expanded {
  grid-column: 1 / -1;
  box-shadow: var(--shadow-lg);
  transform: none;
}

.material-card:not(.expanded) {
  cursor: pointer;
}

.material-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--terracotta);
  background: rgba(196, 99, 42, 0.08);
  padding: 0.3rem 0.8rem;
  border-radius: var(--r-pill);
  margin-bottom: 0.8rem;
}

.material-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--espresso);
  margin-bottom: 0.4rem;
}

.material-card p {
  font-size: 0.88rem;
  color: var(--text-tertiary);
  line-height: 1.65;
}

.material-card .expand-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--terracotta);
  padding: 0.4rem 1rem;
  background: rgba(196, 99, 42, 0.06);
  border-radius: var(--r-pill);
}

/* Colour chart */
.colour-chart {
  display: none;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}

.colour-chart.open {
  display: block;
}

.colour-chart h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 1rem;
}

.colour-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.swatch {
  width: 38px;
  height: 38px;
  border-radius: var(--r-sm);
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  position: relative;
}

.swatch:hover {
  transform: scale(1.2);
  border-color: var(--espresso);
  box-shadow: var(--shadow-md);
}

.swatch[title]::after {
  content: attr(title);
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font);
  font-size: 0.6rem;
  font-weight: 600;
  white-space: nowrap;
  color: var(--text-tertiary);
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}

.swatch:hover::after {
  opacity: 1;
}

/* ===== ENQUIRY ===== */
.enquiry-form-wrap {
  max-width: 620px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 1.3rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font);
  font-size: 0.92rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  background: var(--warm-white);
  color: var(--text-primary);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

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

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--espresso);
  color: var(--white);
  padding: 0.85rem 1.8rem;
  border: none;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: background 0.25s;
}

.btn-primary:hover {
  background: var(--brown);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 600;
  background: transparent;
  color: var(--espresso);
  padding: 0.8rem 1.6rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: border-color 0.25s;
}

.btn-secondary:hover {
  border-color: var(--espresso);
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 0.5rem;
}

.pre-filled-info {
  background: rgba(255, 107, 53, 0.06);
  border: 1px solid rgba(255, 107, 53, 0.15);
  border-radius: var(--r-md);
  padding: 1rem 1.2rem;
  margin-bottom: 1.5rem;
  font-size: 0.88rem;
  color: var(--espresso);
}

.pre-filled-info strong {
  color: var(--terracotta);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .header {
    padding: 0 1.2rem;
  }

  .header-inner {
    height: 60px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 1rem;
    gap: 0.5rem;
    box-shadow: var(--shadow-md);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 0.7rem 1rem;
    border-radius: var(--r-sm);
    font-size: 0.92rem;
  }

  .nav-links a.active {
    color: var(--white);
    background: var(--terracotta);
    border-radius: var(--r-pill);
    padding: 0.55rem 1.2rem;
    width: fit-content;
  }

  .hero {
    padding: 3.5rem 1.5rem 3rem;
  }

  .hero h1 {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .hero-badge {
    font-size: 0.65rem;
    padding: 0.4rem 1rem;
  }

  .whatsapp-float {
    bottom: 18px;
    right: 18px;
    width: 52px;
    height: 52px;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }

  .whatsapp-float .wa-tooltip {
    display: none;
  }

  .section--compact {
    padding: 2rem 1.2rem;
  }

  .section {
    padding: 3rem 1.2rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .section-badge {
    font-size: 0.65rem;
  }

  .reasons-grid {
    grid-template-columns: 1fr;
  }

  .material-grid {
    grid-template-columns: 1fr;
  }

  .cta-section {
    border-radius: var(--r-lg);
    margin: 0 1rem 3rem;
    padding: 2.5rem 1.5rem;
  }

  .cta-highlight {
    font-size: 1.1rem;
    line-height: 1.7;
  }

  .cta-actions {
    flex-direction: column;
  }

  .btn-pill {
    width: 100%;
    text-align: center;
    padding: 0.9rem 2rem;
  }

  .footer {
    padding: 2.5rem 1.5rem 0;
  }

  .footer-brand-row {
    margin-bottom: 1.8rem;
  }

  .footer-brand {
    font-size: 1.5rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    margin: 2rem -1.5rem 0;
    padding: 1rem 1.5rem;
  }

  .footer-map iframe {
    height: 160px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .enquiry-form-wrap {
    padding: 1.8rem 1.3rem;
    border-radius: var(--r-lg);
  }

  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-secondary {
    justify-content: center;
    padding: 0.9rem 1.8rem;
  }

  .swatch {
    width: 42px;
    height: 42px;
  }

  .about-card {
    padding: 1.5rem !important;
  }
}
