:root {
  --navy: #102133;
  --navy-2: #18324d;
  --ink: #1e2933;
  --muted: #5b6773;
  --cream: #fbf7ef;
  --cream-2: #f3eadc;
  --white: #ffffff;
  --copper: #b86f3c;
  --copper-dark: #98572d;
  --green: #25d366;
  --green-dark: #128c43;
  --line: #e8dfd1;
  --shadow: 0 18px 48px rgba(16, 33, 51, 0.14);
  --shadow-soft: 0 10px 30px rgba(16, 33, 51, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(184, 111, 60, 0.10), transparent 34rem),
    var(--cream);
  line-height: 1.6;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  background: rgba(16, 33, 51, 0.98);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}

.logo {
  font-weight: 900;
  letter-spacing: 0.01em;
  text-decoration: none;
  font-size: 1.18rem;
  white-space: nowrap;
}

.logo span {
  color: #f1c7a6;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav a {
  text-decoration: none;
  opacity: 0.92;
  transition: color 0.18s ease, opacity 0.18s ease;
}

.nav a:hover {
  opacity: 1;
  color: #f1c7a6;
}

.phone,
.whatsapp-header {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

.phone {
  background: linear-gradient(135deg, var(--copper), var(--copper-dark));
  color: #fff;
}

.whatsapp-header {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #062f16;
}

.quick-contact-band {
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(16, 33, 51, 0.05);
}

.quick-contact-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 14px 0;
}

.quick-contact-inner a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--cream);
  border: 1px solid var(--line);
  color: var(--navy);
  font-weight: 850;
  text-decoration: none;
}

.quick-contact-inner a[href*="wa.me"] {
  background: rgba(37, 211, 102, 0.14);
  border-color: rgba(18, 140, 67, 0.22);
  color: #0b5f2e;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(16, 33, 51, 0.96), rgba(24, 50, 77, 0.96)),
    radial-gradient(circle at 82% 20%, rgba(184, 111, 60, 0.36), transparent 28rem);
  color: #fff;
  padding: 88px 0;
}

.hero::after {
  content: "";
  position: absolute;
  right: -110px;
  bottom: -150px;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background: rgba(184, 111, 60, 0.20);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 38px;
  align-items: center;
}

.eyebrow {
  color: #f1c7a6;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  font-size: 0.82rem;
  margin: 0 0 12px;
}

h1 {
  font-size: clamp(2.35rem, 5vw, 4.55rem);
  line-height: 1.03;
  margin: 0 0 20px;
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.15;
  margin: 0 0 18px;
  color: var(--navy);
  letter-spacing: -0.025em;
}

h3 {
  color: var(--navy);
  margin: 0 0 10px;
}

.lead {
  font-size: 1.19rem;
  max-width: 730px;
  opacity: 0.94;
}

.cta-row,
.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 28px;
}

.contact-buttons {
  margin: 30px 0 36px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 54px;
  padding: 15px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  border: 2px solid transparent;
  box-shadow: 0 12px 26px rgba(16, 33, 51, 0.16);
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(16, 33, 51, 0.22);
}

.btn-primary {
  background: linear-gradient(135deg, var(--copper), var(--copper-dark));
  color: #fff;
}

.btn-whatsapp {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #062f16;
}

.btn-email {
  background: #fff;
  color: var(--navy);
  border-color: rgba(16, 33, 51, 0.18);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.8);
  color: #fff;
  box-shadow: none;
}

.contact-buttons .btn {
  min-width: 215px;
  font-size: 1.02rem;
}

.card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(232, 223, 209, 0.9);
  border-radius: 24px;
  padding: 26px;
  box-shadow: var(--shadow-soft);
}

.hero .card {
  color: var(--ink);
  box-shadow: var(--shadow);
}

.section {
  padding: 68px 0;
}

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

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

.service-card {
  text-decoration: none;
  display: block;
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(184, 111, 60, 0.28);
}

.service-card p,
.small {
  color: var(--muted);
}

.service-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.service-list li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 6px 16px rgba(16, 33, 51, 0.05);
}

.band {
  background: linear-gradient(180deg, #fff, #fffaf3);
  border-block: 1px solid var(--line);
}

.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 20px;
  margin-bottom: 12px;
  box-shadow: 0 8px 22px rgba(16, 33, 51, 0.06);
}

.faq summary {
  cursor: pointer;
  font-weight: 900;
  color: var(--navy);
}

.contact-info-grid {
  margin-top: 24px;
}

.notice,
.edit-note {
  background: #fff8ec;
  border: 1px dashed var(--copper);
  padding: 14px 16px;
  border-radius: 16px;
  margin: 14px 0;
}

.footer {
  background: var(--navy);
  color: #d9e2ec;
  padding: 46px 0 78px;
}

.footer a {
  color: #fff;
}

.footer h3,
.footer h3[style] {
  color: #fff !important;
}

.mobile-contact-bar {
  display: none;
}

@media (max-width: 920px) {
  .hero-grid,
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .header-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .nav {
    gap: 12px;
  }

  .phone,
  .whatsapp-header {
    width: 100%;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 78px;
  }

  .hero {
    padding: 62px 0;
  }

  .section {
    padding: 48px 0;
  }

  .contact-buttons,
  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-buttons .btn,
  .cta-row .btn {
    width: 100%;
  }

  .quick-contact-inner {
    display: none;
  }

  .mobile-contact-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.95);
    border-top: 1px solid var(--line);
    box-shadow: 0 -10px 26px rgba(16, 33, 51, 0.16);
    backdrop-filter: blur(10px);
  }

  .mobile-contact-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    border-radius: 999px;
    font-weight: 900;
    text-decoration: none;
  }

  .mobile-call {
    background: linear-gradient(135deg, var(--copper), var(--copper-dark));
    color: #fff;
  }

  .mobile-whatsapp {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: #062f16;
  }
}


/* Branded van image section */
.brand-van-section {
  padding: 34px 0 12px;
  background: linear-gradient(180deg, #ffffff 0%, #f4efe7 100%);
}

.brand-van-card {
  overflow: hidden;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 22px 60px rgba(16, 33, 51, 0.14);
}

.brand-van-card img {
  display: block;
  width: 100%;
  height: auto;
}

.brand-van-caption {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  color: var(--muted);
  font-size: 0.95rem;
}

.brand-van-caption strong {
  color: var(--navy);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
}

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

.logo-text span {
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  color: var(--copper);
  margin-top: 4px;
}

@media (max-width: 720px) {
  .brand-van-section {
    padding: 22px 0 8px;
  }

  .brand-van-card {
    border-radius: 20px;
  }

  .brand-van-caption {
    display: block;
    padding: 14px 16px;
  }
}


/* Call + WhatsApp button alignment */
.header-inner .phone,
.header-inner .whatsapp-header {
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.cta-row .btn,
.contact-buttons .btn {
  min-height: 54px;
  padding: 15px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 920px) {
  .header-inner .phone,
  .header-inner .whatsapp-header {
    width: 100%;
  }
}


/* tighter spacing for top call/whatsapp buttons */
.button-row{
  gap:6px !important;
}

.site-header .button-row{
  gap:4px !important;
}

.site-header .btn,
.site-header .btn-whatsapp{
  padding-left:14px;
  padding-right:14px;
}


/* make top call + whatsapp buttons sit tightly together */
.site-header .button-row{
  display:flex !important;
  gap:2px !important;
  align-items:center;
}

.site-header .btn,
.site-header .btn-whatsapp{
  margin:0 !important;
}
