/* ── Root variables ── */
:root {
  --rk-orange:       #E85C2A;
  --rk-orange-dark:  #C94A1E;
  --rk-orange-light: #FF7040;
  --rk-navy:         #1B3A6B;
  --rk-navy-dark:    #112548;
  --rk-navy-light:   #2A508F;
  --rk-white:        #FFFFFF;
  --rk-off:          #F7F8FA;
  --rk-border:       #E2E5EB;
  --rk-text:         #1A1A2E;
  --rk-muted:        #6B7280;
}

/* ── Base ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: var(--rk-text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5,h6 { font-family: 'Poppins', sans-serif; }
a { text-decoration: none; }

/* ── Typography helpers ── */
.fw-800 { font-weight: 800 !important; }
.fw-700 { font-weight: 700 !important; }
.fw-600 { font-weight: 600 !important; }
.text-orange { color: var(--rk-orange) !important; }
.text-navy   { color: var(--rk-navy)   !important; }
.bg-navy     { background-color: var(--rk-navy)      !important; }
.bg-navy-dark{ background-color: var(--rk-navy-dark) !important; }
.bg-orange   { background-color: var(--rk-orange)    !important; }

/* ── SECTION TAG pill ── */
.section-tag {
  display: inline-block;
  background: rgba(232,92,42,0.10);
  color: var(--rk-orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}

/* ══════════════════════════
   ① NAVBAR
══════════════════════════ */
.rk-navbar {
  background: var(--rk-navy-dark);
  position: sticky;
  top: 0;
  z-index: 1030;
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
  min-height: 64px;
}
.rk-brand {
  font-size: 18px;
  font-weight: 800;
  color: #fff !important;
  letter-spacing: -0.3px;
}
.rk-brand span { color: var(--rk-orange); }
.rk-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.75);
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}
.rk-trust-item i { font-size: 14px; color: rgba(255,255,255,0.5); }
.btn-nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--rk-orange);
  color: #fff !important;
  font-weight: 700;
  font-size: 14px;
  padding: 9px 20px;
  border-radius: 50px;
  white-space: nowrap;
  transition: background .2s, transform .15s;
}
.btn-nav-phone:hover { background: var(--rk-orange-dark); transform: translateY(-1px); }
.navbar-toggler {
  border: 0;
  padding: 4px 8px;
  color: #fff !important;
}
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler i { color: #fff; font-size: 22px; }

/* ══════════════════════════
   ② HERO
══════════════════════════ */
.rk-hero {
  background: url('https://realkleencarwash.co.uk/wp-content/uploads/2026/06/banner_img.webp');
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  padding: 72px 0 80px;
}
.rk-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,92,42,0.15);
  border: 1px solid rgba(232,92,42,0.4);
  color: #FFA07A;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 18px;
}
.hero-badge .pulse-dot {
  width: 7px; height: 7px;
  background: var(--rk-orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100%{opacity:1;transform:scale(1)}
  50%{opacity:.5;transform:scale(1.5)}
}
.rk-hero h1 {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 18px;
}
.rk-hero h1 em { color: var(--rk-orange); font-style: normal; }
.hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,.80);
  line-height: 1.7;
  margin-bottom: 22px;
}
.hero-check-list { list-style: none; padding: 0; margin: 0 0 24px; }
.hero-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,.90);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 9px;
}
.check-circle {
  width: 20px; height: 20px;
  background: var(--rk-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.check-circle i { font-size: 11px; color: #fff; }
.brand-pill {
  display: inline-block;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.85);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
}

/* ── Form card ── */
.form-card {
  background: rgba(255,255,255,.8);
  border-radius: 16px;
  box-shadow: 0 12px 50px rgba(0,0,0,.22);
  overflow: hidden;
}
.form-card-header {
  background: var(--rk-orange);
  padding: 18px 28px;
  text-align: center;
}
.form-card-header h2 {
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 3px;
}
.form-card-header p {
  color: rgba(255,255,255,.88);
  font-size: 12px;
  margin: 0;
}
.form-card-body { padding: 22px 24px; }
.rk-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--rk-navy);
  margin-bottom: 5px;
  display: block;
}
.rk-input {
  width: 100%;
  padding: 11px 13px;
  border: 1.5px solid #E2E5EB;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: var(--rk-text);
  background: #F9FAFB;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.rk-input:focus {
  border-color: var(--rk-orange);
  box-shadow: 0 0 0 3px rgba(232,92,42,.12);
  background: #fff;
}
select.rk-input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  padding-right: 34px;
}
.rk-textarea { resize: vertical; min-height: 76px; }
.btn-submit-main {
  width: 100%;
  padding: 14px;
  background: var(--rk-orange);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background .2s, transform .15s;
  margin-top: 4px;
}
.btn-submit-main:hover { background: var(--rk-orange-dark); transform: translateY(-2px); }
.btn-submit-main:active { transform: translateY(0); }
.form-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: 10px;
  font-size: 11px;
  color: #9CA3AF;
}
/* Form success */
.form-success {
  display: none;
  padding: 32px 24px;
  text-align: center;
}
.success-icon {
  width: 60px; height: 60px;
  background: #E8F7EE;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.success-icon i { font-size: 28px; color: #1A8A4A; }
.form-success h3 { font-size: 18px; font-weight: 700; color: var(--rk-navy); margin-bottom: 8px; }
.form-success p { font-size: 13px; color: var(--rk-muted); }

/* ══════════════════════════
   ③ TRUST BAR
══════════════════════════ */
.rk-trust-bar {
  background: #F2F4F8;
  border-top: 1px solid #E2E5EB;
  border-bottom: 1px solid #E2E5EB;
  padding: 18px 0;
}
.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 4px 0;
}
.trust-bar-icon {
  width: 42px; height: 42px;
  background: var(--rk-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-bar-icon i { color: #fff; font-size: 18px; }
.trust-bar-text strong { display: block; font-size: 13px; font-weight: 700; color: var(--rk-navy); }
.trust-bar-text span  { font-size: 11px; color: var(--rk-muted); }
.trust-divider { width: 1px; background: #D1D5DB; height: 36px; }

/* ══════════════════════════
   ④ SERVICES
══════════════════════════ */
.rk-services { padding: 80px 0; }
.section-heading { font-size: clamp(26px,3.5vw,36px); font-weight: 800; color: var(--rk-navy); line-height: 1.2; margin-bottom: 10px; }
.section-heading em { color: var(--rk-orange); font-style: normal; }
.section-sub { font-size: 16px; color: var(--rk-muted); }

.service-card {
  background: #fff;
  border: 1.5px solid var(--rk-border);
  border-radius: 14px;
  padding: 0;
  height: 100%;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.service-card img{
	border-radius: 14px 14px 0 0;
	max-height: 235px;
    object-fit: cover;
}
.service-card:hover {
  border-color: var(--rk-orange);
  box-shadow: 0 8px 32px rgba(232,92,42,.12);
  transform: translateY(-4px);
}
.service-icon {
  width: 52px; height: 52px;
  background: rgba(232,92,42,.10);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.service-icon i { font-size: 24px; color: var(--rk-orange); }
.service-card h3 { font-size: 17px; font-weight: 700; color: var(--rk-navy); margin-bottom: 8px; }
.service-card p  { font-size: 13px; color: var(--rk-muted); line-height: 1.65; margin-bottom: 14px; }
.service-feature-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.service-feature-list li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: var(--rk-muted);
}
.service-feature-list li::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--rk-orange);
  border-radius: 50%;
  flex-shrink: 0;
}
/* Dark CTA card */
.service-card-dark {
  background: var(--rk-navy);
  border-color: var(--rk-navy);
}
.service-card-dark:hover {
  border-color: var(--rk-orange);
  box-shadow: 0 8px 32px rgba(27,58,107,.30);
  transform: translateY(-4px);
}
.service-card-dark h3 { color: #fff; }
.service-card-dark p  { color: rgba(255,255,255,.70); }
.service-card-dark .service-feature-list li { color: rgba(255,255,255,.65); }
.service-card-dark .service-icon { background: rgba(232,92,42,.20); }
.btn-package {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--rk-orange);
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  margin-top: 18px;
  transition: background .2s, transform .15s;
}
.btn-package:hover { background: var(--rk-orange-dark); color: #fff; transform: translateY(-1px); }

/* ══════════════════════════
   ⑤ HOW IT WORKS
══════════════════════════ */
.rk-steps { background: #F2F4F8; padding: 80px 0; }
.steps-row { position: relative; }
.step-connector {
  position: absolute;
  top: 34px;
/*   left: calc(12.5% + 34px); */
  left: 0;
  right: calc(12.5% + 34px);
  height: 2px;
  background: #D1D5DB;
  z-index: 0;
}
.step-item { text-align: center; position: relative; z-index: 1; }
.step-circle {
  width: 68px; height: 68px;
  background: #fff;
  border: 3px solid var(--rk-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 22px;
  font-weight: 800;
  color: var(--rk-orange);
}
.step-item h4 { font-size: 15px; font-weight: 700; color: var(--rk-navy); margin-bottom: 6px; }
.step-item p  { font-size: 13px; color: var(--rk-muted); line-height: 1.6; }

/* ══════════════════════════
   ⑥ WHY US
══════════════════════════ */
.rk-why {
  background: var(--rk-navy);
  padding: 80px 0;
}
.why-num-box {
  width: 40px; height: 40px;
  background: var(--rk-orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.why-item-text h4 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.why-item-text p  { font-size: 13px; color: rgba(255,255,255,.65); line-height: 1.6; margin: 0; }

.stat-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
  height: 100%;
}
.stat-card .stat-num {
  font-size: clamp(32px,4vw,48px);
  font-weight: 800;
  color: var(--rk-orange);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-card .stat-lbl { font-size: 13px; color: rgba(255,255,255,.65); font-weight: 500; }

/* ══════════════════════════
   ⑦ TESTIMONIALS
══════════════════════════ */
.rk-testimonials { background: #F7F8FA; padding: 80px 0; }
.testi-card {
  background: #fff;
  border-radius: 14px;
  padding: 26px 24px;
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
  border-left: 4px solid var(--rk-orange);
  height: 100%;
}
.testi-stars { color: #F5A623; font-size: 15px; letter-spacing: 2px; margin-bottom: 12px; }
.testi-card blockquote {
  font-size: 13px;
  color: var(--rk-muted);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}
.testi-author { font-size: 13px; font-weight: 700; color: var(--rk-navy); margin-bottom: 2px; }
.testi-company { font-size: 11px; color: #9CA3AF; }

/* ══════════════════════════
   BRANDS
══════════════════════════ */
.rk-brands {
  background: var(--rk-navy-dark);
  padding: 44px 0;
}
.brand-name {
  font-size: 20px;
  font-weight: 800;
  color: rgba(255,255,255,.22);
  letter-spacing: 0.06em;
  transition: color .2s;
}
.brand-name:hover { color: rgba(255,255,255,.60); }

/* ══════════════════════════
   ⑧ FINAL CTA
══════════════════════════ */
.rk-cta {
  background: linear-gradient(135deg, var(--rk-orange) 0%, var(--rk-orange-dark) 100%);
  padding: 80px 0;
  text-align: center;
}
.rk-cta h2 { font-size: clamp(24px,3.5vw,36px); font-weight: 800; color: #fff; margin-bottom: 12px; }
.rk-cta p  { font-size: 17px; color: rgba(255,255,255,.85); margin-bottom: 36px; }
.cta-phone-input {
  flex: 1;
  padding: 15px 20px;
  border: none;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  outline: none;
  max-width: 340px;
}
.cta-phone-input:focus { box-shadow: 0 0 0 3px rgba(255,255,255,.35); }
.btn-cta-submit {
  padding: 0 28px 15px 28px;
    margin-left: 10px;
  background: var(--rk-navy);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s, transform .15s;
}
.btn-cta-submit:hover { background: var(--rk-navy-dark); transform: translateY(-2px); }
.cta-note { margin-top: 14px; font-size: 13px; color: rgba(255,255,255,.70); }

/* ══════════════════════════
   ⑨ FOOTER
══════════════════════════ */
.rk-footer {
  background: #0D1E3A;
  padding: 36px 0;
}
.rk-footer .brand-lg { font-size: 18px; font-weight: 800; color: #fff; }
.rk-footer .brand-lg span { color: var(--rk-orange); }
.rk-footer p { font-size: 12px; color: rgba(255,255,255,.40); margin-top: 4px; margin-bottom: 0; }
.footer-link { font-size: 12px; color: rgba(255,255,255,.40); transition: color .2s; }
.footer-link:hover { color: var(--rk-orange); }
.footer-copy { font-size: 11px; color: rgba(255,255,255,.28); }

/* ══════════════════════════
   MOBILE STICKY BAR
══════════════════════════ */
.rk-sticky-mobile {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--rk-navy-dark);
  padding: 10px 14px;
  gap: 10px;
  z-index: 1040;
  box-shadow: 0 -4px 20px rgba(0,0,0,.22);
}
.btn-mob-call {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: var(--rk-orange);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 12px;
  border-radius: 8px;
  border: none;
}
.btn-mob-quote {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: rgba(255,255,255,.10);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.20);
}

/* ══════════════════════════
   RESPONSIVE ADJUSTMENTS
══════════════════════════ */
@media (max-width: 991.98px) {
  .rk-hero { padding: 50px 0 60px; }
  .rk-why .col-lg-5 { order: -1; }
  .step-connector { display: none; }
}
@media (max-width: 767.98px) {
	.btn-cta-submit{
		margin-top: 10px;
	}
  .trust-divider { display: none; }
/*   .rk-trust-bar .row > div { border-bottom: 1px solid #E2E5EB; } */
  .rk-trust-bar .row > div:last-child { border-bottom: none; }
}
@media (max-width: 575.98px) {
  .rk-sticky-mobile { display: flex; }
  body { padding-bottom: 74px; }
  .rk-hero { padding: 36px 0 44px; }
  .hero-badge { font-size: 11px; padding: 5px 12px; }
  .form-card-body { padding: 18px 16px; }
  .rk-services, .rk-steps, .rk-testimonials, .rk-cta { padding: 56px 0; }
  .rk-why { padding: 56px 0; }
  .cta-phone-input { max-width: 100%; }
}

/* Scroll animations */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

.thankyou-wrapper{
      width:100%;
      padding:40px 20px;
    }

    .thankyou-card{
      max-width:650px;
      margin:auto;
      background:#fff;
      border-radius:20px;
      padding:50px 40px;
      text-align:center;
      box-shadow:0 10px 40px rgba(0,0,0,0.08);
    }

    .thankyou-icon{
      width:90px;
      height:90px;
      margin:0 auto 25px;
      border-radius:50%;
      background:#198754;
      display:flex;
      align-items:center;
      justify-content:center;
      color:#fff;
      font-size:42px;
    }

    .thankyou-card h1{
      font-size:42px;
      font-weight:700;
      margin-bottom:15px;
      color:#111;
    }

    .thankyou-card p{
      font-size:17px;
      line-height:1.7;
      color:#666;
      margin-bottom:15px;
    }

    .thankyou-btn{
      display:inline-flex;
      align-items:center;
      gap:10px;
      background:#111;
      color:#fff;
      text-decoration:none;
      padding:14px 28px;
      border-radius:10px;
      margin-top:20px;
      transition:0.3s;
      font-weight:600;
    }

    .thankyou-btn:hover{
      background:#198754;
      color:#fff;
    }

    @media(max-width:767px){

      .thankyou-card{
        padding:40px 25px;
      }

      .thankyou-card h1{
        font-size:32px;
      }

      .thankyou-card p{
        font-size:15px;
      }

    }
img.why-realklen-img {
    height: 500px;
    object-fit: cover;
    border-radius: 14px;
}