  :root {
      --bg: #0b0a08;
      --bg-alt: #131110;
      --bg-card: #181613;
      --ink: #f5f1e6;
      --muted: #a79d8b;
      --muted-2: #7d7466;
      --gold: #d9ab30;
      --gold-dark: #b58a20;
      --green: #27c95c;
      --line: #2a2720;
      --radius: 3px;
      --sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
      --serif: 'Iowan Old Style', 'Palatino Linotype', Georgia, serif;
  }

  * {
      box-sizing: border-box;
  }

  html {
      scroll-behavior: smooth;
  }

  body {
      margin: 0;
      background: var(--bg);
      color: var(--ink);
      font-family: var(--sans);
      line-height: 1.55;
  }

  a {
      color: inherit;
      text-decoration: none;
  }

  ul {
      margin: 0;
      padding: 0;
      list-style: none;
  }

  img {
      max-width: 100%;
      display: block;
  }

  .wrap {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 32px;
  }

  h1,
  h2,
  h3 {
      font-family: var(--sans);
      font-weight: 800;
      margin: 0;
      letter-spacing: -.01em;
  }

  .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 13px 24px;
      font-size: 15px;
      font-weight: 700;
      letter-spacing: .02em;
      border-radius: var(--radius);
      border: 1px solid transparent;
      cursor: pointer;
      transition: opacity .2s ease, background .2s ease;
  }

  .btn-gold {
      background: var(--gold);
      color: #1a1204;
  }

  .btn-gold:hover {
      background: var(--gold-dark);
  }

  .btn-green {
      background: var(--green);
      color: #062712;
  }

  .btn-green:hover {
      opacity: .88;
  }

  .btn-outline {
      border-color: var(--line);
      color: var(--ink);
      background: transparent;
  }

  .btn-outline:hover {
      border-color: var(--gold);
      color: var(--gold);
  }

  .btn-sm {
      padding: 9px 16px;
      font-size: 12px;
  }

  .btn-block {
      width: 100%;
  }

  .eyebrow {
      display: inline-block;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .12em;
      color: var(--gold);
      background: rgba(217, 171, 48, .1);
      border: 1px solid rgba(217, 171, 48, .35);
      padding: 6px 14px;
      border-radius: 20px;
      margin-bottom: 18px;
  }

  section {
      padding: 88px 0;
  }

  .sec-head {
      text-align: center;
      max-width: 640px;
      margin: 0 auto 46px;
  }

  .sec-head h2 {
      font-size: 30px;
      line-height: 1.25;
  }

  .sec-head h2 .gold {
      color: var(--gold);
  }

  .sec-head p {
      color: var(--muted);
      font-size: 14.5px;
      margin-top: 14px;
  }

  /* Top bar */
  .topbar {
      background: #000;
      font-size: 11.5px;
      color: var(--muted);
  }

  .topbar .wrap {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 8px 32px;
      flex-wrap: wrap;
      gap: 6px;
  }

  .topbar-left {
      display: flex;
      align-items: center;
      gap: 6px;
      color: var(--gold);
  }

  .topbar-left .dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--gold);
  }

  .topbar-right {
      display: flex;
      gap: 18px;
      flex-wrap: wrap;
  }

  .topbar-right span {
      display: inline-flex;
      align-items: center;
      gap: 5px;
  }
/* =========================
   HEADER
========================= */

.site-header {
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 1050;

    /* Animation */
    animation: headerDrop 0.7s ease forwards;
}

@keyframes headerDrop {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================
   NAV
========================= */

.nav {
    min-height: 105px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;
}


/* =========================
   LOGO
========================= */

.logo {
    display: flex;
    align-items: center;

    text-decoration: none;

    flex-shrink: 0;
}

.logo-badge {
    width: 150px;
    height: 91px;
    background-color: bisque;
    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 6px;
    overflow: hidden;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.logo-badge img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    display: block;
}


/* Logo hover */

.logo:hover .logo-badge {
    transform: scale(1.04);
}


/* =========================
   NAV LINKS
========================= */


.nav-links {
    display: flex;
    align-items: center;

    gap: 26px;

    font-size: 17px;
    font-weight: 600;

    color: var(--ink);
}

.nav-links a {
    position: relative;

    display: flex;
    align-items: center;
    gap: 5px;

    color: var(--ink);
    text-decoration: none;

    opacity: 0.85;

    transition:
        color 0.25s ease,
        opacity 0.25s ease,
        transform 0.25s ease;
}

/* Underline animation */

.nav-links a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -7px;

    width: 0;
    height: 2px;

    background: white;

    transition: width 0.3s ease;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--gold);

    transform: translateY(-2px);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-ico {
    font-size: 14px;
    width: 18px;
    text-align: center;
    transition: transform 0.3s ease;
}

.nav-links a:hover .nav-ico {
    transform: scale(1.15);
}

.dropdown-menu.show {
    display: block;
    background-color: black;
    border: 1px white solid;
}

.nav-links a{
    color: white !important;
}
.dropdown-item:focus, .dropdown-item:hover{
    background-color: transparent;
}
/* =========================
   GOLD BUTTON
========================= */

.btn-gold {
    background: var(--gold);
    color: #fff;

    border: none;

    padding: 12px 20px;

    border-radius: 6px;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    white-space: nowrap;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.btn-gold:hover {
    color: #fff;

    transform: translateY(-3px);

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}


/* =========================
   BURGER
========================= */

.burger {
    display: none;

    width: 44px;
    height: 44px;

    padding: 0;

    background: transparent;
    border: 0;

    cursor: pointer;

    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 5px;
}

.burger span {
    width: 25px;
    height: 2px;

    background: var(--ink);

    border-radius: 5px;

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}


/* Burger → X */

.burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* Mobile call hidden on desktop */

.mobile-call {
    display: none !important;
}



  /* Hero */
.hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;

    background:
        linear-gradient(
            to right,
            rgba(0, 0, 0, 0.95) 0%,
            rgba(0, 0, 0, 0.80) 30%,
            rgba(0, 0, 0, 0.35) 55%,
            rgba(0, 0, 0, 0) 75%
        ),
        url("../images/homeImages/hero.png") center center / cover no-repeat;
}
.hero-inner {
    padding: 56px 96px 44px;
    /* max-width: 560px; */
}

  .hero h1 {
      font-size: 44px;
      line-height: 1.08;
      color: #fff;
  }

  .hero h1 .gold {
      color: var(--gold);
  }

  .hero p {
      color: var(--muted);
      font-size: 14.5px;
      max-width: 440px;
      margin: 18px 0 26px;
  }

  .hero-ctas {
      display: flex;
      gap: 12px;
      margin-bottom: 26px;
      flex-wrap: wrap;
  }

  .hero-checks {
      display: flex;
      gap: 22px;
      flex-wrap: wrap;
      font-size: 12.5px;
      color: var(--muted);
  }

  .hero-checks span {
      display: flex;
      align-items: center;
      gap: 6px;
  }

  .hero-checks b {
      color: var(--gold);
  }

  /* Stat strip */
 

.stat-strip {
    width: 100%;
    background: linear-gradient(
        90deg,
        var(--gold),
        #c99a28
    );
}

.stat-strip .wrap {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    padding:40px 32px;
}

.stat-item {
    min-width: 0;

    display: flex;
    align-items: center;

    gap: 12px;

    padding: 0 18px;

    color: #1a1204;

    border-right: 1px solid rgba(0, 0, 0, 0.15);
}

.stat-item:last-child {
    border-right: none;
}
 

.stat-icon {
    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 25px;

    color: #1a1204;


    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.stat-item:hover .stat-icon {
    transform: translateY(-4px) scale(1.08);
    background: rgba(255, 255, 255, 0.15);
}

 

.stat-item > div {
    min-width: 0;
}

.stat-item b {
    display: block;

    font-size: 19px;
    line-height: 1.3;

    white-space: nowrap;
}

.stat-item > div > span {
    display: block;

    margin-top: 3px;

    font-size: 13px;
    line-height: 1.4;

    opacity: 0.75;
}


  /* Services */
  .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
  }

  .service-card {
      background: var(--bg-card);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      overflow: hidden;
      display: flex;
      flex-direction: column;
  }

  .service-photo {
      aspect-ratio: 4/3;
      position: relative;
      background: linear-gradient(135deg, #3a352a, #161410);
  }

  .service-num {
      position: absolute;
      top: 10px;
      left: 10px;
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background: var(--gold);
      color: #1a1204;
      font-size: 12px;
      font-weight: 800;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .service-body {
      padding: 20px 20px 22px;
      flex: 1;
      display: flex;
      flex-direction: column;
  }

  .service-body h3 {
      font-size: 15.5px;
      margin-bottom: 8px;
      letter-spacing: .01em;
  }

  .service-body p {
      font-size: 13px;
      color: var(--muted);
      margin: 0 0 16px;
      flex: 1;
  }

  .service-ctas {
      display: flex;
      gap: 8px;
      margin-bottom: 12px;
  }

  .service-ctas .btn {
      flex: 1;
      padding: 10px 12px;
      font-size: 12px;
  }

  .service-more {
      font-size: 12px;
      color: var(--gold);
      font-weight: 700;
  }

  .service-more:hover {
      text-decoration: underline;
  }
.service-photo {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.service-photo img {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;
    object-position: center;
}
  /* How it works */
  .steps-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
  }

  .step-card {
      background: var(--bg-card);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 26px 22px;
  }

  .step-num {
      font-family: var(--serif);
      font-size: 26px;
      color: var(--gold);
      opacity: .55;
      margin-bottom: 14px;
  }

  .step-icon {
      font-size: 20px;
      margin-bottom: 10px;
  }

  .step-card h3 {
      font-size: 14.5px;
      margin-bottom: 8px;
  }

  .step-card p {
      font-size: 12.5px;
      color: var(--muted);
      margin: 0;
  }

  /* Why us split */
  .why {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 60px;
      align-items: center;
  }

  .why-photo {
      position: relative;
      aspect-ratio: 4/4;
      border-radius: var(--radius);
      background:url("/assets/images/homeImages/emergencyTyerFixing.png");
  }

  .why-badge {
      position: absolute;
      right: 16px;
      bottom: 16px;
      background: var(--gold);
      color: #1a1204;
      border-radius: var(--radius);
      padding: 10px 14px;
      text-align: center;
      font-size: 11px;
      font-weight: 800;
  }

  .why-badge b {
      display: block;
      font-size: 15px;
  }

  .why-copy ul {
      margin: 22px 0 30px;
  }

  .why-copy li {
      display: flex;
      gap: 12px;
      padding: 12px 0;
      border-top: 1px solid var(--line);
      font-size: 14px;
      color: var(--muted);
  }

  .why-copy li b {
      color: var(--ink);
  }

  .why-copy li::before {
      content: "✓";
      color: var(--gold);
      font-weight: 800;
      flex: 0 0 auto;
  }

  .why-ctas {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
  }

  /* Areas */
  .areas-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
  }

  .area-card {
      background: var(--bg-card);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      overflow: hidden;
  }

  .area-photo {
      aspect-ratio: 16/10;
      background: linear-gradient(135deg, #312d24, #141210);
  }

  .area-body {
      padding: 20px 22px 22px;
  }

  .area-body h3 {
      font-size: 16px;
      margin-bottom: 8px;
  }

  .area-addr {
      font-size: 12.5px;
      color: var(--muted);
      margin-bottom: 14px;
  }

  .area-link {
      font-size: 12px;
      font-weight: 700;
      color: var(--gold);
  }

  .area-link:hover {
      text-decoration: underline;
  }


  /* =========================
   OXFORDSHIRE AREAS
========================= */

.areas-section {
  background: #050505;
  padding: 75px 20px;
  color: #fff;
}

.areas-container {
  max-width: 1200px;
  margin: 0 auto;
}


/* HEADING */

.areas-heading {
  margin-bottom: 35px;
}

.areas-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  color: #000;
  border-radius: 30px;
  padding: 6px 13px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.areas-label i {
  color: #d4af37;
}

.areas-heading h2 {
  font-size: 34px;
  line-height: 1.15;
  margin: 0 0 10px;
  font-weight: 800;
  color: #fff;
}

.areas-heading h2 em {
  color: #d4af37;
  font-style: normal;
}

.areas-heading p {
  max-width: 650px;
  margin: 0;
  color: #bdbdbd;
  font-size: 14px;
  line-height: 1.7;
}


/* GRID */

.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}


/* CARD */

.area-card {
  /* background: #fff; */
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  padding: 17px;
  color: #111;
  transition: 0.3s ease;
}

.area-card:hover {
  transform: translateY(-4px);
  border-color: #d4af37;
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.12);
}


/* TITLE */

.area-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.area-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 9px;
  /* background: #f5f5f5; */
  display: flex;
  align-items: center;
  justify-content: center;
}

.area-icon i {
  color: #d4af37;
  font-size: 14px;
}

.area-title h3 {
  font-size: 14px;
  margin: 0;
  font-weight: 800;
  color: #faf6f6;
  text-transform: none;
}

.area-title small {
  display: block;
  font-size: 8px;
  color: #f7f7f7;
  margin-top: 2px;
}


/* AREA LIST */

.area-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 13px;
}

.area-card ul li {
  position: relative;
  padding: 7px 0 7px 10px;
  border-bottom: 1px solid #ededed;
  font-size: 9px;
  color: #f5f1f1;
}

.area-card ul li::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #d4af37;
  position: absolute;
  left: 0;
  top: 12px;
}


/* LINK */

.area-card a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #f0f0f0;
  text-decoration: none;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  margin-top: 2px;
  transition: 0.3s ease;
}

.area-card a i {
  color: #d4af37;
  font-size: 10px;
}

.area-card a:hover {
  color: #d4af37;
}


  /* Callouts gallery */
  .callouts-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
  }

  .callout-photo {
      aspect-ratio: 4/3;
      border-radius: var(--radius);
      background: linear-gradient(135deg, #332e24, #141210);
  }

  /* CTA band */
  .cta-band {
      background: linear-gradient(120deg, #241c0c, #0b0a08 70%);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      text-align: center;
  }

  .cta-band h2 {
      font-size: 28px;
      color: #fff;
  }

  .cta-band h2 .gold {
      color: var(--gold);
  }

  .cta-band p {
      color: var(--muted);
      font-size: 14px;
      margin: 14px auto 28px;
      max-width: 480px;
  }

  .cta-ctas {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
  }

  /* Footer */
  footer {
      background: #050403;
      border-top: 1px solid var(--line);
      padding-top: 64px;
      font-size: 13px;
      color: var(--muted);
  }

  .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
      gap: 36px;
      padding-bottom: 44px;
  }

  .footer-about p {
      margin: 16px 0 0;
      font-size: 13px;
      color: var(--muted-2);
      max-width: 260px;
  }

  .footer-col h4 {
      font-size: 12px;
      letter-spacing: .06em;
      color: var(--ink);
      margin-bottom: 16px;
      text-transform: uppercase;
  }

  .footer-col li {
      margin-bottom: 10px;
  }

  .footer-col a:hover {
      color: var(--gold);
  }

  .footer-contact li {
      display: flex;
      flex-direction: column;
      margin-bottom: 14px;
  }

  .footer-contact li b {
      color: var(--ink);
      font-size: 13.5px;
  }

  .footer-bottom {
      border-top: 1px solid var(--line);
      padding: 20px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 14px;
  }

  .footer-bottom-ctas {
      display: flex;
      gap: 10px;
  }

  .footer-areas {
      display: flex;
      gap: 14px;
      font-size: 12px;
      flex-wrap: wrap;
  }

  /* WhatsApp float */
  .wa-float {
      position: fixed;
      right: 22px;
      bottom: 22px;
      width: 54px;
      height: 54px;
      border-radius: 50%;
      background: var(--green);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      box-shadow: 0 6px 18px rgba(0, 0, 0, .4);
      z-index: 60;
  }

/*
========================== 
            about 
==========================
*/
/* about hero section */
.about-page-hero {
    position: relative;
    min-height: 420px;

    display: flex;
    align-items: center;

    background: url("../images/aboutImages/hero.png") center / cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.90) 0%,
        rgba(0, 0, 0, 0.60) 45%,
        rgba(0, 0, 0, 0.15) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
}


/* SECTIONS */
.about-section {
  padding: 70px 0 80px;
  background: #070707;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 65px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(229,189,54,.25);
  border-radius: 30px;
  padding: 5px 12px;
  color: var(--gold);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1.6px;
  margin-bottom: 13px;
  background: rgba(229,189,54,.04);
}

h2 {
  font-size: clamp(31px, 3.2vw, 40px);
  letter-spacing: .4px;
  margin-bottom: 17px;
}

.about-copy > p {
  color: #aaa;
  font-size: 11px;
  line-height: 1.75;
  margin: 0 0 14px;
}

.check-list {
  padding: 0;
  margin: 19px 0 25px;
  list-style: none;
}

.check-list li {
  color: #ddd;
  font-size: 10px;
  margin: 9px 0;
}

.check-list i {
  color: var(--gold);
  margin-right: 8px;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: 375px;
  object-fit: cover;
  border-radius: 9px;
  filter: saturate(.85);
  border: 1px solid #292929;
}

.image-badge {
  position: absolute;
  right: 14px;
  bottom: 13px;
  width: 88px;
  height: 66px;
  border-radius: 7px;
  background: linear-gradient(135deg, #f7de75, #d3aa27);
  color: #111;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 8px 25px rgba(0,0,0,.45);
}

.image-badge strong {
  font-family: "Barlow Condensed";
  font-size: 24px;
  line-height: 1;
}

.image-badge span {
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .8px;
}

/* VALUES */
.values-section {
  background: #121212;
  padding: 55px 0 65px;
  border-top: 1px solid #1c1c1c;
  border-bottom: 1px solid #1c1c1c;
}

.section-heading.center {
  text-align: center;
  margin-bottom: 27px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.value-card {
  min-height: 150px;
  position: relative;
  background: #101010;
  border: 1px solid #242424;
  border-radius: 8px;
  padding: 17px 18px;
  overflow: hidden;
}

.number {
  display: block;
  color: rgba(229,189,54,.55);
  font-family: "Barlow Condensed";
  font-size: 24px;
  line-height: 1;
  margin-bottom: 8px;
}

.value-icon {
  color: var(--gold);
  font-size: 17px;
  margin-bottom: 7px;
}

.value-card h3 {
  margin-bottom: 7px;
  font-size: 13px;
  letter-spacing: .3px;
}

.value-card p {
  margin: 0;
  color: #999;
  font-size: 9px;
  line-height: 1.55;
}

/* GALLERY */
.gallery-section {
  padding: 65px 0 70px;
  background: #070707;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
}

.gallery-grid img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 7px;
  border: 1px solid #222;
  transition: transform .25s ease, filter .25s ease;
}

.gallery-grid img:hover {
  transform: scale(1.025);
  filter: brightness(1.12);
}

/* CTA */
.cta-section {
  padding: 62px 0 65px;
  background:
    radial-gradient(circle at 15% 50%, rgba(229,189,54,.11), transparent 32%),
    linear-gradient(90deg, #1b1a14, #11110e 50%, #1c1a12);
  border-top: 1px solid #27241b;
}

.cta-content {
  text-align: center;
}

.cta-content h2 {
  font-size: clamp(32px, 3.4vw, 43px);
  margin-bottom: 11px;
}

.cta-content p {
  color: #aaa;
  font-size: 10px;
  line-height: 1.6;
  margin: 0 0 20px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 9px;
}

.btn-whatsapp {
  color: white;
  background: #18c96a;
  box-shadow: 0 8px 22px rgba(24,201,106,.15);
}

 
/* ==================================
             area page
===================================== */
.areas-page-hero {
  position: relative;
  min-height: 820px;
  display: flex;
  align-items: center;

  background: url("../images/servicesImages/24houreTyerFitting2.png") center / cover no-repeat;
}

.areas-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.90) 40%,
    rgba(0, 0, 0, 0.65) 75%,
    rgba(0, 0, 0, 0.20) 110%
  );
}

.areas-page-hero .hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.areas-page-hero h1 {
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.areas-page-hero h1 em {
  color: #d4af37;
  font-style: normal;
}

.areas-page-hero p {
  max-width: 700px;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,.85);
  margin-bottom: 25px;
}

.areas-page-hero .gold-line {
  width: 70px;
  height: 4px;
  background: #d4af37;
}

/*===================================
            contact us page 
 ====================================*/

 

.contact-bases {
  width: 100%;
  background: #050505;
  padding: 90px 0;
  color: #fff;
}

.contact-container {
  width: min(1160px, 92%);
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 55px;
  align-items: start;
}


 

.contact-info {
  width: 100%;
}

.contact-label {
  display: inline-block;

  padding: 7px 16px;

  border: 1px solid rgba(212, 175, 55, .45);
  border-radius: 30px;

  color: #e2b93b;

  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;

  margin-bottom: 16px;
}


.contact-info h2 {
  margin: 0 0 16px;

  font-size: clamp(38px, 4vw, 52px);
  line-height: 1;

  font-weight: 900;
  letter-spacing: -1px;

  text-transform: uppercase;
}

.contact-info h2 em {
  color: #e2bd4b;
  font-style: normal;
}


.contact-intro {
  max-width: 650px;

  margin: 0 0 28px;

  color: #aeb6c4;

  font-size: 16px;
  line-height: 1.7;
}


 

.contact-row {
  display: flex;
  align-items: center;

  gap: 16px;

  padding: 18px 0;

  border-bottom: 1px dashed rgba(255,255,255,.10);
}


.contact-icon {
  flex: 0 0 46px;

  width: 46px;
  height: 46px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;

  background: rgba(212,175,55,.10);
  border: 1px solid rgba(212,175,55,.35);

  color: #e3b72d;

  font-size: 20px;
}


.contact-details {
  min-width: 0;
}


.contact-details span {
  display: block;

  margin-bottom: 6px;

  color: #9ca6b7;

  font-size: 12px;
  font-weight: 800;

  letter-spacing: 2px;
  text-transform: uppercase;
}


.contact-details a,
.contact-details p {
  margin: 0;

  color: #fff;

  font-size: 16px;
  line-height: 1.5;

  text-decoration: none;
}


.contact-details a:hover {
  color: #e2b93b;
}

 

.contact-buttons {
  display: flex;
  gap: 12px;

  margin-top: 25px;
}


.contact-btn {
  min-width: 158px;

  padding: 16px 24px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  border-radius: 7px;

  font-size: 14px;
  font-weight: 900;

  letter-spacing: 1.5px;

  text-decoration: none;

  transition: .25s ease;
}


.call-btn {
  background: linear-gradient(
    135deg,
    #f5d878,
    #c99c20
  );

  color: #080808;

  box-shadow: 0 8px 25px rgba(212,175,55,.18);
}


.whatsapp-btn {
  background: #20d968;

  color: #fff;

  box-shadow: 0 8px 25px rgba(32,217,104,.20);
}


.contact-btn:hover {
  transform: translateY(-2px);
}

 

.bases-card {
  background: #111;

  border: 1px solid rgba(255,255,255,.10);

  border-radius: 14px;

  padding: 30px;

  box-shadow:
    0 20px 50px rgba(0,0,0,.35);
}


.bases-card h3 {
  margin: 0 0 20px;

  color: #fff;

  font-size: 21px;
  font-weight: 900;

  text-transform: uppercase;
}

 

.base-item {
  display: flex;

  gap: 16px;

  padding: 18px 0;

  border-bottom: 1px dashed rgba(255,255,255,.10);
}


.base-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}


.base-icon {
  flex: 0 0 46px;

  width: 46px;
  height: 46px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(212,175,55,.10);

  border: 1px solid rgba(212,175,55,.35);

  border-radius: 12px;

  color: #e3b72d;

  font-size: 20px;
}


.base-info {
  min-width: 0;
}


.base-info > span {
  display: block;

  margin-bottom: 6px;

  color: #8f99aa;

  font-size: 12px;
  font-weight: 900;

  letter-spacing: 2px;

  text-transform: uppercase;
}


.base-info p {
  margin: 0 0 9px;

  color: #fff;

  font-size: 16px;
  line-height: 1.5;
}


.base-info a {
  display: inline-flex;
  align-items: center;

  gap: 8px;

  color: #e2bd4b;

  font-size: 13px;
  font-weight: 900;

  letter-spacing: 1px;

  text-decoration: none;

  text-transform: uppercase;
}


.base-info a:hover {
  color: #fff;
}


.base-info a i {
  font-size: 11px;
}
 

.contact-page-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;

  background:
    url("../images/contactimages/contacthero.png")
    center center / cover no-repeat;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, .90) 0%,
    rgba(0, 0, 0, .65) 45%,
    rgba(0, 0, 0, .20) 100%
  );
}

.contact-page-hero .hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding-left: 15px;
}

.contact-page-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.contact-page-hero h1 em {
  color: #e2bd4b;
  font-style: normal;
}

.contact-page-hero p {
  max-width: 720px;
  margin: 0 0 25px;

  color: rgba(255,255,255,.85);
  font-size: 18px;
  line-height: 1.7;
}

.contact-page-hero .gold-line {
  width: 70px;
  height: 4px;
  background: #e2bd4b;
}

/* ==========================
        FAQ section 
    =========================
*/

/* =========================
   FAQ SECTION
========================= */

.faq-section {
  background: #151515;
  padding: 80px 0;
  color: #fff;
}

.faq-container {
  width: 1160px;
  max-width: 92%;
  margin: auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}


/* =========================
   LEFT
========================= */

.faq-left {
  padding-top: 5px;
}

.faq-tag {
  display: inline-block;

  padding: 7px 15px;

  border: 1px solid #594a16;
  border-radius: 30px;

  color: #e5b936;

  font-size: 11px;
  font-weight: 800;

  letter-spacing: 3px;
}


.faq-left h2 {
  margin: 18px 0 16px;

  font-size: 46px;
  line-height: 1.05;

  font-weight: 900;

  text-transform: uppercase;
}


.faq-left h2 span {
  color: #e1bd4c;
}


.faq-left > p {
  max-width: 580px;

  margin: 0;

  color: #aeb5c0;

  font-size: 16px;
  line-height: 1.7;
}


.faq-line {
  width: 55px;
  height: 4px;

  margin-top: 20px;

  background: #e1bd4c;
}


/* =========================
   BUTTONS
========================= */

.faq-actions {
  display: flex;
  gap: 12px;

  margin-top: 25px;
}


.faq-actions a {
  min-width: 125px;

  padding: 14px 20px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 9px;

  border-radius: 7px;

  font-size: 12px;
  font-weight: 900;

  letter-spacing: 1.5px;

  text-decoration: none;

  transition: .25s ease;
}


.faq-call {
  background: linear-gradient(135deg, #f6db7a, #c89b20);
  color: #111;

  box-shadow: 0 8px 25px rgba(220,175,40,.2);
}


.faq-wa {
  background: #20d968;
  color: #fff;

  box-shadow: 0 8px 25px rgba(32,217,104,.2);
}


.faq-actions a:hover {
  transform: translateY(-2px);
}


/* =========================
   FAQ RIGHT
========================= */

.faq-right {
  width: 100%;
}


.faq-box {
  margin-bottom: 12px;

  background: #101010;

  border: 1px solid #292929;

  border-radius: 12px;

  overflow: hidden;

  transition: border-color .25s ease;
}


.faq-box.active {
  border-color: #554714;
}


/* QUESTION */

.faq-title {
  width: 100%;

  min-height: 67px;

  padding: 0 20px;

  border: 0;
  outline: 0;

  background: transparent;

  color: #fff;

  display: flex;
  align-items: center;
  justify-content: space-between;

  cursor: pointer;

  text-align: left;
}


.faq-title span {
  font-size: 14px;
  font-weight: 900;

  line-height: 1.4;
}


.faq-symbol {
  color: #e4b82f;

  font-size: 22px;
  font-weight: 400;

  line-height: 1;
}


/* ANSWER */

.faq-content {
  display: none;

  padding: 0 20px 20px;
}


.faq-box.active .faq-content {
  display: block;
}


.faq-content p {
  margin: 0;

  color: #aeb5c0;

  font-size: 15px;
  line-height: 1.7;
}

.accordion-item{
    background-color: transparent !important;
    
}
.accordion{
    padding: 10% 0% !important;
        color: white !important;
        --bs-accordion-bg:rgba(0, 0, 0, 0.021);
        --bs-accordion-color:white;
    }
    .accordion-button{
        color: white;
    }

    .accordion-button:not(.collapsed){
        background-color: transparent;
        color: white;
        border-top: #062712;
    }

    .accordion-button:focus{
        box-shadow: none;
    }

    .accordion-button::after {
  filter: brightness(0) invert(1);
}
.dropdown-toggle::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .0em solid;
    border-right: .0em solid transparent;
    border-bottom: 0;
    border-left: .0em solid transparent;
}


/* services pages start */



/*start  service-mobile-tyre-fitting page*/

.mobileTyreFitting-page-hero {
  position: relative;
  min-height: 420px;

  display: flex;
  align-items: center;

  background:
    url("../images/servicesImages/mobileTyreFitting.jpg")
    center center / cover no-repeat;
}

.mobileTyreFitting-page-hero .hero-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, .92) 0%,
    rgba(0, 0, 0, .70) 45%,
    rgba(0, 0, 0, .20) 100%
  );
}

.mobileTyreFitting-page-hero .hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.mobileTyreFitting-page-hero .breadcrumbs {
  margin-bottom: 18px;

  color: #c9c9c9;

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.mobileTyreFitting-page-hero .breadcrumbs span {
  margin: 0 8px;
  color: #e1bd4c;
}

.mobileTyreFitting-page-hero h1 {
  margin: 0 0 18px;

  font-size: clamp(42px, 6vw, 70px);
  line-height: 1;

  font-weight: 900;

  text-transform: uppercase;
}

.mobileTyreFitting-page-hero h1 em {
  color: #e1bd4c;
  font-style: normal;
}

.mobileTyreFitting-page-hero p {
  max-width: 700px;

  margin: 0 0 25px;

  color: rgba(255,255,255,.85);

  font-size: 18px;
  line-height: 1.7;
}

.mobileTyreFitting-page-hero .gold-line {
  width: 70px;
  height: 4px;

  background: #e1bd4c;
}

/*start  service-mobile-tyre-fitting page*/
.mobile-tyer-replacement{
    background: url("../images/servicesImages/mobileTyreReplacement.png")center center / cover no-repeat;
}
.mobile-tyer-punture-repair{
    background: url("../images/servicesImages/mobile-punture-repair.png")center center / cover no-repeat;
}
.Roadside-Tyre-Assistance{
    background: url("../images/servicesImages/roadside-tyre-assistance.png")center center / cover no-repeat;
}
.lookingWheel-nut-removal{
    background: url("../images/servicesImages/wheelNut.png")center center / cover no-repeat;
}
.emergencyhoureTyerFitting{
    background: url("../images/servicesImages/24houreTyerFitting.png")center center / cover no-repeat;
}

