@charset "UTF-8";

/*
Theme Name: Buying Your Car New
Theme URI: https://wordpress.org/themes/buyingyourcar/
Author: the WordPress team
Author URI: https://wordpress.org/
Description: Twenty Twenty-One is a blank canvas for your ideas and it makes the block editor your best brush. With new block patterns, which allow you to create a beautiful layout in a matter of seconds, this theme’s soft colors and eye-catching — yet timeless — design will let your work shine. Take it for a spin! See how Twenty Twenty-One elevates your portfolio, business website, or personal blog.
Requires at least: 5.3
Tested up to: 6.0
Requires PHP: 5.6
Version: 1.7
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: buyingyourcar
Tags: one-column, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, block-patterns, rtl-language-support, sticky-post, threaded-comments, translation-ready

Buying Your Car WordPress Theme, (C) 2020 WordPress.org
Buying Your Car is distributed under the terms of the GNU GPL.
*/

/* ============================================================
   BUY MY TOY — Shared stylesheet
   Tokens · shared typography classes · components · sections
   Same font-size classes reused on every page.
   ============================================================ */

:root {
  --c-red: #e30613;
  --c-red-dark: #c20510;
  --c-black: #111;
  --c-ink: #1a1a1a;
  --c-body: #6b7280;
  --c-body-dark: #cfcfcf;
  --c-white: #fff;
  --c-bg: #fff;
  --c-bg-soft: #f5f6f8;
  --c-bg-black: #0a0a0a;
  --c-border: #e2e4e8;
  --container: 1200px;
  --radius-pill: 999px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --font-head: "Saira", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-body: "Saira", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --section-pad: 96px;
}

/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box
}

* {
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--font-body);
  color: var(--c-ink);
  background: var(--c-bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none
}

ul {
  list-style: none
}

input,
textarea,
select {
  font-family: inherit
}

/* Layout */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px
}

.section {
  padding-block: var(--section-pad)
}

.section-sm {
  padding-block: 56px
}

/* ============ SHARED TYPOGRAPHY (one class per size) ============ */
.t-display {
  font-family: var(--font-head);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -.5px
}

.t-h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.05
}

.t-h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.15
}

.t-h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3
}

.t-body-lg {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: var(--c-body)
}

.t-body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  color: var(--c-body)
}

.t-caption {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  line-height: 1.5;
  color: var(--c-body)
}

.t-btn {
  font-family: var(--font-head);
  font-weight: 700;
  font-style: italic;
  font-size: 15px;
  letter-spacing: .3px
}

.t-eyebrow {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--c-body)
}

.text-red {
  color: var(--c-red)
}

.text-white {
  color: #fff
}

.text-black {
  color: var(--c-black)
}

/* --- Logo fix --- */
.bm-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.bm-logo img {
    height: 40px;       /* controls overall logo size */
    width: auto;        /* keeps aspect ratio */
    max-width: 160px;   /* safety cap */
    display: block;
    object-fit: contain;
}

.bm-logo__rule {
    display: none; /* remove if you don't actually use this element for anything visual */
}


/* ============ BUTTONS (shared) ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px 13px 24px;
  border-radius: var(--radius-pill);
  font-family: var(--font-head);
  font-weight: 700;
  font-style: italic;
  font-size: 15px;
  letter-spacing: .3px;
  transition: transform .15s, box-shadow .15s, background .2s
}

.btn:hover {
  transform: translateY(-2px)
}

.btn .btn-icon {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  flex: none
}

.btn-red {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin: 0;
  background: var(--c-red);
  color: #fff;
  box-shadow: 0 8px 20px rgba(227, 6, 19, .28)
}


.btn-black {
   position: relative;
  display: inline-flex;
  align-items: center;
  background: var(--c-black);
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .28)
}


.btn-outline {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin: 0;
  background: #fff;
  color: var(--c-black);
  border: 1.5px solid var(--c-black)
}



.btn-block {
  width: 100%;
  justify-content: center
}

/* Faint grid patterns */
.grid-pattern {
  background-image: linear-gradient(rgba(0, 0, 0, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 0, 0, .04) 1px, transparent 1px);
  background-size: 34px 34px
}

.grid-pattern-light {
  background-image: linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 34px 34px
}

/* ============ HEADER ============ */
.bm-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  border-top: 3px solid var(--c-red);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-id-507 .form-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.page-id-507 .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.page-id-507 .custom-buyer-form .t-h4 {
  margin: 20px 16px;
}

.page-id-507 .contact-details-lable {
  display: none;
}

.page-id-507 .submit-container {
  margin-top: 60px !important;
}

.car-details-lable {
  color: #727272;
  font-size: 20px;
}

.wpcf7-submit {
  background: #DF010D;
  border: 0;
  color: #fff;
  box-shadow: 0px 12px 32px -8px #17181C66;
}

.about-form .form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin: 30px 0;
}

.about-form .field.full-width.field--area {
  margin-top: 25px;
}

.wpcf7-submit:hover {
  background-color: #000;
  color: #fff;
  transition: .3s;

}

.bm-header__bar {
  max-width: 1280px;
  margin-inline: auto;
  padding: 18px 24px
}

.bm-header__pill {
display: flex;
    align-items: center;
    gap: 24px;
    background: #fff;
    border-radius: var(--radius-pill);
    padding: 10px 12px 10px 22px;
    box-shadow: 0 10px 30px rgb(0 0 0 / 13%);
    border: 1px solid #eef0f3;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(10px);
}

/* Boxed logo */
.bm-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: .9;
  flex: none;
  padding: 4px 6px
}

.bm-logo__rule {
  display: block;
  width: 100%;
  border-top: 2px solid #111;
  margin-bottom: 4px
}

.bm-logo__main {
  font-family: var(--font-head);
  font-weight: 800;
  font-style: italic;
  font-size: 23px;
  letter-spacing: .5px;
  color: #111
}

.bm-logo__red {
  color: var(--c-red)
}

.bm-logo__sub {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 4px;
  color: #111;
  margin-top: 3px;
  width: 100%;
  text-align: center;
  border-top: 2px solid #111;
  padding-top: 3px
}

.bm-logo--plain {
  flex-direction: column;
  align-items: flex-start;
  padding: 0
}

.bm-logo--plain .bm-logo__main {
  color: #fff
}

.bm-logo--plain .bm-logo__sub {
  border: none;
  text-align: left;
  color: #9a9a9a;
  padding-top: 1px;
  letter-spacing: 3px
}

.bm-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-inline: auto
}

.bm-nav__link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  color: #555;
  position: relative;
  white-space: nowrap
}

.bm-nav__link:hover {
  color: var(--c-red)
}

.bm-nav__link.is-active {
  font-weight: 700;
  font-style: italic;
  color: #111
}

.bm-nav__dot {
  color: var(--c-red)
}

.bm-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: none;
  margin-left: auto
}

.bm-header__contact {
  padding: 12px 18px 12px 22px;
  font-size: 14px
}

.bm-burger {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #111;
  align-items: center;
  justify-content: center
}

/* Drawer */
.bm-drawer {
  position: fixed;
  inset: 0;
  z-index: 120;
  pointer-events: none;
  visibility: hidden;
}

.bm-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}

.bm-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.bm-drawer.is-open .bm-drawer__overlay {
  opacity: 1;
}

.bm-drawer__panel {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: min(380px, 85%);
  background: #0d0d0d;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  padding: 0;
  box-shadow: 10px 0 40px rgba(0, 0, 0, 0.5);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.bm-drawer.is-open .bm-drawer__panel {
  transform: translateX(0);
}

.bm-drawer__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.bm-logo--drawer {
  padding: 0;
  align-items: flex-start;
}

.bm-drawer__close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 18px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.2s ease;
}

.bm-drawer__close:hover {
  background: var(--c-red);
  border-color: var(--c-red);
  transform: rotate(90deg);
}

.bm-drawer__nav {
  display: flex;
  flex-direction: column;
  padding: 30px 24px;
  gap: 16px;
}

.bm-drawer__link {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(20px, 4vw, 24px);
  color: #a0a0a0;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.bm-drawer__link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: var(--c-red);
  transform: scaleY(0);
  transition: transform 0.2s ease;
}

.bm-drawer__link:hover,
.bm-drawer__link.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.bm-drawer__link:hover::before,
.bm-drawer__link.is-active::before {
  transform: scaleY(1);
}

.bm-drawer__footer {
  margin-top: auto;
  padding: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bm-drawer__contact-btn {
  width: 100%;
  justify-content: center;
}

.bm-drawer__info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
}

.bm-drawer__info-row {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: #cfcfcf;
  padding: 0;
}

.bm-drawer__info-row a {
  color: #cfcfcf;
  text-decoration: none;
  transition: color 0.2s ease;
}

.bm-drawer__info-row a:hover {
  color: var(--c-red);
}

.bm-drawer__info-row .ico {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: grid;
  place-items: center;
  font-size: 14px;
  color: var(--c-red);
}

.bm-drawer__socials {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 4px;
}

.bm-drawer__socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: grid;
  place-items: center;
  transition: all 0.2s ease;
}

.bm-drawer__socials a:hover {
  background: var(--c-red);
  transform: translateY(-3px);
}

.bm-drawer__socials a img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

/* ============ FOOTER ============ */
.bm-footer {
  background-image: url("../buyingyourcar-new/assets/images/footerbg.png");
  background-size: 100%;
  object-fit: cover;
  color: #cfcfcf;
  padding: 64px 0 0
}
.faq__top a.btn.btn-outline {
    display: none;
}
.bm-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.4fr;
  gap: 48px
}

.bm-footer .bm-logo__main {
  color: #fff
}

.bm-footer__about {
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.7;
  color: #9a9a9a;
  max-width: 340px
}

.bm-footer__col h4 {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 20px;
  color: #000000;
  margin-bottom: 18px
}

.bm-footer__links li {
  margin-bottom: 12px
}

.bm-footer__links a {
  font-size: 14px;
  color: #727272;
}

.bm-footer__links a:hover {
  color: var(--c-red)
}

.bm-footer__info-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
  font-size: 14px;
  color: #727272;
}
.btn-icon svg {
    display: none;
}
.sellform__body .btn-outline .btn-icon::after {
    border-color: black;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Cpath d='M12.3032 6.70905L5.01309 13.9992L3.81543 12.8015L11.1047 5.51139H4.68022V3.81738H13.9972V13.1344H12.3032V6.70905Z' fill='black'/%3E%3C/svg%3E");
}
.bm-footer__info-row .ico {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: var(--c-red);
  flex: none
}
.bm-footer__info-row .ico svg {
    height: 20px;
    margin-top: -9px;
}
.bm-footer__socials {
  display: flex;
  gap: 12px;
  margin-top: 8px
}

.bm-footer__socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--c-red);
  display: grid;
  place-items: center;
  color: #fff
}

.bm-footer__bar {
  margin-top: 48px;
  border-top: 1px solid #1d1d1d;
  text-align: center;
  background: #111;
  padding: 18px;
  font-size: 13px;
  color: #ffffff;
}

/* ============ HERO (home) ============ */
.hero {
  position: relative;
  text-align: center;
  padding: 160px 0 90px;
  overflow: hidden
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-color: #fafafa;
  background-image:
    radial-gradient(at 10% 50%, rgba(227, 6, 19, 0.045) 0px, transparent 50%),
    radial-gradient(at 90% 50%, rgba(227, 6, 19, 0.045) 0px, transparent 50%),
    linear-gradient(rgba(0, 0, 0, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.035) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 30px 30px, 30px 30px;
}

.hero h1 {
  position: relative;
  max-width: 880px;
  margin: 0 auto 26px
}

.hero p {
  position: relative;
  max-width: 760px;
  margin: 0 auto 34px
}

.hero__cta {
  position: relative;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap
}

/* ============ Full-bleed image banner ============ */
.banner {
  width: 100%;
  height: clamp(280px, 38vw, 540px);
  overflow: hidden
}

.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

/* ============ ABOUT split ============ */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center
}

.about__img img {
  border-radius: var(--radius-lg);
  width: 100%;
  object-fit: cover
}

.about__body h2 {
  margin-bottom: 22px
}

.about__body p+p {
  margin-top: 16px
}

.about__body .btn {
  margin-top: 28px
}

/* ============ WHY TO CHOOSE ============ */
.why {
  background: #0a0a0a;
  color: #fff;
  position: relative;
  overflow: hidden
}

.why__head {
  margin-bottom: 48px
}

.why__head .t-eyebrow {
  color: #9a9a9a;
  margin-top: 6px
}

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

.why__card {
  background: #fff;
  color: #111;
  border-radius: var(--radius-md);
  padding: 40px 28px;
  text-align: center
}

.why__icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--c-red);
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  color: #fff;
  box-shadow: 0 8px 18px rgba(227, 6, 19, .35)
}

.why__card h3 {
  margin-bottom: 12px
}

.stap-main {
  width: 53%;
}

/* ============ DECISION / red-car CTA ============ */
.decision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center
}

.page-id-120 .grid-row {
  grid-template-columns: 1fr 1fr 1fr;
}

.decision h2 {
  font-size: clamp(28px, 3.2vw, 40px);
  text-transform: uppercase;
  margin-bottom: 26px
}

.decision__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap
}

.decision__img img {
  border-radius: var(--radius-lg);
  width: 100%;
  object-fit: cover
}

/* ============ SELLING PROCESS ============ */
.process__head {
  margin-bottom: 46px
}

.process__head .t-eyebrow {
  margin-top: 6px
}

.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px
}

.process__card .pc-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1/1;
  margin-bottom: 22px
}

.process__card .pc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.process__step {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 18px
}

.process__step .pill {
  background: var(--c-red);
  color: #fff;
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 700;
  font-size: 13px;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  flex: none;
  z-index: 1
}

.process__step .dots {
  flex: 1;
  border-top: 2px dashed #cfcfcf;
  margin-left: 8px
}

.process__card:last-child .dots {
  display: none
}

.process__card h3 {
  margin-bottom: 10px
}

/* ============ FORMS (shared) ============ */
.field {
  position: relative;
  margin-bottom: 18px
}

.field label {
  position: absolute;
  top: -8px;
  z-index: 50;
  left: 18px;
  background: var(--c-bg-soft);
  padding: 0 6px;
  font-size: 12px;
  color: #888
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid #d8dade;
  border-radius: var(--radius-pill);
  padding: 16px 20px;
  font-size: 14px;
  background: transparent;
  color: #222;
  outline: none
}

.field textarea {
  border-radius: 18px;
  min-height: 96px;
  resize: vertical
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--c-red)
}

.field--area label {
  background: var(--c-bg-soft)
}

/* Sell step wizard */
.sellform {
  background: var(--c-bg-soft);
  border-radius: var(--radius-lg);
  overflow: hidden
}

.sellform__head {
  background: #111;
  color: #fff;
  padding: 34px 36px;
  display: flex;
  gap: 18px;
  align-items: flex-start
}

.sellform__head .key {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: grid;
  place-items: center;
  flex: none
}

.sellform__head h3 {
  color: #fff;
  margin-bottom: 8px
}

.sellform__head p {
  color: #cfcfcf;
  font-size: 14px;
  max-width: 420px
}

.sellform__body {
  padding: 30px 36px 36px
}

.steps {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 26px;
  overflow: hidden
}

.step {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #111;
  color: #fff;
  border-radius: var(--radius-pill);
  padding: 8px 16px 8px 8px;
  flex: none;
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 700;
  font-size: 14px;
  opacity: .55
}

.step .num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  color: #111;
  display: grid;
  place-items: center;
  font-size: 13px
}

.step.is-active {
  opacity: 1;
  background: var(--c-red)
}

.step.is-active .num {
  color: var(--c-red)
}

.step.is-done {
  opacity: 1;
  background: #111
}

.steps .conn {
  flex: 1;
  min-width: 18px;
  border-top: 2px dashed #c2c2c2
}

.sellform__legend {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 18px;
  color: #222
}

.sellform__actions {
  display: flex;
  gap: 14px;
  margin-top: 10px
}

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

.form-row .field {
  margin-bottom: 0
}

.step-panel {
  display: none
}

.step-panel.is-active {
  display: block
}
/* .widget-from button{
  width: 100%;
  display: inline-block;
}
.widget-from-contact{

} */
/* Buyer form (static / red head) */
.buyform {
  background: var(--c-bg-soft);
  border-radius: var(--radius-lg);
  overflow: hidden
}

.buyform__head {
  background: var(--c-red);
  color: #fff;
  padding: 34px 36px;
  display: flex;
  gap: 18px;
  align-items: flex-start
}

.buyform__head .ico {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: grid;
  place-items: center;
  flex: none
}

.buyform__head h3 {
  color: #fff;
  margin-bottom: 8px
}

.buyform__head p {
  color: #ffe3e5;
  font-size: 14px;
  max-width: 420px
}

.buyform__body {
  padding: 30px 36px 36px
}

.buyform__body h4 {
  margin: 8px 0 24px
}

/* Dual layout (home): sell + buy side by side */
.dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start
}

/* ============ REVIEWS ============ */
.reviews__head {
  margin-bottom: 44px;
}

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

.review-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 28px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .04);
  overflow: hidden;
}

.review-card .stars {
  color: var(--c-red);
  letter-spacing: 3px;
  margin-bottom: 16px;
  font-size: 18px;
}

.review-card p.t-body {
  margin-bottom: 24px;
  line-height: 1.6;
  font-size: 15px;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-card__author img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.review-card__author b {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 17px;
}

.review-card .quote {
  position: absolute;
  bottom: 16px;
  right: 16px;
  pointer-events: none;
  user-select: none;
  display: block;
  line-height: 1;
}

/* ============ FAQ ============ */
.faq {
  background: #0a0a0a;
  color: #fff;
  position: relative;
  overflow: hidden
}

.faq__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 42px;
  gap: 20px
}

.faq__top .t-eyebrow {
  color: #9a9a9a;
  margin-top: 6px
}

.faq__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 18px
}

.faq-item {
  background: #fff;
  color: #111;
  border-radius: var(--radius-md);
  overflow: hidden
}

.faq-item__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  cursor: pointer;
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 700;
  font-size: 18px
}

.faq-item__icon {
  width: 30px;
  height: 30px;
  font-style: normal;
  border-radius: 50%;
  background: var(--c-red);
  color: #fff;
  display: grid;
  place-items: center;
  flex: none;
  font-size: 18px
}

.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  padding: 0 24px
}

.faq-item.is-open .faq-item__a {
  max-height: 240px;
  padding-bottom: 24px
}

.faq-item__a p {
  font-size: 14px;
  color: #555
}

.faq__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  min-height: 420px
}

.faq__img img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

/* ============ PAGE TITLE block (interior pages) ============ */
.page-title {
  text-align: center;
  padding: 154px 0 26px;
  position: relative;
  background-color: #fafafa;
  background-image:
    radial-gradient(at 10% 50%, rgba(227, 6, 19, 0.045) 0px, transparent 50%),
    radial-gradient(at 90% 50%, rgba(227, 6, 19, 0.045) 0px, transparent 50%),
    linear-gradient(rgba(0, 0, 0, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.035) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 30px 30px, 30px 30px;
  border-bottom: 1px solid #eee;
}

.page-title h1 {
  margin-bottom: 14px
}

.page-title .back {
  font-size: 14px;
  color: var(--c-body)
}

.page-title .back:hover {
  color: var(--c-red)
}
.wpcf7-not-valid{
	border-color:var(--c-red) !important;
}
.wpcf7-not-valid-tip{
	display: none !important;
}
/* ============ RESPONSIVE ============ */
@media (max-width:1300px) {
  .process__grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 42px
  }

  .process__card:nth-child(2) .dots {
    display: none
  }

  /* no dotted line at row end */
}

@media (max-width:1024px) {
  :root {
    --section-pad: 72px
  }

  .bm-nav {
    display: none
  }

  .bm-burger {
    display: inline-flex
  }

  .why__cards {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-inline: auto
  }

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

  .faq__wrap {
    grid-template-columns: 1fr
  }

  .faq__img {
    min-height: 300px
  }

  .dual {
    grid-template-columns: 1fr
  }

  .about {
    grid-template-columns: 1fr;
    gap: 36px
  }

  .decision {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .bm-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px
  }
}

@media (max-width:640px) {
  :root {
    --section-pad: 56px
  }

  .bm-header__contact {
    display: none
  }

  /* mobile: no contact in top bar */
  .bm-drawer__panel {
    width: 100%
  }

  /* mobile: full-width drawer */
  .bm-drawer__contact {
    display: inline-flex
  }

  /* mobile: contact inside drawer */
  .process__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto
  }

  .process__card .dots {
    display: none
  }

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

  .sellform__head,
  .buyform__head {
    padding: 26px 22px
  }

  .sellform__body,
  .buyform__body {
    padding: 24px 22px 28px
  }

  .hero__cta {
    flex-direction: column;
    align-items: baseline;
  }
.container {
    padding-inline: 15px;
}
	.bm-header__bar {
    padding: 8px 7px;
}
  .bm-footer__grid {
    grid-template-columns: 1fr
  }

  .steps {
    flex-wrap: nowrap
  }

  .reviews__head {
    margin-bottom: 28px;
  }

  .reviews__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .review-card {
    padding: 22px 20px;
  }

  .review-card .stars {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .review-card p.t-body {
    font-size: 14px;
    margin-bottom: 18px;
  }

  .review-card__author b {
    font-size: 15px;
  }

  .review-card .quote svg {
    width: 46px;
    height: auto;
  }
	.bm-footer {
    background-image: none;
}
}

/* ============ CUSTOM BUYER REGISTRATION FORM (ABOUT PAGE) ============ */
.custom-buyer-form {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0 60px;
}

.custom-buyer-form .intro-text {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--c-body);
  margin-bottom: 30px;
  line-height: 1.5;
}

.custom-buyer-form .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 30px;
  row-gap: 24px;
  align-items: start;
}

.custom-buyer-form .field {
  position: relative;
  margin-bottom: 0;
}

.custom-buyer-form .field.full-width {
  grid-column: span 2;
}

.custom-buyer-form .form-heading {
  grid-column: span 2;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
  color: #111;
  margin-top: 10px;
  margin-bottom: -6px;
}

.custom-buyer-form .field label {
  position: absolute;
  top: -8px;
  left: 24px;
  background: #fff !important;
  padding: 0 8px;
  font-size: 13px;
  color: #888;
  z-index: 1;
}

.custom-buyer-form .field input,
.custom-buyer-form .field textarea {
  width: 100%;
  border: 1.5px solid #d8dade;
  border-radius: 999px;
  padding: 16px 24px;
  font-size: 15px;
  background: #fff;
  color: #222;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.custom-buyer-form .field textarea {
  border-radius: 20px;
  min-height: 140px;
  resize: vertical;
}

.custom-buyer-form .field input:focus,
.custom-buyer-form .field textarea:focus {
  border-color: var(--c-red);
  box-shadow: 0 4px 12px rgba(227, 6, 19, 0.05);
}

.custom-buyer-form .submit-container {
  grid-column: span 2;
  display: flex;
  justify-content: flex-start;
  margin-top: 10px;
}

.custom-buyer-form .btn-search {
  background: var(--c-red);
  color: #fff;
  border-radius: 999px;
  padding: 14px 28px 14px 32px;
  font-size: 16px;
  font-weight: 700;
  font-style: italic;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 22px rgba(227, 6, 19, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.2s ease;
}

.custom-buyer-form .btn-search:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(227, 6, 19, 0.35);
}

.custom-buyer-form .btn-search .btn-icon {
  background: #fff;
  color: var(--c-red);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

/* Responsive styles for custom buyer form */
@media (max-width: 768px) {}

/* ============ CONTACT PAGE DETAIL CARDS & MAP ============ */
.contact-details-section {
  background: #0a0a0a;
  color: #fff;
  position: relative;
  overflow: hidden;
  padding-block: var(--section-pad);
}

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

.contact-card {
  background: #fff;
  color: #111;
  border-radius: var(--radius-md);
  padding: 40px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.contact-card__icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--c-red);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  box-shadow: 0 8px 18px rgba(227, 6, 19, 0.35);
}

.contact-card__icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  /* Forces standard icons to render in white inside the red circle */
}

.contact-card__label {
  font-family: var(--font-body);
  font-size: 14px;
  color: #888;
  margin-bottom: 12px;
}

.contact-card__value {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(16px, 1.6vw, 21px);
  color: #111;
  line-height: 1.35;
}

.map-section {
  width: 100%;
  background: #fff;
}

.map-container {
  width: 100%;
  height: auto;
  overflow: hidden;
}

/* Thank You Panel */
.thank-you-panel {
  border-radius: 16px;
  padding: 2.5rem 2rem;
  max-width: 480px;
  width: 100%;
  margin: 2rem auto;
  text-align: center;
  box-sizing: border-box;
}

.thank-you-panel h5 {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9ca3af;
  margin: 0 0 1.25rem;
}

.thank-you-panel .success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #dcfce7;
  border: 2px solid #bbf7d0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 30px;
  color: #16a34a;
  line-height: 1;
}

.thank-you-panel h2 {
  font-size: 22px;
  font-weight: 500;
  color: #111827;
  margin: 0 0 0.75rem;
}

.thank-you-panel p {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

.btn-icon::after {
    content: '';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Cpath d='M12.3032 6.70905L5.01309 13.9992L3.81543 12.8015L11.1047 5.51139H4.68022V3.81738H13.9972V13.1344H12.3032V6.70905Z' fill='white'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}
/* Remove default margin */
.submit-container p {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin: 0;
}

/* Inject arrow icon after the <p> tag's content */
.submit-container p::after {
    content: '';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Cpath d='M12.3032 6.70905L5.01309 13.9992L3.81543 12.8015L11.1047 5.51139H4.68022V3.81738H13.9972V13.1344H12.3032V6.70905Z' fill='white'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

/* Button styled to leave room for the icon on the right */
.submit-container .wpcf7-submit {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #e02020, #cc0000);
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    font-style: italic;
    padding: 14px 64px 14px 32px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(220, 30, 30, 0.5);
    transition: all 0.3s ease;
}

.submit-container .wpcf7-submit:hover {
    background: linear-gradient(135deg, #cc0000, #aa0000);
    box-shadow: 0 0 30px rgba(220, 30, 30, 0.7);
}

.wpcf7-spinner {
  display: none;
}

/* Initial Hidden State */

.floating-call,
#backToTop{
    opacity:0;
    visibility:hidden;
    transform:translateY(20px);
    pointer-events:none;

    transition:
        opacity .35s ease,
        transform .35s ease,
        visibility .35s ease;
}

/* Visible */

.floating-call.show,
#backToTop.show{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
    pointer-events:auto;
}

/* Floating Call */

.floating-call{
    position:fixed;
    left:20px;
    bottom:20px;
    z-index:9999;

    display:flex;
    align-items:center;
    gap:15px;

    background:#e30613;
    color:#fff;
    text-decoration:none;

    padding:12px 20px;
    border-radius:64px;

    box-shadow:0 15px 35px rgba(0,0,0,.18);
}


.floating-call span.call-icon {
    height: 23px;
    width: 17px;
}

.floating-call:hover{
    color:#fff;
}

/* Back to Top */

#backToTop{
    position:fixed;
    right:20px;
    bottom:20px;

    width:58px;
    height:58px;

    border:none;
    border-radius:50%;

    background:#000;
    color:#fff;

    font-size:26px;
    cursor:pointer;

    z-index:9999;

    box-shadow:0 10px 25px rgba(0,0,0,.2);
}

#backToTop:hover{
    transform:translateY(-3px);
}
/* Responsive contact cards and map */
@media (max-width: 1024px) {
  .contact-cards-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }
  .bm-header__actions a{
    display: none
  }
}

@media (max-width: 768px) {
  .custom-buyer-form .form-grid {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }
  .page-id-120 .grid-row{
    grid-template-columns: 1fr;
  }
  .custom-buyer-form .field.full-width,
  .custom-buyer-form .form-heading,
  .custom-buyer-form .submit-container {
    grid-column: span 1;
  }

  .map-container {
    height: 350px;
  }
  
  
}

/* Responsive */
@media (max-width: 480px) {
  .hero h1, .hero p{
    text-align: left;
  }
  .page-id-507 .form-row{
    grid-template-columns: 1fr;
  }
  .page-id-507 .submit-container{
    margin-top: 30px !important;
  }
  
  .thank-you-panel {
    padding: 2rem 1.25rem;
    margin: 1rem auto;
  }

  .thank-you-panel h2 {
    font-size: 18px;
  }

  .thank-you-panel .success-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
}




/* Scroll Reveal Animation */
.scroll-reveal{
    opacity:0;
    transform:translateY(60px);
    transition:
        opacity .8s cubic-bezier(.215,.61,.355,1),
        transform .8s cubic-bezier(.215,.61,.355,1);
    will-change:transform,opacity;
}

.scroll-reveal.show{
    opacity:1;
    transform:translateY(0);
}

@media (max-width:768px){

    .scroll-reveal{
        transform:translateY(15px);
        transition-duration:.55s;
    }

}