@charset "UTF-8";

:root {
  --primary: #f60;
  --primary-rgb: 255, 102, 0;

  --secondary: #000;
  --secondary-rgb: 0, 0, 0;

  --black: #000;
  --black-rgb: 0, 0, 0;

  --white: #fff;
  --white-rgb: 255, 255, 255;

  /* PRIMARY scale  (base: #ff6600) */
  --primary-l100: #fff0e6;
  --primary-l200: #ffe0cc;
  --primary-l300: #ffb380;
  --primary-l400: #ff944d;
  --primary-d100: #e65c00;
  --primary-d200: #cc5200;

  /* SECONDARY scale (base: #000000) */
  --secondary-l100: #f5f5f5;
  --secondary-l200: #d4d4d4;
  --secondary-l300: #a3a3a3;

  /* Text */
  --text-dark: #111;
  --text-mid: #374151;

  --body-bg: #fff;
  --body-bg-rgb: 255, 255, 255;
  --body-text-color: #4d5258;
  --body-text-color-rgb: 77,82,88;

  --form-control-bg: "#f0f0f0";

  /* Dynamic Button Variables */
  --btn-bg: var(--primary);
  --btn-rgb: var(--primary-rgb);
  --btn-color: var(--black);
  --btn-hover-strength: 0.2;

  /* Size Scale */
  --sp-0: 0;
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 1rem;
  --sp-4: 1.5rem;
  --sp-5: 3rem;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --h-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 10px 25px -5px rgba(0, 0, 0, .12);
  --shadow-lg: 0 20px 40px -10px rgba(0, 0, 0, .18);
  
}

/* Box sizing */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font);
  line-height: 1.5;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-size: 14px;
}

body {
  font-family: var(--font);
  color: var(--body-text-color);
  background: var(--white);
  overflow-x: hidden;

  --swiper-theme-color: var(--primary);
}

/* Remove margin on body + common elements */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
ul,
ol {
  margin: 0;
  padding: 0;
}

/* Ensure images scale */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Remove list styles */
/* ul,
ol {
  list-style: none;
} */

/* Links */
a {
  color: inherit;
  text-decoration: none;
}
a:hover,
a:focus,
a:visited {
  text-decoration: none !important;
  outline: none !important;
}

/* Buttons */
button,
input[type="button"],
input[type="submit"] {
  font: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

/* Form elements */
input,
textarea,
select {
  font: inherit;
  border-radius: 0;
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
}

/* Textarea resize only vertical */
textarea {
  resize: vertical;
}

/* Tables */
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}


/* Use Montserrat for headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--h-font);
}

h1 {
  font-size: 46px;
  font-weight: 700;
}

h2 {
  font-size: 38px;
  font-weight: 700;
}

h3 {
  font-size: 30px;
  font-weight: 600;
}

h4 {
  font-size: 24px;
  font-weight: 600;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 18px;
}

p {
  margin-bottom: 15px;
}

section {
  position: relative;
  background: transparent;
}

.ofi {
  object-fit: cover;
  font-family: "object-fit: cover";
}

.bg {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.bg-fixed {
  background-attachment: fixed;
}


/* WP align classes */
.alignleft {
  float: left;
  margin-right: 1rem;
}

.alignright {
  float: right;
  margin-left: 1rem;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Gutenberg images + responsive embeds */
.wp-block-image img {
  height: auto;
}

.wp-block-embed iframe,
.wp-block-video video {
  width: 100%;
  height: auto;
}

/* Screen reader text (WP default override) */
.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* -----------------------------------------------------------
   UTILITY CLASSES
----------------------------------------------------------- */

.text-s {
  font-size: 0.85rem;
}

.text-xs {
  font-size: 0.7rem;
}

.text-l {
  font-size: 1.2rem;
}

.text-xl {
  font-size: 1.6rem;
}

.text-xxl {
  font-size: 2rem;
}
.text-2xx {
  font-size: 2.5rem;
}
.text-3x {
  font-size: 3rem;
}

.modal-content {
  background: rgba(225, 225, 225, 0.9);
  border-radius: 3rem;
}
.modal-header .close {
  padding: 0;
  font-size: 30px;
  display: flex;
  align-self: center;
}

.form-control {
  background-color: var(--form-control-bg);
  border: 1px solid rgba(254, 254, 254, 0.4);
  color: var(--body-text-color);
}

.form-error {
  color: rgb(185, 74, 72);
}

.rounded-16 {
  border-radius: 16px;
}
.rounded-8 {
  border-radius: 8px;
}

select,
select.form-control {
  cursor: pointer;
  color: var(--body-text-color);
}

::-webkit-input-placeholder {
  opacity: 1;
  color: rgba(var(--body-text-color-rgb), 0.5);
}

::-moz-placeholder {
  opacity: 1;
  color: rgba(var(--body-text-color-rgb), 0.5);
}

:-ms-input-placeholder {
  opacity: 1;
  color: rgba(var(--body-text-color-rgb), 0.5);
}

:-moz-placeholder {
  opacity: 1;
  color: rgba(var(--body-text-color-rgb), 0.5);
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

ul.none {
  margin: 0;
  list-style: none;
}

ul.circle {
  list-style: circle;
}
ul.disc {
  list-style: disc;
}
ul.square {
  list-style: square;
}

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}

/* Background Colors */
.bg-primary {
  background: var(--primary) !important;
  color: var(--black);
}

.bg-secondary {
  background: var(--secondary) !important;
  color: var(--white);
}

.bg-black {
  background: var(--black) !important;
  color: var(--white);
}

.bg-white {
  background: var(--white) !important;
  color: var(--black);
}

.bg-transparent {
  background-color: transparent;
}

.bg-primary-light {
  background-color: rgba(var(--primary-rgb), 0.15);
}

.bg-secondary-light {
  background-color: rgba(var(--secondary-rgb), 0.15);
}

.bg-primary-dark {
  background-color: rgba(var(--primary-rgb), 0.9);
}

.bg-secondary-dark {
  background-color: rgba(var(--secondary-rgb), 0.9);
}

.hover-bg-primary:hover {
  background-color: rgba(var(--primary-rgb), 0.85);
}

.hover-bg-secondary:hover {
  background-color: rgba(var(--secondary-rgb), 0.85);
}

.hover-bg-white:hover {
  background-color: rgba(var(--white-rgb), 0.85);
}

.hover-bg-black:hover {
  background-color: rgba(var(--black-rgb), 0.85);
}

/* Text Colors */
.text-primary {
  color: var(--primary) !important;
}

.text-secondary {
  color: var(--secondary) !important;
}

.text-white {
  color: var(--white) !important;
}

.text-black {
  color: var(--black) !important;
}

.text-xs {
  font-size: 12px;
}

.text-sm {
  font-size: 14px;
}

.text-md {
  font-size: 16px;
}

.text-lg {
  font-size: 18px;
}

.text-xl {
  font-size: 22px;
}

.text-2xl {
  font-size: 26px;
}

.text-light {
  font-weight: 300;
}

.text-normal {
  font-weight: 400;
}

.text-medium {
  font-weight: 500;
}

.text-semibold {
  font-weight: 600;
}

.text-bold {
  font-weight: 700;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.hover-text-primary:hover {
  color: rgb(var(--primary-rgb));
}

.hover-text-secondary:hover {
  color: rgb(var(--secondary-rgb));
}

.hover-text-white:hover {
  color: rgb(var(--white-rgb));
}

.hover-text-black:hover {
  color: rgb(var(--black-rgb));
}

/* Border Colors */
.border-primary {
  border-color: var(--primary) !important;
}

.border-secondary {
  border-color: var(--secondary) !important;
}

.border-danger {
  border-color: var(--danger) !important;
}

.border-black {
  border-color: var(--black) !important;
}

.border-white {
  border-color: var(--white) !important;
}

/* Flex */
.flex {
  display: flex !important;
}

.flex-center {
  justify-content: center;
  align-items: center;
}

.flex-row {
  flex-direction: row;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-start {
  align-items: flex-start;
}

.items-center {
  align-items: center;
}

.items-end {
  align-items: flex-end;
}

.justify-start {
  justify-content: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-end {
  justify-content: flex-end;
}

.gap-1 {
  gap: var(--space-1);
}

.gap-2 {
  gap: var(--space-2);
}

.gap-4 {
  gap: var(--space-4);
}

.gap-6 {
  gap: var(--space-6);
}

.flex-1 {
  flex: 1;
}

/* Grid */
.grid {
  display: grid !important;
}

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

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

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* Display */
.d-block {
  display: block;
}

.d-inline {
  display: inline;
}

.d-inline-block {
  display: inline-block;
}

.d-flex {
  display: flex;
}

.d-inline-flex {
  display: inline-flex;
}

.d-grid {
  display: grid;
}

.d-none {
  display: none;
}

/* Radius */
.rounded {
  border-radius: 0.375rem !important;
}

.rounded-lg {
  border-radius: 0.75rem !important;
}

.rounded-pill {
  border-radius: 999px !important;
}

/* Shadows */
.shadow-sm {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.shadow {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.shadow-lg {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

.shadow-none {
  box-shadow: none;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-auto {
  overflow: auto;
}

.overflow-scroll {
  overflow: scroll;
}

.cursor-pointer {
  cursor: pointer;
}

.cursor-default {
  cursor: default;
}

.opacity-100 {
  opacity: 1;
}

.opacity-75 {
  opacity: 0.75;
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-25 {
  opacity: 0.25;
}

.opacity-0 {
  opacity: 0;
}

.w-full {
  width: 100%;
}

.w-auto {
  width: auto;
}

.w-50 {
  width: 50%;
}

.w-25 {
  width: 25%;
}

.w-75 {
  width: 75%;
}

.h-full {
  height: 100%;
}

.h-auto {
  height: auto;
}

.min-h-screen {
  min-height: 100vh;
}

/* -----------------------------------------------------------
   SPACING UTILITIES (Bootstrap Style)
----------------------------------------------------------- */

/* Margin */
.m-0 {
  margin: var(--sp-0) !important;
}

.m-1 {
  margin: var(--sp-1) !important;
}

.m-2 {
  margin: var(--sp-2) !important;
}

.m-3 {
  margin: var(--sp-3) !important;
}

.m-4 {
  margin: var(--sp-4) !important;
}

.m-5 {
  margin: var(--sp-5) !important;
}

/* Margin Top */
.mt-0 {
  margin-top: var(--sp-0) !important;
}

.mt-1 {
  margin-top: var(--sp-1) !important;
}

.mt-2 {
  margin-top: var(--sp-2) !important;
}

.mt-3 {
  margin-top: var(--sp-3) !important;
}

.mt-4 {
  margin-top: var(--sp-4) !important;
}

.mt-5 {
  margin-top: var(--sp-5) !important;
}

/* Margin Bottom */
.mb-0 {
  margin-bottom: var(--sp-0) !important;
}

.mb-1 {
  margin-bottom: var(--sp-1) !important;
}

.mb-2 {
  margin-bottom: var(--sp-2) !important;
}

.mb-3 {
  margin-bottom: var(--sp-3) !important;
}

.mb-4 {
  margin-bottom: var(--sp-4) !important;
}

.mb-5 {
  margin-bottom: var(--sp-5) !important;
}

/* Margin Start (left in LTR) */
.ms-0 {
  margin-left: var(--sp-0) !important;
}

.ms-1 {
  margin-left: var(--sp-1) !important;
}

.ms-2 {
  margin-left: var(--sp-2) !important;
}

.ms-3 {
  margin-left: var(--sp-3) !important;
}

.ms-4 {
  margin-left: var(--sp-4) !important;
}

.ms-5 {
  margin-left: var(--sp-5) !important;
}

/* Margin End (right in LTR) */
.me-0 {
  margin-right: var(--sp-0) !important;
}

.me-1 {
  margin-right: var(--sp-1) !important;
}

.me-2 {
  margin-right: var(--sp-2) !important;
}

.me-3 {
  margin-right: var(--sp-3) !important;
}

.me-4 {
  margin-right: var(--sp-4) !important;
}

.me-5 {
  margin-right: var(--sp-5) !important;
}

/* MX (Left + Right) */
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mx-0 {
  margin-left: var(--sp-0) !important;
  margin-right: var(--sp-0) !important;
}

.mx-1 {
  margin-left: var(--sp-1) !important;
  margin-right: var(--sp-1) !important;
}

.mx-2 {
  margin-left: var(--sp-2) !important;
  margin-right: var(--sp-2) !important;
}

.mx-3 {
  margin-left: var(--sp-3) !important;
  margin-right: var(--sp-3) !important;
}

.mx-4 {
  margin-left: var(--sp-4) !important;
  margin-right: var(--sp-4) !important;
}

.mx-5 {
  margin-left: var(--sp-5) !important;
  margin-right: var(--sp-5) !important;
}

/* MY (Top + Bottom) */
.my-0 {
  margin-top: var(--sp-0) !important;
  margin-bottom: var(--sp-0) !important;
}

.my-1 {
  margin-top: var(--sp-1) !important;
  margin-bottom: var(--sp-1) !important;
}

.my-2 {
  margin-top: var(--sp-2) !important;
  margin-bottom: var(--sp-2) !important;
}

.my-3 {
  margin-top: var(--sp-3) !important;
  margin-bottom: var(--sp-3) !important;
}

.my-4 {
  margin-top: var(--sp-4) !important;
  margin-bottom: var(--sp-4) !important;
}

.my-5 {
  margin-top: var(--sp-5) !important;
  margin-bottom: var(--sp-5) !important;
}

/* -----------------------------------------------------------
   PADDING
----------------------------------------------------------- */

/* Padding */
.p-0 {
  padding: var(--sp-0) !important;
}

.p-1 {
  padding: var(--sp-1) !important;
}

.p-2 {
  padding: var(--sp-2) !important;
}

.p-3 {
  padding: var(--sp-3) !important;
}

.p-4 {
  padding: var(--sp-4) !important;
}

.p-5 {
  padding: var(--sp-5) !important;
}

/* Padding Top */
.pt-0 {
  padding-top: var(--sp-0) !important;
}

.pt-1 {
  padding-top: var(--sp-1) !important;
}

.pt-2 {
  padding-top: var(--sp-2) !important;
}

.pt-3 {
  padding-top: var(--sp-3) !important;
}

.pt-4 {
  padding-top: var(--sp-4) !important;
}

.pt-5 {
  padding-top: var(--sp-5) !important;
}

/* Padding Bottom */
.pb-0 {
  padding-bottom: var(--sp-0) !important;
}

.pb-1 {
  padding-bottom: var(--sp-1) !important;
}

.pb-2 {
  padding-bottom: var(--sp-2) !important;
}

.pb-3 {
  padding-bottom: var(--sp-3) !important;
}

.pb-4 {
  padding-bottom: var(--sp-4) !important;
}

.pb-5 {
  padding-bottom: var(--sp-5) !important;
}

/* Padding Start (left) */
.ps-0 {
  padding-left: var(--sp-0) !important;
}

.ps-1 {
  padding-left: var(--sp-1) !important;
}

.ps-2 {
  padding-left: var(--sp-2) !important;
}

.ps-3 {
  padding-left: var(--sp-3) !important;
}

.ps-4 {
  padding-left: var(--sp-4) !important;
}

.ps-5 {
  padding-left: var(--sp-5) !important;
}

/* Padding End (right) */
.pe-0 {
  padding-right: var(--sp-0) !important;
}

.pe-1 {
  padding-right: var(--sp-1) !important;
}

.pe-2 {
  padding-right: var(--sp-2) !important;
}

.pe-3 {
  padding-right: var(--sp-3) !important;
}

.pe-4 {
  padding-right: var(--sp-4) !important;
}

.pe-5 {
  padding-right: var(--sp-5) !important;
}

/* PX (Left + Right) */
.px-0 {
  padding-left: var(--sp-0) !important;
  padding-right: var(--sp-0) !important;
}

.px-1 {
  padding-left: var(--sp-1) !important;
  padding-right: var(--sp-1) !important;
}

.px-2 {
  padding-left: var(--sp-2) !important;
  padding-right: var(--sp-2) !important;
}

.px-3 {
  padding-left: var(--sp-3) !important;
  padding-right: var(--sp-3) !important;
}

.px-4 {
  padding-left: var(--sp-4) !important;
  padding-right: var(--sp-4) !important;
}

.px-5 {
  padding-left: var(--sp-5) !important;
  padding-right: var(--sp-5) !important;
}

/* PY (Top + Bottom) */
.py-0 {
  padding-top: var(--sp-0) !important;
  padding-bottom: var(--sp-0) !important;
}

.py-1 {
  padding-top: var(--sp-1) !important;
  padding-bottom: var(--sp-1) !important;
}

.py-2 {
  padding-top: var(--sp-2) !important;
  padding-bottom: var(--sp-2) !important;
}

.py-3 {
  padding-top: var(--sp-3) !important;
  padding-bottom: var(--sp-3) !important;
}

.py-4 {
  padding-top: var(--sp-4) !important;
  padding-bottom: var(--sp-4) !important;
}

.py-5 {
  padding-top: var(--sp-5) !important;
  padding-bottom: var(--sp-5) !important;
}


/* -----------------------------------------------------------
   BUTTON SYSTEM
----------------------------------------------------------- */
/* Base Button            */
.btn,
a.btn,
button.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;

  padding: 0.6rem 1.4rem;
  font-weight: 500;
  font-family: var(--h-font);
  line-height: 1.5;

  border: none;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  transition: 0.25s ease;

  background-color: rgb(var(--btn-rgb));
  color: var(--btn-color);
}

/* Hover = darken or lighten based on brightness */
.btn:hover {
  background-color: rgba(var(--btn-rgb), calc(1 - var(--btn-hover-strength)));
}

/* Make <a> clickable */
.btn:where(a, a:visited) {
  color: rgb(var(--btn-color));
}

/* Sizes */
.btn.btn-sm {
  padding: 0.35rem 0.9rem;
  font-size: 0.875rem;
}

.btn.btn-lg {
  padding: 1rem 1.8rem;
  font-size: 1.125rem;
}

/* Rounded / Pill */
.btn.btn-round {
  border-radius: 0.75rem;
}

.btn.btn-pill {
  border-radius: 999px;
}

/* Button Variants */
.btn-primary {
  --btn-bg: var(--primary);
  --btn-rgb: var(--primary-rgb);
  --btn-color: var(--white);
}

.btn-secondary {
  --btn-bg: var(--secondary);
  --btn-rgb: var(--secondary-rgb);
  --btn-color: var(--white);
}

.btn-black {
  --btn-bg: var(--black);
  --btn-rgb: var(--black-rgb);
  --btn-color: var(--white);
}

.btn-white {
  --btn-bg: var(--white);
  --btn-rgb: var(--white-rgb);
  --btn-color: var(--black);
  border: 1px solid #ddd;
}

/* hover */
.btn-hover-primary:hover {
  --btn-bg: var(--primary);
  --btn-rgb: var(--primary-rgb);
  --btn-color: var(--white);
}

.btn-hover-secondary:hover {
  --btn-bg: var(--secondary);
  --btn-rgb: var(--secondary-rgb);
  --btn-color: var(--white);
}

.btn-hover-black:hover {
  --btn-bg: var(--black);
  --btn-rgb: var(--black-rgb);
  --btn-color: var(--white);
}

.btn-hover-white:hover {
  --btn-bg: var(--white);
  --btn-rgb: var(--white-rgb);
  --btn-color: var(--black);
}

/* Outline Buttons */
.btn.btn-outline {
  background: transparent;
  border: 2px solid rgba(var(--btn-rgb), 1);
  color: rgba(var(--btn-rgb), 1);
}

.btn.btn-outline:hover {
  background: rgba(var(--btn-rgb), 1);
  color: var(--btn-color);
}

/* Outline Buttons */
.btn.btn-link {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: rgba(var(--btn-rgb), 1);
  text-decoration: none;
}

.btn.btn-link:hover {
  background: transparent;
  color: rgba(var(--btn-rgb), 1);
  text-decoration: underline;
}

.btn svg {
  width: 15px;
  height: 15px;
  fill: rgba(var(--btn-rgb), 1);
  transition: fill .2s;
}

.btn:hover svg {
  fill: var(--btn-color);
}

/* Icon Buttons */
.btn.btn-icon {
  padding: 0.5rem;
  width: 18px;
  height: 18px;
  border-radius: 8px;
}

.btn-icon-sm {
  padding: 0.35rem;
  width: 14px;
  height: 14px;
}

.btn-icon-lg {
  padding: 0.75rem;
  width: 22px;
  height: 22px;
}

/* Disabled */
.btn:disabled,
.btn.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

/* ---- Utility ---- */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header .section-title {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--black);
}
.bg-black .section-header .section-title {
  color: var(--white);
}

.section-header .section-subtitle {
  font-size: 17px;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.6;
}


/* ==============================================
   TOP BAR
   ============================================== */
.header-top {
  background: var(--primary);
  color: var(--black);
  padding: 5px 0;
  border-bottom: 2px solid var(--secondary);
  font-size: 13px;
}

.header-top .header-top-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.header-top-info {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.header-top-info a,
.header-top-info span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--white);
  transition: color .2s;
}


.header-top-info a:hover {
  color: var(--black);
}
.header-top-info a:hover svg{
  fill: var(--black);
}

.header-top-info svg {
  width: 16px;
  height: 16px;
  fill: var(--white);
  flex-shrink: 0;
}


.social-icons {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 24px;
  height: 24px;
  background: var(--white);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 11px;
}

.social-icon:hover {
  background: var(--black);
  color: var(--white);
}

/* ==============================================
   MAIN HEADER / NAV
   ============================================== */
.main-header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid var(--primary);
  position: sticky;
  top: 0;
  z-index: 100;
}

.main-header .main-header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  padding: 6px 0;
}

.site-logo img {
  width: auto;
  max-height: 64px;
  display: flex;
}

/* Nav */
.main-menu {
  display: flex;
  list-style: none;
  align-items: center;
  flex-flow: row;
  gap: 20px;
}

.main-menu > li.menu-item {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;
}

.main-menu > li.menu-item::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 0px;
  height: 2px;
  background: var(--primary);
  transition: width 0.25s;
}

.main-menu > li.menu-item:hover::after,
.main-menu > li.menu-item.active::after {
  width: 100%;
}

.main-menu > li.menu-item > a {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  padding: 8px 0px;
  position: relative;
  color: var(--body-text-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
  display: inline-block;
}

.main-menu > li.menu-item:hover > .arrow,
.main-menu > li.menu-item:hover > a {
  color: var(--primary);
}


/* .main-menu > li.menu-item > a > .arrow {
  width: 16px;
  height: 16px;
}

.main-menu > li.menu-item > a > .arrow svg {
  width: 100%;
  height: 100%;
  margin-top: 2px;
  margin-left: 2px;
} */

/* arrow container */
.main-menu > li.menu-item > .arrow {
  width: 16px;
  height: 16px;
  display: inline-block;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.main-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 200px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  z-index: 200;
}

.main-menu > li.menu-item:hover .sub-menu {
  opacity: 1;
  visibility: visible;
}

.main-menu .sub-menu li {
  list-style: none;
}

.main-menu .sub-menu li a {
  display: block;
  padding: 7px 18px;
  color: var(--black);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s;
}

.main-menu .sub-menu li a:hover {
  background-color: rgba(var(--primary-rgb), 0.075);
  color: var(--primary);
}

.nav-right {
  display: flex;
  gap: 12px;
  align-items: center;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
  background: none;
  border: none;
  position: absolute;
  top: 25px;
  right: 25px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #000;
  border-radius: 2px;
  transition: all 0.3s;
}

@media (max-width: 1024px) {
  .main-menu {
    gap: 8px;
  }

}

@media (max-width: 768px) {
  .header-top {
    display: none;
  }

  .main-header{
    position: relative;
  }
  .main-header .main-header-container{
    flex-direction: column;
    align-items:flex-start;
    padding: 0;
  }
  .site-logo{
    padding: 6px 15px;
  }
  .site-logo img{
    max-height: 54px;
  }
  #main-menu-wrapper{
    width: 100%;
    height: 0;
    overflow: hidden;
    transition: all 0.3s;
  }
  #main-menu-wrapper.open{
    height: auto;
  }

  .main-menu {
    width: 100%;
    display: flex;
    flex-direction: column;
    background: var(--white);
    padding: 8px 0 16px;
    gap: 0;
    justify-content: flex-start;
    border-top: 1px solid var(--primary);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
    max-height: 80vh;
    overflow-y: auto;
    z-index: 99;
    list-style: none;
  }


  /* Mobile nav items */
  .main-menu>li.menu-item {
    width: 100%;
    display: block;
    border-bottom: 1px solid var(--primary-l100);
  }

  .main-menu>li.menu-item>a {
    padding: 12px 24px;
    font-size: 15px;
    border-radius: 0;
    display: flex;
    justify-content: space-between;
    margin-right:42px;
  }

  /* Mobile sub-menu: hidden by default, revealed with .open */
  .main-menu .sub-menu {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0;
    margin: 0;
    background: var(--primary-l100);
    min-width: unset !important;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease !important;
  }

  .main-menu .menu-item.open .sub-menu {
    max-height: inherit;
    padding: 10px 0;
  }

  .main-menu .sub-menu li a {
    /* border-left: 2px solid var(--primary); */
    margin-left: 16px;
  }

  /* Arrow rotation when sub-menu is open */
  .main-menu>li.menu-item .arrow {
    transition: transform 0.3s ease;
    width: 42px;
    height: 42px;
    padding: 10px;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
  }
  .main-menu>li.menu-item .arrow:hover{
    color: var(--primary);
  }
  .main-menu > li.menu-item::after{
    display: none;
  }
  
  .main-menu>li.menu-item.open{
    background-color: var(--primary-l200);
  }
  
  .main-menu>li.menu-item.open .arrow svg {
    transform: rotate(180deg);
  }

  .hamburger {
    display: flex;
  }
}

/* ============ HERO SLIDER ============ */

/********************* */
:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}

.animated {
  animation-duration: var(--animate-duration);
  animation-fill-mode: both;
}

.animated.infinite {
  animation-iteration-count: infinite;
}

.animated.repeat-1 {
  animation-iteration-count: var(--animate-repeat);
}

.animated.repeat-2 {
  animation-iteration-count: calc(var(--animate-repeat) * 2);
}

.animated.repeat-3 {
  animation-iteration-count: calc(var(--animate-repeat) * 3);
}

.animated.delay-1s {
  animation-delay: var(--animate-delay);
}

.animated.delay-2s {
  animation-delay: calc(var(--animate-delay) * 2);
}

.animated.delay-3s {
  animation-delay: calc(var(--animate-delay) * 3);
}

.animated.delay-4s {
  animation-delay: calc(var(--animate-delay) * 4);
}

.animated.delay-5s {
  animation-delay: calc(var(--animate-delay) * 5);
}

.animated.faster {
  animation-duration: calc(var(--animate-duration) / 2);
}

.animated.fast {
  animation-duration: calc(var(--animate-duration) * 0.8);
}

.animated.slow {
  animation-duration: calc(var(--animate-duration) * 2);
}

.animated.slower {
  animation-duration: calc(var(--animate-duration) * 3);
}

@media print,
(prefers-reduced-motion: reduce) {
  .animated {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }

  .animated[class*="Out"] {
    opacity: 0;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInBottomRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInTopLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInTopRight {
  from {
    opacity: 0;
    transform: translate3d(100%, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.fadeIn {
  animation-name: fadeIn;
}

.fadeInBottomLeft {
  animation-name: fadeInBottomLeft;
}

.fadeInBottomRight {
  animation-name: fadeInBottomRight;
}

.fadeInDown {
  animation-name: fadeInDown;
}

.fadeInDownBig {
  animation-name: fadeInDownBig;
}

.fadeInLeft {
  animation-name: fadeInLeft;
}

.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}

.fadeInRight {
  animation-name: fadeInRight;
}

.fadeInRightBig {
  animation-name: fadeInRightBig;
}

.fadeInTopLeft {
  animation-name: fadeInTopLeft;
}

.fadeInTopRight {
  animation-name: fadeInTopRight;
}

.fadeInUp {
  animation-name: fadeInUp;
}

.fadeInUpBig {
  animation-name: fadeInUpBig;
}

/* /////////// IMAGE ZOOM /////////// */
@-webkit-keyframes zoomInImage {
  from {
    transform: scale3d(1, 1, 1);
    transition: 1s;
  }

  to {
    transform: scale3d(1.1, 1.1, 1.1);
    transition: 1s;
  }
}

@keyframes zoomInImage {
  from {
    transform: scale3d(1, 1, 1);
    transition: 1s;
  }

  to {
    transform: scale3d(1.1, 1.1, 1.1);
    transition: 1s;
  }
}

.zoomInImage {
  -webkit-animation-name: zoomInImage;
  animation-name: zoomInImage;
}

@-webkit-keyframes zoomOutImage {
  from {
    transform: scale3d(1.1, 1.1, 1.1);
    transition: 1s;
  }

  to {
    transform: scale3d(1, 1, 1);
    transition: 1s;
  }
}

@keyframes zoomOutImage {
  from {
    transform: scale3d(1.1, 1.1, 1.1);
    transition: 1s;
  }

  to {
    transform: scale3d(1, 1, 1);
    transition: 1s;
  }
}

.zoomOutImage {
  -webkit-animation-name: zoomOutImage;
  animation-name: zoomOutImage;
  transition: 1s;
}

.home-banner-section {
  width: 100%;
  position: relative;
}

.home-banner-section .home-banner-slider {
  margin-bottom: 0;
}

.home-banner-slider .home-banner-slide {
  height: 675px;
  position: relative;
  transition: 1s;
}

.home-banner-slider .home-banner-slide .slide_img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  z-index: 0;
}

.home-banner-slider .home-banner-slide .slide_img::before {
  background-color: transparent;
  background-image: linear-gradient(180deg, rgba(var(--black-rgb), 0.25) 60%, var(--primary) 100%);
  /* background-image: linear-gradient(180deg, rgba(var(--black-rgb), 0.4) 48%, rgba(var(--black-rgb), 0.8) 100%); */
  mix-blend-mode: multiply;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}

.home-banner-slider .home-banner-slide .slide_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1 !important;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  transition: all 1s ease;
}

.home-banner-slider .home-banner-slide .slide-content-wrapper {
  color: #fff;
  max-width: 1170px;
  margin: auto;
  z-index: 2;
  width: 100%;
  height: 100%;
  position: relative;
}

.home-banner-slider .home-banner-slide .slide-content-body {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 760px;
}

.home-banner-slider .home-banner-slide .slide-content-body.slide-content-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -30%);
}

.home-banner-slider .home-banner-slide .slide-content-body.slide-content-left {
  left: 1%;
  transform: translate(0, -40%);
}

.home-banner-slider .home-banner-slide .slide-content-body.slide-content-right {
  right: 1%;
  left: auto;
  transform: translate(0, 0);
}

.home-banner-slider .home-banner-slide .slide-content-body .animated {
  transition: all 0.5s ease;
}

.home-banner-slider .home-banner-slide .top-title {
  color: var(--white);
  margin-bottom: 16px;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.home-banner-slider .home-banner-slide .top-title em {
  display: block;
  font-style: normal;
  color: var(--primary);
}

.home-banner-slider .home-banner-slide .sub-title {
  margin-bottom: 30px;
  font-size: clamp(14px, 2vw, 17px);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive hero heights */
@media (max-width: 768px) {
  .home-banner-slider .home-banner-slide {
    height: 480px;
  }
}

@media (max-width: 480px) {
  .home-banner-slider .home-banner-slide {
    height: 420px;
  }
}

.home-banner-slider [data-animation-in] {
  opacity: 0;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  transition: opacity 0.5s ease 0.3s;
  transition: 1s;
}

.home-banner-slider .swiper-pagination {
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 10px;
  --swiper-pagination-bottom: 10px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0, 0, 0, 0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 10px;
  --swiper-pagination-bullet-width: 10px;
  --swiper-pagination-bullet-height: 10px;
  --swiper-pagination-bullet-inactive-color: #fff;
  --swiper-pagination-bullet-inactive-opacity: 0.3;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 8px;
  --swiper-pagination-bullet-vertical-gap: 4px;
  --swiper-pagination-bullet-border-radius: 0;
}

.home-banner-slider .home-slider-nav {
  --active: #fff;
  --border: rgba(255, 255, 255, 0.12);
  width: 44px;
  height: 44px;
  position: absolute;
  cursor: pointer;
  top: calc(50% - 44px);
  z-index: 999;
}

.home-banner-slider .home-slider-button-prev {
  left: 3%;
  transform: scaleX(-1);
}

.home-banner-slider .home-slider-button-next {
  left: auto;
  right: 3%;
}

.home-banner-slider .home-slider-nav i {
  display: block;
  position: absolute;
  margin: -10px 0 0 -10px;
  width: 20px;
  height: 20px;
  left: 50%;
  top: 50%;
}

.home-banner-slider .home-slider-nav i:before,
.home-banner-slider .home-slider-nav i:after {
  content: "";
  width: 10px;
  height: 2px;
  border-radius: 1px;
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--active);
  margin: -1px 0 0 -5px;
  display: block;
  transform-origin: 9px 50%;
}

.home-banner-slider .home-slider-nav i:before {
  transform: rotate(-40deg);
}

.home-banner-slider .home-slider-nav i:after {
  transform: rotate(40deg);
}

.home-banner-slider .home-slider-nav:before,
.home-banner-slider .home-slider-nav:after {
  content: "";
  display: block;
  position: absolute;
  left: 1px;
  right: 1px;
  top: 1px;
  bottom: 1px;
  border-radius: 50%;
  border: 2px solid var(--border);
}

.home-banner-slider .home-slider-nav svg {
  width: 44px;
  height: 44px;
  display: block;
  position: relative;
  z-index: 1;
  color: var(--active);
  stroke-width: 2px;
  /* stroke-dashoffset: 126;
  stroke-dasharray: 126 126 0; */
  transform: rotate(0deg);
}

/* .home-banner-slider .home-slider-nav.animate svg {
  -webkit-animation: stroke 1s ease forwards 0.3s;
  animation: stroke 1s ease forwards 0.3s;
} */

.home-banner-slider .home-slider-nav.animate i {
  -webkit-animation: arrow 1s ease forwards;
  animation: arrow 1s ease forwards;
}

.home-banner-slider .home-slider-nav.animate i:before {
  -webkit-animation: arrowUp 1s ease forwards;
  animation: arrowUp 1s ease forwards;
}

.home-banner-slider .home-slider-nav.animate i:after {
  -webkit-animation: arrowDown 1s ease forwards;
  animation: arrowDown 1s ease forwards;
}

@-webkit-keyframes stroke {
  52% {
    transform: rotate(-180deg);
    stroke-dashoffset: 0;
  }

  52.1% {
    transform: rotate(-360deg);
    stroke-dashoffset: 0;
  }

  100% {
    transform: rotate(-180deg);
    stroke-dashoffset: 126;
  }
}

@keyframes stroke {
  52% {
    transform: rotate(-180deg);
    stroke-dashoffset: 0;
  }

  52.1% {
    transform: rotate(-360deg);
    stroke-dashoffset: 0;
  }

  100% {
    transform: rotate(-180deg);
    stroke-dashoffset: 126;
  }
}

@-webkit-keyframes arrow {

  0%,
  100% {
    transform: translateX(0);
    opacity: 1;
  }

  23% {
    transform: translateX(17px);
    opacity: 1;
  }

  24%,
  30% {
    transform: translateX(-22px);
    opacity: 0;
  }

  31% {
    opacity: 1;
    transform: translateX(-22px);
  }
}

@keyframes arrow {

  0%,
  100% {
    transform: translateX(0);
    opacity: 1;
  }

  23% {
    transform: translateX(17px);
    opacity: 1;
  }

  24%,
  30% {
    transform: translateX(-22px);
    opacity: 0;
  }

  31% {
    opacity: 1;
    transform: translateX(-22px);
  }
}

@-webkit-keyframes arrowUp {

  0%,
  100% {
    transform: rotate(-40deg) scaleX(1);
  }

  20%,
  30% {
    transform: rotate(0deg) scaleX(0.1);
  }
}

@keyframes arrowUp {

  0%,
  100% {
    transform: rotate(-40deg) scaleX(1);
  }

  20%,
  30% {
    transform: rotate(0deg) scaleX(0.1);
  }
}

@-webkit-keyframes arrowDown {

  0%,
  100% {
    transform: rotate(40deg) scaleX(1);
  }

  20%,
  30% {
    transform: rotate(0deg) scaleX(0.1);
  }
}

@keyframes arrowDown {

  0%,
  100% {
    transform: rotate(40deg) scaleX(1);
  }

  20%,
  30% {
    transform: rotate(0deg) scaleX(0.1);
  }
}


/* ==============================================
   CATEGORY SECTION
   ============================================== */
.categories-section {
  padding: 50px 0;
}

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

.category-card {
  background: var(--white);
  border: 1px solid var(--primary-l200);
  border-radius: var(--radius-lg);
  padding: 12px 20px 28px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  color: var(--body-text-color);
}

.category-card:hover {
  /* transform: translateY(-5px); */
  border-color: var(--primary);
  background: var(--primary-l100);
  color: var(--primary);
}

.category-card:hover > img {
  filter: invert(10%) sepia(100%) saturate(1500%) hue-rotate(0deg);
}
.cat-img {
  width: 100px;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
}

.category-card h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.category-card p {
  font-size: 13px;
  line-height: 1.4;
}

/* ==============================================
   FEATURE CARDS (Trailers / Rentals / Specials)
   ============================================== */
.features-section {
  padding: 60px 0;
  background: rgba(var(--primary-rgb), 0.10);
}

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

.feature-card {
  background: var(--white);
  border: 1px solid var(--primary-l400);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--primary);
  background: var(--primary-l100);
}

.feature-icon {
  width: 76px;
  height: 76px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
}

.feature-icon svg {
  width: 38px;
  height: 38px;
  fill: var(--white);
}

.feature-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 24px;
}


/* ==============================================
   BRANDS ROW
   ============================================== */
.brands-section {
  padding: 44px 0 60px;
}

.brands-track {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.brand-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: grayscale(0);
  transition: var(--transition);
}

.brand-logo:hover {
  filter: grayscale(1);
}

/* ==============================================
   ABOUT SECTION
   ============================================== */
.about-section {
  padding: 80px 0;
  background: rgba(var(--primary-rgb), 0.10);
}

.about-section .about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.about-content h2 {
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 800;
  color: var(--black);
  margin-bottom: 20px;
}

.about-content p {
  line-height: 1.75;
  font-size: 16px;
  margin-bottom: 16px;
}

.about-perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0 32px;
}

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

.perk-icon {
  width: 38px;
  height: 38px;
  background: var(--primary);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.perk-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--white);
}

.perk span {
  font-weight: 600;
  color: var(--black);
  font-size: 14.5px;
}

.learn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 700;
  font-size: 15px;
  border-bottom: 2px solid transparent;
  transition: border-color .2s;
}

.learn-link svg {
  width: 18px;
  height: 18px;
  fill: var(--primary);
  transition: transform .25s;
}

.learn-link:hover {
  border-bottom-color: var(--primary);
}

.learn-link:hover svg {
  transform: translateX(5px);
}

/* ==============================================
   SERVICES SECTION
   ============================================== */
.services-section {
  padding: 80px 0;
}

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

.service-card {
  background: var(--primary-l100);
  border: 1px solid var(--primary-l100);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  transition: var(--transition);
}

.service-card:hover {
  background: var(--white);
  border-color: var(--primary);
  transform: scale(1.025);
  box-shadow: var(--shadow);
}

.service-icon {
  width: 76px;
  height: 76px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
}

.service-icon svg {
  width: 38px;
  height: 38px;
  fill: var(--white);
}

.service-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 24px;
  color: var(--body-text-color);
}

/* ==============================================
   TESTIMONIALS
   ============================================== */
.testimonials-section {
  padding: 80px 0;
  background: rgba(var(--primary-rgb), 0.10);
}

.testimonials-slider {
  position: relative;
}

.testimonials-swiper {
  padding: 10px 4px 10px !important;
}

.testimonials-swiper .swiper-slide {
  display: flex;
  height: auto;
}

.testimonials-swiper .swiper-slide .testimonial-card {
  width: 100%;
}

.testimonial-card {
  background: var(--white);
  border: 2px solid var(--primary-l200);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  /* box-shadow: var(--shadow); */
  text-align: center;
  transition: var(--transition);
  position: relative;
  margin: 0 15px 10px;
  flex-direction: column;
  display: flex;
  justify-content: space-between;


}

.testimonial-card:hover {
  border-color: var(--primary);
}

.stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 18px;
}

.stars svg {
  width: 22px;
  height: 22px;
  fill: #fbbf24;
}

.testimonial-text {
  font-size: 17px;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 28px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.author-avatar {
  width: 54px;
  height: 54px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 22px;
  flex-shrink: 0;
}

.author-info h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 3px;
}

.author-info p {
  font-size: 13.5px;
}


.testimonials-navigation {
  display: flex;
  gap: 10px;
  position: absolute;
  right: 0;
  top: calc(50% - 19px);
  z-index: 10;
  width: 100%;
  justify-content: space-between;
}

.testimonials-button-prev,
.testimonials-button-next {
  width: 38px;
  height: 38px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  user-select: none;
  transition: background 0.2s, transform 0.2s;
  color: var(--white);
  box-shadow: 0 2px 8px rgba(249, 115, 22, .35);
}

.testimonials-button-prev:hover,
.testimonials-button-next:hover {
  background: var(--primary);
  transform: scale(1.08);
}

.testimonials-button-prev.swiper-button-disabled,
.testimonials-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

.testimonials-more-reviews {
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* ==============================================
   FOOTER
   ============================================== */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}


.footer-desc {
  color: rgba(var(--white-rgb), 0.5);
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 22px;
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contacts a {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(var(--white-rgb), 0.5);
  font-size: 14px;
  transition: color .2s;
}

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

.footer-contacts svg {
  width: 16px;
  height: 16px;
  fill: var(--primary);
  flex-shrink: 0;
}

.footer-col h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  
}

.footer-col ul li {
  margin-bottom: 10px;
  list-style-position: inside;
}
.footer-col ul li::marker {
  color: rgba(var(--white-rgb), 0.5);
}

.footer-col ul li a {
  color: rgba(var(--white-rgb), 0.5);
  font-size: 14px;
  transition: color .2s;
}

.footer-col ul li:hover::marker,
.footer-col ul li a:hover {
  color: var(--primary);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 14px;
}

.hours-row .day {
  font-weight: 600;
  color: rgba(var(--white-rgb), 0.5);
}

.hours-row .time {
  color: rgba(var(--white-rgb), 0.5);
}

.footer-bottom {
  border-top: 1px solid rgba(var(--white-rgb), 0.2);
  padding: 10px 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(var(--white-rgb), 0.5);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  color: rgba(var(--white-rgb), 0.5);
  transition: color .2s;
}

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

.footer_poweredby{
  opacity: 0.5;
  transition: all 0.3s;
}
.footer_poweredby:hover{
  opacity: 1;
}
/* ==============================================
   RESPONSIVE BREAKPOINTS
   ============================================== */

/* Tablet */
@media (max-width: 1024px) {
  .category-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }

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

  .about-section .about-container {
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .category-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonials-track {
    grid-template-columns: 1fr 1fr;
  }

  .about-section .about-container {
    grid-template-columns: 1fr;
  }

  .about-img img {
    height: 300px;
  }

  .about-perks {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {

  
  /* Top bar */
  .header-top-info {
    gap: 12px;
    font-size: 12px;
  }

  .slider-prev,
  .slider-next {
    display: none;
  }

  /* Categories */
  .categories-section {
    padding: 60px 0;
  }

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

  /* Features */
  .features-section {
    padding: 60px 0;
  }

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

  /* About */
  .about-section {
    padding: 60px 0;
  }

  .about-section .about-container {
    gap: 30px;
  }

  .about-perks {
    grid-template-columns: 1fr;
  }

  /* Services */
  .services-section {
    padding: 60px 0;
  }

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

  /* Testimonials */
  .testimonials-section {
    padding: 60px 0;
  }

  .testimonials-track {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    padding: 30px 22px;
  }

  /* Footer */
  .footer {
    padding: 48px 0 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* Brands */
  .brands-track {
    gap: 24px;
  }

  .brand-logo {
    height: 34px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  /* Top bar — hide address on very small screens */
  .header-top-addr {
    display: none;
  }

  /* Category */
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cat-img {
    width: 64px;
    height: 64px;
  }

  /* Section headers */
  .section-header {
    margin-bottom: 32px;
  }
}


/* ==============================================
   PAGE BANNER (inner pages)
   ============================================== */
.page-banner {
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.32) 0%, transparent 70%);
  pointer-events: none;
}

.page-banner-content {
  position: relative;
  z-index: 1;
}

.page-banner-title {
  font-size: clamp(18px, 5vw, 32px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.1;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(var(--white-rgb), 0.55);
}

.breadcrumb a {
  color: var(--primary);
  transition: color .2s;
}

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

.breadcrumb span[aria-hidden] {
  color: rgba(var(--white-rgb), 0.3);
}


/* ==============================================
   CTA SECTION (shared)
   ============================================== */
.cta-section {
  padding: 72px 0;
  background: var(--primary);
}

.cta-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-content h2 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: var(--black);
  margin-bottom: 8px;
}

.cta-content p {
  font-size: 16px;
  color: rgba(var(--black-rgb), 0.7);
  margin-bottom: 0;
}

.cta-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.cta-actions .btn-outline {
  border-color: var(--black);
  color: var(--black);
}

.cta-actions .btn-outline:hover {
  background: var(--black);
  color: var(--white);
}


/* ==============================================
   SERVICES PAGE — Extended Grid
   ============================================== */
.services-intro-section {
  padding: 80px 0;
}

.services-intro-section .section-header {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.services-grid-lg {
  grid-template-columns: repeat(3, 1fr) !important;
}

.service-card {
  text-align: left;
  display: flex;
  flex-direction: column;
}

.service-card .service-icon {
  margin: 0 0 20px;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex: 1;
}

.service-list li {
  font-size: 14px;
  color: var(--body-text-color);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  border-bottom: 1px solid var(--primary-l200);
}

.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
}

.service-list li:last-child {
  border-bottom: none;
}

.service-card .btn {
  margin-top: auto;
  align-self: flex-start;
}


/* ==============================================
   CONTACT PAGE
   ============================================== */
.contact-section {
  padding: 80px 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

/* --- Form column --- */
.contact-form-header h2,
.contact-info-header h2 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: var(--black);
  margin-bottom: 10px;
}

.contact-form-header p,
.contact-info-header p {
  font-size: 15px;
  color: var(--body-text-color);
  margin-bottom: 32px;
  line-height: 1.65;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 16px;
}

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

.section-contactus-form .wr-form-group,
.form-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
}

.form-group .required {
  color: var(--primary);
}

.wr-form-group .wr-form-control,
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 15px;
  border: 1.5px solid var(--secondary-l200);
  border-radius: var(--radius);
  font-size: 15px;
  color: var(--black);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.12);
}

.form-group select {
  cursor: pointer;
  appearance: auto;
}

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

.form-consent {
  margin-top: -4px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--body-text-color);
  cursor: pointer;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--primary);
  margin-top: 1px;
  cursor: pointer;
}

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

.section-contactus-form .wr-btn.wr-btn-form-submit {
    margin-top: 22px;
    border-radius: 20px;
    padding: 8px 30PX;
    FONT-WEIGHT: 700;
    font-size: 16px;
}

/* --- Info column --- */
.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--secondary-l100);
  border-radius: var(--radius);
  padding: 20px;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--white);
}

.contact-info-text h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--body-text-color);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 4px;
}

.contact-info-text a,
.contact-info-text p {
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  line-height: 1.5;
  margin-bottom: 0;
  transition: color .2s;
}

.contact-info-text a:hover {
  color: var(--primary);
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-info-text .hours-row {
  justify-content: flex-start;
  gap: 12px;
}

.contact-info-text .hours-row .day,
.contact-info-text .hours-row .time {
  color: var(--black);
  font-size: 14px;
  font-weight: 500;
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 2px solid var(--secondary-l200);
}

.contact-map iframe {
  display: block;
}


/* ==============================================
   ABOUT PAGE — Stats & Values
   ============================================== */
.stats-section {
  padding: 64px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 32px 20px;
  border: 1px solid rgba(var(--primary-rgb), 0.2);
  border-radius: var(--radius-lg);
}

.stat-number {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  font-size: 15px;
  font-weight: 600;
  color: rgba(var(--white-rgb), 0.7);
}

.values-section {
  padding: 80px 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 20px;
}

.value-card {
  background: var(--secondary-l100);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1.5px solid transparent;
  transition: var(--transition);
}

.value-card:hover {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.value-icon {
  width: 56px;
  height: 56px;
  background: var(--primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.value-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

.value-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
}

.value-card p {
  font-size: 14.5px;
  color: var(--body-text-color);
  line-height: 1.65;
  margin-bottom: 0;
}


/* ==============================================
   BLOG LIST PAGE
   ============================================== */
.blog-section {
  padding: 72px 0;
}

.blog-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 52px;
  align-items: flex-start;
}

/* --- Post Card --- */
.blog-post-card {
  position: relative;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 28px;
  background: var(--white);
  border: 1.5px solid var(--secondary-l200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 28px;
  transition: box-shadow .25s, border-color .25s;
}

.blog-post-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.blog-post-card .post-thumbnail {
  position: relative;
  display: block;
  overflow: hidden;
  flex-shrink: 0;
}

.blog-post-card .post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
  min-height: 220px;
}

.blog-post-card:hover .post-thumbnail img {
  transform: scale(1.05);
}

.blog-post-category {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--primary);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 4px 10px;
  border-radius: 6px;
}

.blog-post-body {
  padding: 24px 24px 24px 0;
  display: flex;
  flex-direction: column;
}

.blog-post-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.blog-post-meta .posted-on,
.blog-post-meta .post-author,
.blog-post-meta .read-time {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: var(--body-text-color);
}

.blog-post-meta .posted-on svg,
.blog-post-meta .post-author svg,
.blog-post-meta .read-time svg {
  fill: var(--primary);
  flex-shrink: 0;
}

.blog-post-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
  line-height: 1.35;
}

.blog-post-title a {
  color: inherit;
  transition: color .2s;
}

.blog-post-title a:hover {
  color: var(--primary);
}

.blog-post-excerpt {
  font-size: 14.5px;
  color: var(--body-text-color);
  line-height: 1.65;
  margin-bottom: 20px;
  flex: 1;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .04em;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: border-color .2s;
  margin-top: auto;
}

.blog-read-more svg {
  fill: var(--primary);
  transition: transform .2s;
}

.blog-read-more:hover {
  border-bottom-color: var(--primary);
}

.blog-read-more:hover svg {
  transform: translateX(4px);
}

/* --- Pagination --- */
.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1.5px solid var(--secondary-l200);
}

.pagination-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  padding: 8px 16px;
  border: 1.5px solid var(--secondary-l200);
  border-radius: var(--radius);
  transition: border-color .2s, color .2s;
}

.pagination-btn svg {
  fill: currentColor;
}

.pagination-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.pagination-btn[aria-disabled="true"] {
  opacity: 0.4;
  pointer-events: none;
}

.pagination-pages {
  display: flex;
  gap: 6px;
}

.pagination-page {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  border: 1.5px solid var(--secondary-l200);
  transition: border-color .2s, background .2s, color .2s;
}

.pagination-page:hover,
.pagination-page.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

/* --- Sidebar --- */
.blog-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.blog-sidebar .widget {
  background: var(--secondary-l100);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1.5px solid var(--secondary-l200);
}

.blog-sidebar .widget-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}

.sidebar-search {
  display: flex;
  gap: 0;
  border: 1.5px solid var(--secondary-l200);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.sidebar-search input {
  flex: 1;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--black);
  border: none;
  outline: none;
  background: transparent;
}

.sidebar-search button {
  padding: 0 14px;
  background: var(--primary);
  color: var(--white);
  cursor: pointer;
  transition: background .2s;
  display: flex;
  align-items: center;
}

.sidebar-search button svg {
  fill: var(--white);
}

.sidebar-search button:hover {
  background: var(--primary-d100);
}

.sidebar-categories {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sidebar-categories .cat-item{
  position: relative;
}
.sidebar-categories .cat-item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--body-text-color);
  padding: 8px 12px;
  border-radius: 8px;
  transition: background .2s, color .2s;
}

.sidebar-categories .cat-item .cat-count {
  position: absolute;
  right: 4px;
  top: 6px;
  background: var(--secondary-l200);
  color: var(--body-text-color);
  font-size: 12px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  transition: background .2s, color .2s;
}

.sidebar-categories .cat-item a:hover {
  background: var(--primary-l100);
  color: var(--primary);
}

.sidebar-categories .cat-item:hover .cat-count {
  background: var(--primary);
  color: var(--white);
}

.sidebar-recent-posts {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sidebar-recent-posts li{
  position: relative;
}


.sidebar-recent-posts .wp-block-latest-posts__featured-image img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.sidebar-recent-posts li .wp-block-latest-posts__post-title {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--black);
  line-height: 1.35;
}
.sidebar-recent-posts li .wp-block-latest-posts__post-title::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

}
.sidebar-recent-posts li:hover .wp-block-latest-posts__post-title{
  color: var(--primary);
}

.sidebar-recent-posts li .wp-block-latest-posts__post-date {
  font-size: 12px;
  color: var(--body-text-color);
}

.blog-sidebar .widget.sidebar-cta {
  background: var(--black);
  border-color: var(--black);
  text-align: center;
}

.blog-sidebar .widget.sidebar-cta h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.blog-sidebar .widget.sidebar-cta p {
  font-size: 14px;
  color: rgba(var(--white-rgb), 0.6);
  margin-bottom: 20px;
  line-height: 1.55;
}


/* ==============================================
   BLOG POST DETAIL PAGE
   ============================================== */
.blog-post-single {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--secondary-l200);
  margin-bottom: 48px;
}

.post-header {
  padding: 36px 40px 0;
}

.post-category-badge {
  display: inline-block;
  background: var(--primary-l100);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 5px 12px;
  border-radius: 6px;
  margin-bottom: 16px;
  border: 1px solid var(--primary-l200);
}

.post-title {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 900;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 18px;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-bottom: 24px;
  border-bottom: 1.5px solid var(--secondary-l200);
}

.post-featured-image {
  overflow: hidden;
  margin: 0;
}

.post-featured-image img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  display: block;
}

.post-content {
  padding: 40px;
}

.post-lead {
  font-size: 18px;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 32px;
  font-weight: 500;
}

.post-content h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--black);
  margin: 36px 0 14px;
}

.post-content h2:first-child {
  margin-top: 0;
}

.post-content p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--body-text-color);
  margin-bottom: 18px;
}

.post-content ul,
.post-content ol {
  padding-left: 24px;
  margin-bottom: 20px;
}

.post-content ul li,
.post-content ol li {
  font-size: 16px;
  line-height: 1.7;
  color: var(--body-text-color);
  margin-bottom: 8px;
}

.post-content strong {
  color: var(--black);
  font-weight: 700;
}

.post-callout {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--primary-l100);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 28px 0;
}

.post-callout-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.post-callout-icon svg {
  fill: var(--primary);
  display: block;
}

.post-callout p {
  font-size: 15px;
  color: var(--text-mid);
  margin-bottom: 0;
  line-height: 1.6;
}

/* Tags + Share */
.post-tags,
.post-share {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 20px 40px;
  border-top: 1.5px solid var(--secondary-l200);
}

.post-tags-label,
.post-share-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: .04em;
}

.post-tags a {
  font-size: 12px;
  font-weight: 600;
  color: var(--body-text-color);
  background: var(--secondary-l100);
  border: 1px solid var(--secondary-l200);
  padding: 4px 12px;
  border-radius: 20px;
  transition: background .2s, color .2s, border-color .2s;
}

.post-tags a:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.post-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--body-text-color);
  background: var(--secondary-l100);
  border: 1px solid var(--secondary-l200);
  padding: 6px 14px;
  border-radius: 8px;
  transition: background .2s, color .2s, border-color .2s;
}

.post-share-btn svg {
  fill: currentColor;
}

.post-share-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* Post navigation */
.post-navigation .nav-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  border-top: 1.5px solid var(--secondary-l200);
}

.post-navigation .nav-links .nav-previous,
.post-navigation .nav-links .nav-next {
  box-shadow: 7px 7px 7px 0px rgba(0, 0, 0, 0.12);
  
}
.post-navigation .nav-links .nav-previous a,
.post-navigation .nav-links .nav-next a {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 28px;
  background: var(--white);
  height: 100%;
  transition: background .2s;
}

.post-navigation .nav-links .nav-previous a:hover,
.post-navigation .nav-links .nav-next a:hover {
  background: var(--primary-l100);
}

.post-navigation .nav-links .nav-previous a {
  align-items: flex-start;
}

.post-navigation .nav-links .nav-next a {
  align-items: flex-end;
  text-align: right;
}

.post-nav-label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--primary);
}

.post-nav-label svg {
  fill: var(--primary);
}

.post-nav-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  line-height: 1.35;
}

/* Related posts */
.related-posts {
  margin-top: 0;
}

.related-posts-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}

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

/* Small card variant (related posts) */
.blog-post-card-sm {
  grid-template-columns: 1fr;
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}

.blog-post-card-sm .blog-post-thumb img {
  height: 180px;
  min-height: unset;
}

.blog-post-card-sm .blog-post-body {
  padding: 18px;
}

.blog-post-card-sm .blog-post-title {
  font-size: 15px;
}


/* ==============================================
   RESPONSIVE — New Pages
   ============================================== */
@media (max-width: 1024px) {
  .services-grid-lg {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-layout {
    grid-template-columns: 1fr 280px;
    gap: 36px;
  }

  .blog-post-card {
    grid-template-columns: 260px 1fr;
  }

  .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .blog-layout {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    position: static;
  }

  .post-navigation {
    grid-template-columns: 1fr;
  }

  .post-nav-next {
    align-items: flex-start;
    text-align: left;
  }
}

@media (max-width: 768px) {
  .page-banner {
    padding: 48px 0;
  }

  .cta-container {
    flex-direction: column;
    text-align: center;
  }

  .cta-actions {
    justify-content: center;
  }

  .services-grid-lg {
    grid-template-columns: 1fr !important;
  }

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

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .blog-post-card {
    grid-template-columns: 1fr;
  }

  .blog-post-thumb img {
    height: 220px;
  }

  .blog-post-body {
    padding: 20px;
  }

  .post-header {
    padding: 24px 24px 0;
  }

  .post-content {
    padding: 24px;
  }

  .post-featured-image img {
    height: 260px;
  }

  .post-tags,
  .post-share {
    padding: 16px 24px;
  }

  .post-nav-link {
    padding: 16px 20px;
  }

  .related-posts-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .stat-item {
    padding: 24px 14px;
  }

  .blog-pagination {
    flex-wrap: wrap;
  }

  .post-meta {
    gap: 12px;
  }
}


/* ==============================================
   FINANCING PAGE
   ============================================== */

/* --- Intro --- */
.financing-intro-section {
  padding: 80px 0;
}

.financing-intro-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.financing-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--primary);
  background: var(--primary-l100);
  border: 1px solid var(--primary-l200);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.financing-intro-content h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 900;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 18px;
}

.financing-intro-content p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--body-text-color);
  margin-bottom: 16px;
}

.financing-intro-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}

.financing-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--secondary-l100);
  border: 1.5px solid var(--secondary-l200);
  border-radius: var(--radius);
  padding: 12px 16px;
}

.financing-badge svg {
  width: 20px;
  height: 20px;
  fill: var(--primary);
  flex-shrink: 0;
}

.financing-badge span {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--black);
  line-height: 1.3;
}

.financing-intro-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.financing-intro-img > img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-lg);
}


/* --- Options --- */
.financing-options-section {
  padding: 80px 0;
}

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

/* Financing Partners */
.financing-partners-section {
  padding: 80px 0;
}

.financing-partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
  align-items: stretch;
}

.financing-partner-card {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  /* border: 1px solid rgba(255, 255, 255, 0.05); */
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;  
}

.financing-partner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  /* border-color: rgba(255, 255, 255, 0.2); */
}

.financing-partner-card img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.financing-partner-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px 24px 24px;
  background: #1a1a1a;
  color: rgba(255, 255, 255, 0.85);
}

.financing-option-card {
  background: rgba(var(--white-rgb), 0.04);
  border: 1.5px solid rgba(var(--white-rgb), 0.1);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
}

.financing-option-card:hover {
  border-color: var(--primary);
  background: rgba(var(--white-rgb), 0.07);
  transform: translateY(-4px);
}

.financing-option-featured {
  background: var(--primary);
  border-color: var(--primary);
}

.financing-option-featured:hover {
  background: var(--primary-d100);
  border-color: var(--primary-d100);
  transform: translateY(-4px);
}

.financing-option-badge-top {
  position: absolute;
  top: -1px;
  right: 24px;
  background: var(--black);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 4px 12px;
  border-radius: 0 0 8px 8px;
}

.financing-option-icon {
  width: 56px;
  height: 56px;
  background: rgba(var(--white-rgb), 0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.financing-option-featured .financing-option-icon {
  background: rgba(var(--black-rgb), 0.15);
}

.financing-option-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

.financing-option-card h3 {
  font-size: 21px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.financing-option-card > p {
  font-size: 14.5px;
  color: rgba(var(--white-rgb), 0.75);
  line-height: 1.65;
  margin-bottom: 22px;
}

.financing-option-features {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.financing-option-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(var(--white-rgb), 0.85);
}

.financing-option-features li svg {
  width: 18px;
  height: 18px;
  fill: var(--primary);
  flex-shrink: 0;
}

.financing-option-featured .financing-option-features li svg {
  fill: var(--black);
}

.financing-option-ideal {
  font-size: 13px;
  color: rgba(var(--white-rgb), 0.6);
  background: rgba(var(--white-rgb), 0.08);
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 22px;
  line-height: 1.45;
}

.financing-option-ideal strong {
  color: rgba(var(--white-rgb), 0.9);
}

.financing-option-featured .btn {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.financing-option-featured .btn:hover {
  background: rgba(var(--black-rgb), 0.82);
}

/* --- How It Works --- */
.how-it-works-section {
  padding: 80px 0;
  background: rgba(var(--primary-rgb), 0.06);
}

.steps-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 20px;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.step-number {
  font-size: 60px;
  font-weight: 900;
  color: rgba(var(--primary-rgb), 0.12);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -2px;
}

.step-connector {
  position: absolute;
  top: 90px;
  left: calc(50% + 36px);
  right: calc(-50% + 36px);
  height: 2px;
  background: var(--primary-l200);
  z-index: 0;
}

.step-icon {
  width: 68px;
  height: 68px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 8px rgba(var(--primary-rgb), 0.12);
}

.step-icon svg {
  width: 30px;
  height: 30px;
  fill: var(--white);
}

.step-item h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
}

.step-item p {
  font-size: 14px;
  color: var(--body-text-color);
  line-height: 1.65;
  margin-bottom: 0;
}

/* --- Benefits --- */
.financing-benefits-section {
  padding: 80px 0;
}

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

.financing-benefit-card {
  background: rgba(var(--white-rgb), 0.04);
  border: 1.5px solid rgba(var(--white-rgb), 0.08);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: border-color .25s, background .25s;
}

.financing-benefit-card:hover {
  border-color: var(--primary);
  background: rgba(var(--primary-rgb), 0.06);
}

.financing-benefit-icon {
  width: 52px;
  height: 52px;
  background: var(--primary);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.financing-benefit-icon svg {
  width: 26px;
  height: 26px;
  fill: var(--white);
}

.financing-benefit-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.financing-benefit-card p {
  font-size: 14px;
  color: rgba(var(--white-rgb), 0.65);
  line-height: 1.65;
  margin-bottom: 0;
}

/* --- Requirements --- */
.requirements-section {
  padding: 80px 0;
}

.requirements-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  align-items: flex-start;
}

.requirements-content h2 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  color: var(--black);
  margin-bottom: 16px;
}

.requirements-content p {
  font-size: 15px;
  color: var(--body-text-color);
  line-height: 1.7;
  margin-bottom: 16px;
}

.requirements-content .btn {
  margin-top: 8px;
}

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

.requirement-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--secondary-l100);
  border: 1.5px solid var(--secondary-l200);
  border-radius: var(--radius-lg);
  padding: 20px;
  transition: border-color .2s, box-shadow .2s;
}

.requirement-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.requirement-card-note {
  background: var(--primary-l100);
  border-color: var(--primary-l200);
  grid-column: span 2;
}

.requirement-icon {
  width: 42px;
  height: 42px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.requirement-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--white);
}

.requirement-text h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
}

.requirement-text p {
  font-size: 13.5px;
  color: var(--body-text-color);
  line-height: 1.55;
  margin-bottom: 0;
}

.requirement-text a {
  color: var(--primary);
  font-weight: 600;
}

/* --- FAQ --- */
.faq-section {
  padding: 80px 0;
}

.faq-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 60px;
  align-items: flex-start;
}

.faq-header h2 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.25;
}

.faq-header p {
  font-size: 15px;
  color: rgba(var(--white-rgb), 0.6);
  line-height: 1.65;
  margin-bottom: 28px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: rgba(var(--white-rgb), 0.04);
  border: 1.5px solid rgba(var(--white-rgb), 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s;
}

.faq-item.faq-item-open {
  border-color: var(--primary);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  transition: color .2s;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-icon {
  width: 22px;
  height: 22px;
  fill: var(--primary);
  flex-shrink: 0;
  transition: transform .25s ease;
}

.faq-item-open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 22px 20px;
}

.faq-item-open .faq-answer {
  display: block;
}

.faq-answer p {
  font-size: 14.5px;
  color: rgba(var(--white-rgb), 0.65);
  line-height: 1.7;
  margin-bottom: 0;
}

/* --- Financing Responsive --- */
@media (max-width: 1100px) {
  .steps-track {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }

  .step-connector {
    display: none;
  }
}

@media (max-width: 900px) {
  .financing-intro-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .financing-intro-img img {
    height: 320px;
  }

  .financing-intro-stat {
    bottom: -16px;
    left: 16px;
  }

  .financing-options-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .financing-partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .financing-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .requirements-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

@media (max-width: 768px) {
  .financing-intro-badges {
    grid-template-columns: 1fr;
  }

  .financing-partners-grid {
    grid-template-columns: 1fr;
  }

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

  .financing-benefits-grid {
    grid-template-columns: 1fr;
  }

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

  .requirement-card-note {
    grid-column: span 1;
  }
}

/* ================================================
   RENTALS PAGE
================================================ */

/* Rates callout strip */
.rental-intro-section {
  padding: 72px 0;
}

.rental-rates-strip {
  padding-top: 0;
}

.rental-rates-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 860px;
  margin: 0 auto;
}

.rental-rate-card {
  flex: 1;
  min-width: 180px;
  background: #fff;
  border: 2px solid var(--primary);
  border-radius: 12px;
  padding: 20px 24px;
  text-align: center;
}

.rental-rate-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 6px;
}

.rental-rate-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: #111;
}

/* Equipment info section header */
.rental-section-header {
  text-align: center;
  margin-bottom: 48px;
}

.rental-section-header .section-title {
  color: #fff;
}

.rental-section-header .section-subtitle {
  color: var(--secondary-l300);
}

/* Equipment info grid */
.rental-eq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}

.rental-eq-grid:last-of-type {
  margin-bottom: 48px;
}

/* Individual equipment card */
.rental-eq-card {
  background: #1a1a1a;
  border-radius: 12px;
  padding: 32px;
  border-top: 3px solid var(--primary);
}

.rental-eq-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.rental-eq-icon {
  background: var(--primary);
  border-radius: 8px;
  padding: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rental-eq-icon svg {
  display: block;
}

.rental-eq-card h3 {
  color: #fff;
  margin: 0;
  font-size: 1.15rem;
}

.rental-eq-card p {
  color: var(--secondary-l300);
  margin-bottom: 16px;
  line-height: 1.65;
}

/* Spec pill tags */
.rental-eq-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.rental-eq-tag {
  background: #2a2a2a;
  color: var(--secondary-l200);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
}

/* Booking callout banner inside dark section */
.rental-book-banner {
  background: var(--primary);
  border-radius: 12px;
  padding: 32px 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.rental-book-banner-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.rental-book-banner-sub {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

.rental-book-banner .btn {
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .rental-book-banner {
    padding: 24px 20px;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ================================================
   FLOATING CALL BUTTON
================================================ */
.floating-call-btn {
  position: fixed;
  bottom: 132px;
  right: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 14px 16px;
  border-radius: 50px 0 0 50px;
  box-shadow: -3px 4px 18px rgba(var(--primary-rgb), 0.4);
  transition: box-shadow 0.3s ease;
  white-space: nowrap;
  overflow: hidden;
}

.floating-call-btn svg {
  flex-shrink: 0;
  fill: #fff;
  width: 20px;
  height: 20px;
}

.floating-call-btn .floating-call-label {
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  margin-left: 0;
  transition: max-width 0.35s ease, opacity 0.25s ease, margin-left 0.35s ease;
}

.floating-call-btn:hover .floating-call-label {
  max-width: 160px;
  opacity: 1;
  margin-left: 10px;
}

.floating-call-btn:hover {
  box-shadow: -4px 6px 24px rgba(var(--primary-rgb), 0.55);
}
