@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");

:root {
  --ink: #0e0f10;
  --ink-soft: #1b1c1e;
  --line: rgba(255, 255, 255, 0.16);
  --gold: #b79a5d;
  --paper: #f5f3ef;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: "Jost", sans-serif;
}
h1,
h2,
h3,
h4,
h5,
.brand-word {
  font-family: "Bebas Neue", sans-serif !important;
  letter-spacing: 2px;
}

/* ===== Header ===== */
/* .site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0));
  padding-top: 0.35rem;
}
.header-top {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.85rem 1.75rem 0.6rem;
}
.header-top a img {
  width: 70%;
}
.icon-btn {
  background: none;
  border: 0;
  color: #fff;
  padding: 0.35rem;
  line-height: 1;
  cursor: pointer;
  justify-self: start;
  display: none;
}
.icon-btn svg {
  width: 22px;
  height: 22px;
}
.logo-mark {
  grid-column: 2;
}
.header-actions {
  grid-column: 3;
  justify-self: end;
}

.logo-mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 500;
}
.logo-mark svg {
  width: 34px;
  height: 20px;
}
.logo-mark span {
  color: #f2efe9;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.btn-ghost-outline {
  border: 1px solid rgba(255, 255, 255, 0.75);
  color: #fff;
  background: transparent;
  padding: 0.5rem 1.15rem;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  border-radius: 2px;
  transition: 0.25s ease;
  white-space: nowrap;
}
.btn-ghost-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.btn-solid-light {
  background: #f2efe9;
  color: var(--ink);
  border: 1px solid #f2efe9;
  padding: 0.5rem 1.15rem;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  border-radius: 2px;
  transition: 0.25s ease;
  white-space: nowrap;
}
.btn-solid-light:hover {
  background: #fff;
  color: var(--ink);
}

Nav links row below the logo
.header-nav {
  display: flex;
  justify-content: center;
  gap: 2.4rem;
  padding: 0.55rem 1rem 0.9rem;
  border-bottom: 1px solid var(--line);
}
.header-nav a {
  color: rgb(255, 255, 255);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 400;
  position: relative;
  padding-bottom: 0.3rem;
  transition: color 0.2s ease;
}
.header-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.header-nav a:hover {
  color: #fff;
}
.header-nav a:hover::after {
  width: 100%;
}

@media (max-width: 900px) {
  .header-nav {
    gap: 1.2rem;
    flex-wrap: wrap;
  }
  .header-nav a {
    font-size: 0.72rem;
  }
}
@media (max-width: 620px) {
  .header-top {
    grid-template-columns: auto 1fr auto;
  }
  .icon-btn {
    display: block;
  }
  .header-actions .btn-ghost-outline {
    display: none;
  }
} */

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0));
    padding-top: 0.35rem;
  }
  .header-top {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.85rem 1.75rem 0.6rem;
    position: relative; /* ADDED: lets the hamburger sit at the left without breaking centering */
  }
  .header-top a img { width: 150px; } /* was 70%; fixed px so it doesn't blow up in this demo */
  .icon-btn {
    background: none;
    border: 0;
    color: #fff;
    padding: 0.35rem;
    line-height: 1;
    cursor: pointer;
    display: none; /* hidden on desktop, shown on mobile below */
  }
  .icon-btn svg { width: 22px; height: 22px; }

  .header-nav {
    display: flex;
    justify-content: center;
    gap: 2.4rem;
    padding: 0.55rem 1rem 0.55rem;
    border-bottom: 1px solid var(--line);
  }
  .header-nav a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 400;
    position: relative;
    padding-bottom: 0.3rem;
    transition: color 0.2s ease;
  }
  .header-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 1px;
    background: var(--gold);
    transition: width 0.25s ease;
  }
  .header-nav a:hover { color: #fff; }
  .header-nav a:hover::after { width: 100%; }

  @media (max-width: 900px) {
    .header-nav { gap: 1.2rem; flex-wrap: wrap; }
    .header-nav a { font-size: 0.72rem; }
  }
  @media (max-width: 620px) {
    .icon-btn {
      display: block;
      position: absolute;
      left: 1.25rem;
      top: 50%;
      transform: translateY(-50%);
    }
  }

  /* ===== NEW: Models dropdown ===== */
  .nav-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.4rem;
  }
  .nav-item-caret {
    background: none;
    border: 0;
    padding: 0.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    margin-top: -5px;
  }
  .nav-item-caret .caret {
    width: 6px;
    height: 6px;
    border-right: 1px solid rgba(255, 255, 255, 0.75);
    border-bottom: 1px solid rgba(255, 255, 255, 0.75);
    transform: rotate(45deg);
    transition: transform 0.2s ease;
  }
  .nav-item-caret[aria-expanded="true"] .caret { transform: rotate(-135deg); }

  .models-dropdown {
    display: none;
    background: rgba(12, 12, 12, 0.97);
    border: 1px solid var(--line);
    border-top: 2px solid var(--gold);
    padding: 1.75rem;
  }
  .models-dropdown.show { display: block; }

  .models-dropdown-title {
    text-align: center;
    color: rgba(242, 239, 233, 0.55);
    font-size: 0.66rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    margin: 0 0 1.25rem;
  }
  .model-card { text-decoration: none; display: block; }
  .model-card-img {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border: 1px solid var(--line);
    background: #0f0f0f;
  }
  .model-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
  .model-card:hover .model-card-img img { transform: scale(1.08); }
  .model-card-name {
    display: block;
    margin-top: 0.55rem;
    color: #f2efe9;
    font-size: 0.75rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
  }
  .model-card-btn {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 0.64rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(255, 255, 255, 0.28);
    padding: 0.3rem 0.75rem;
    transition: 0.25s ease;
  }
  .model-card:hover .model-card-btn { background: var(--gold); color: #0a0a0a; border-color: var(--gold); }

  /* Desktop (>620px, matches your existing breakpoint): floating centered panel */
  @media (min-width: 621px) {
    .models-dropdown {
      position: absolute;
      top: calc(100% + 9px);
      left: 400%;
      transform: translateX(-50%);
      width: min(90vw, 100vw);
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
      z-index: 60;
    }
  }

  /* Mobile (≤620px): header-nav becomes a slide-down panel, Models becomes an accordion */
  @media (max-width: 620px) {
    .header-nav-panel {
      display: none;
      background: rgba(10, 10, 10, 0.97);
    }
    .header-nav-panel.show { display: block; }
    .header-nav {
      flex-direction: column;
      gap: 0;
      border-bottom: none;
      padding: 0;
    }
    .header-nav > a,
    .nav-item {
      width: 100%;
      padding: 0.9rem 1.5rem;
      border-bottom: 1px solid var(--line);
      justify-content: space-between;
    }
    .models-dropdown {
      width: 100%;
      border-left: none;
      border-right: none;
      box-shadow: none;
    }
    .models-dropdown-grid { grid-template-columns: repeat(2, 1fr) !important; }
  }











/* ===== Hero Slider (Swiper) ===== */
.hero-carousel {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh; /* better on mobile browsers with address bars */
  min-height: 560px;
  overflow: hidden;
}
.hero-carousel .swiper-wrapper,
.hero-carousel .swiper-slide {
  height: 100%;
}

.hero-slide {
  position: relative;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.15) 42%,
    rgba(0, 0, 0, 0.35) 100%
  );
}

.hero-slide.slide-1 {
  background: url(../images/aston-martin-db5/aston-martin-db5.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.hero-slide.slide-2 {
  background: url(../images/mercedes-280-sl-pagoda/mercedes-280-sl-pagoda.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.hero-slide.slide-3 {
  background: url(../images/jaguar-e-type/jaguar-e-type.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-slide.slide-video {
  background-color: #000;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 5;
  padding: 0 clamp(1.25rem, 4vw, 4.5rem) clamp(3.5rem, 7vw, 5rem);
  max-width: 900px;
}
.hero-content .eyebrow {
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}
.hero-content h1 {
  font-size: clamp(2.4rem, 5.2vw, 4.4rem);
  font-weight: 500;
  line-height: 1.05;
  margin-bottom: 1.75rem;
  color: #fff;
}
.hero-content .btn-explore {
  background: #f2efe9;
  color: var(--ink);
  border: none;
  padding: 0.85rem 2.1rem;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: 0.25s ease;
}
.hero-content .btn-explore:hover {
  background: var(--gold);
  color: #fff;
}

/* Nav arrows */
.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 6;
  width: 6%;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}
.hero-carousel .carousel-control-prev { left: 0; }
.hero-carousel .carousel-control-next { right: 0; }

.arrow-circle {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.15);
  transition: 0.25s ease;
}
.arrow-circle:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}
.arrow-circle svg {
  width: 20px;
  height: 20px;
}

/* Play/pause toggle */
.hero-carousel .carousel-toggle {
  position: absolute;
  right: clamp(1.25rem, 4vw, 3rem);
  bottom: 1.4rem;
  z-index: 6;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}
.hero-carousel .carousel-toggle .arrow-circle {
  width: 40px;
  height: 40px;
}
.hero-carousel .carousel-toggle svg {
  width: 16px;
  height: 16px;
}

/* Pagination — same thin-bar look as the Bootstrap indicators */
.hero-carousel .hero-pagination {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 1.6rem;
  z-index: 6;
  display: flex;
  gap: 0.4rem;
  width: auto;
}
.hero-carousel .hero-pagination .swiper-pagination-bullet {
  width: 34px;
  height: 3px;
  border-radius: 2px;
  background-color: rgba(255, 255, 255, 0.4);
  opacity: 1;
  margin: 0;
  transition: background-color 0.25s ease;
}
.hero-carousel .hero-pagination .swiper-pagination-bullet-active {
  background-color: #f2efe9;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .hero-carousel .carousel-control-prev,
  .hero-carousel .carousel-control-next {
    width: 12%;
  }
  .arrow-circle {
    width: 38px;
    height: 38px;
  }
  .arrow-circle svg {
    width: 16px;
    height: 16px;
  }
  .hero-carousel .carousel-toggle .arrow-circle {
    width: 34px;
    height: 34px;
  }
  .hero-carousel .hero-pagination .swiper-pagination-bullet {
    width: 22px;
  }
}

@media (max-width: 480px) {
  .hero-carousel .carousel-control-prev,
  .hero-carousel .carousel-control-next {
    display: none; /* swipe gesture replaces them on small screens */
  }
}


/* Model Section */

.model-section {
  padding-top: 70px;
}

.model-head h2 {
  font-size: clamp(2.4rem, 5.2vw, 4.4rem);
  font-weight: 500;
  line-height: 1.05;
}

.model-head p {
  font-size: 17px;
  padding-inline: 200px;
  line-height: 28px;
}

.showcase{
    padding: 0px 0 70px;
  }

  .showcase__kicker{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:18px;
    margin-bottom: 56px;
  }
  .showcase__kicker span{
    font-size:.72rem;
    letter-spacing:.42em;
    text-transform:uppercase;
    color: var(--brass);
    white-space:nowrap;
  }
  .showcase__kicker::before,
  .showcase__kicker::after{
    content:"";
    height:1px;
    width:64px;
    background: linear-gradient(90deg, transparent, var(--line));
  }
  .showcase__kicker::after{
    background: linear-gradient(90deg, var(--line), transparent);
  }

  /* ---- Card ---- */
  .car-card{
    position:relative;
    display:block;
    aspect-ratio: 1 / 0.8;
    width:100%;
    overflow:hidden;
    text-decoration:none;
    background: var(--panel);
    box-shadow: 0 24px 55px -22px rgba(202, 202, 202, 0.75);
    transition: box-shadow .5s ease;
  }
  .car-card:hover,
  .car-card:focus-visible{
    box-shadow:
      0 30px 65px -18px rgba(0,0,0,.85),
      inset 0 0 0 1px var(--brass-soft);
  }
  .car-card:focus-visible{
    outline: 2px solid var(--brass);
    outline-offset: 5px;
  }

  .car-card__media{
    position:absolute;
    inset:0;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 1.15s cubic-bezier(.16,.8,.24,1);
    will-change: transform;
  }
  .car-card:hover .car-card__media,
  .car-card:focus-visible .car-card__media{
    transform: scale(1.13);
  }

  /* legibility gradient, sits above the image */
  .car-card::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:1;
    background: linear-gradient(180deg,
      rgba(0,0,0,.38) 0%,
      rgba(0,0,0,.05) 32%,
      rgba(0,0,0,.12) 55%,
      rgba(0,0,0,.48) 100%);
    transition: background .5s ease;
  }
  .car-card:hover::before{
    background: linear-gradient(180deg,
      rgba(0,0,0,.40) 0%,
      rgba(0,0,0,.1) 32%,
      rgba(0,0,0,.18) 55%,
      rgba(0,0,0,.42) 100%);
  }

  .car-card__content{
    position:absolute;
    inset:0;
    z-index:2;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    padding: 30px 26px 26px;
  }

  .car-card__eyebrow{
    margin:0;
    text-align:center;
    font-size:.76rem;
    letter-spacing:.28em;
    text-transform:uppercase;
    color: #fff;
  }

  .car-card__title{
    margin:0;
    text-align:center;
    font-weight:400;
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    line-height:1;
    color: #fff;
    text-shadow: 0 6px 28px rgba(0,0,0,.55);
  }

  .car-card__cta{
    position:relative;
    align-self:center;
    padding-bottom:3px;
    font-size: 12px;
    letter-spacing:.10em;
    text-transform:uppercase;
    color: #d1b67c;
    border-bottom: 1px solid #d1b67c;
  }
  .car-card__cta::after{
    content:"";
    position:absolute;
    left:50%;
    bottom:0;
    width:0;
    height:1px;
    background: var(--brass);
    transform: translateX(-50%);
    transition: width .45s ease;
  }
  .car-card:hover .car-card__cta::after,
  .car-card:focus-visible .car-card__cta::after{
    width:48px;
  }

  /* signature: engraver's corner brackets, draw in on hover */
  .car-card__corner{
    position:absolute;
    z-index:2;
    width:22px;
    height:22px;
    border: 1.5px solid var(--brass);
    opacity:0;
    transition: opacity .5s ease, transform .5s ease;
  }
  .car-card__corner--tl{ top:16px; left:16px; border-right:none; border-bottom:none; transform:translate(-6px,-6px); }
  .car-card__corner--tr{ top:16px; right:16px; border-left:none;  border-bottom:none; transform:translate(6px,-6px); }
  .car-card__corner--bl{ bottom:16px; left:16px; border-right:none; border-top:none; transform:translate(-6px,6px); }
  .car-card__corner--br{ bottom:16px; right:16px; border-left:none;  border-top:none; transform:translate(6px,6px); }

  .car-card:hover .car-card__corner,
  .car-card:focus-visible .car-card__corner{
    opacity:1;
    transform:translate(0,0);
  }
  .car-card:hover .car-card__corner--tr,
  .car-card:hover .car-card__corner--bl{ transition-delay:.05s; }
  .car-card:hover .car-card__corner--br{ transition-delay:.1s; }

  @media (max-width: 767px){
    .showcase{ padding: 0px 0 70px; }
    .showcase__kicker{ margin-bottom:40px; }
  }

  @media (prefers-reduced-motion: reduce){
    .car-card__media,
    .car-card__cta::after,
    .car-card__corner,
    .car-card{ transition: none !important; }
  }







/* About Section */

.about-section {
  background: url(../images/about.webp);
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 90vh;
  padding: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about h3 {
  font-size: clamp(2.4rem, 5.2vw, 4.4rem);
  font-weight: 500;
  line-height: 1.05;
  /* color: #d1b67c; */
  text-align: center;
  background: radial-gradient(199.88% 142.18% at 0 0,
          /* #d1b67c 0%, */
          #dbbc78 19%,
          #f8db9b 46.5%,
          #dbbc78 95%);

      -webkit-background-clip: text;
      background-clip: text;

      -webkit-text-fill-color: transparent;
      color: transparent;
}

.about p {
  color: #fff;
  padding-inline: 250px;
  line-height: 28px;
  font-size: 17px;
  letter-spacing: 1px;
}


/* Trust section */

.trust {
  padding-block: 70px;
}

.trust-card {
  min-height: 200px;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-direction: column;
  color: #fff;
  background: url(../images/trust-background.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.trust-card img {
  width: 20%;
}

.trust-card h4 {
  font-size: clamp(1.4rem, 2.2vw, 2.4rem);
  font-weight: 500;
  line-height: 1.05;
}




/* Kit section */

.kits-section {
  padding-top: 70px;
}

.kit-card h3 {
  font-size: clamp(2.4rem, 5.2vw, 4.4rem);
}

.kit-card p {
  margin-bottom: 40px;
}

.kit-card a {
  background-color: var(--gold);
  color: #fff;
  text-decoration: none;
  border-style: none;
  border-color: currentcolor;
  border-image: none;
  padding: 0.85rem 2.1rem;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: 0.25s;
}

.kit-card a:hover {
  background-color: #d1b67c;
}




/* CTA section */

.cta-section {
  background-color: #f3f3f3;
  padding-block: 70px;
  color: #000;
}

.cta-white {
  background-color: #fff;
}

.cta h3 {
  font-size: clamp(1.4rem, 2.2vw, 2.4rem);
  font-weight: 500;
  line-height: 1.05;
}

.cta p {
  font-size: 17px;
  line-height: 28px;
  margin-bottom: 30px !important;
}

.cta a {
  background-color: var(--gold);
  color: #fff;
  text-decoration: none;
  border-style: none;
  border-color: currentcolor;
  border-image: none;
  padding: 0.85rem 2.1rem;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: 0.25s;
}

.cta a:hover {
  background-color: #d1b67c;
  transition: 0.2s ease-in-out;
}

.social-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.social-links h3 {
  font-size: clamp(1.4rem, 2.2vw, 2.4rem);
  font-weight: 500;
  line-height: 1.05;
}

.social-links p {
  font-size: 17px;
  line-height: 28px;
  margin-bottom: 30px !important;
  text-align: right;
}

.social-icons {
  display: flex;
  justify-content: space-between;
  width: 45%;
}

.social-icons span {
  padding: 10px 12px;
  /* background-color: #000; */
}

.social-icons span i {
  color: var(--gold);
  font-size: 25px;
  transition: 0.2s ease;
}

.social-icons span i:hover {
  color: #d1b67c;
  transition: 0.2s ease-in-out;
}


/* Footer section */

.footer {
  background-color: #000;
  padding-block: 70px;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo img {
  width: 20%;
}

.footer-links ul {
  margin-top: 30px;
  padding-left: 0px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  list-style-type: none;
  border-bottom: 1px solid #4e4e4e;
  padding-bottom: 30px;
}

.footer-links ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 0.85rem;
  transition: 0.2s ease;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.06em;
} 

.footer-links ul li a:hover {
  color: var(--gold);
  transition: 0.2s ease-in-out;
} 

.footer-bottom p {
  margin-top: 30px;
  text-align: center;
  color: var(--paper);
  font-size: 17px;
}


/* Media Quries Css */


@media (max-width: 992px) {
  .about p {
    padding-inline: 0px;
  }
  
  .model-head p {
    padding-inline: 0px;
  }

  .footer-links ul li {
    padding: 10px 10px;
  }

  .footer-logo img {
    width: 35%;
  }
}

@media (max-width: 576px) {
  .social-icons {
    width: 70%;
  }

  .footer-logo img {
    width: 50%;
  }
}

@media (max-width: 576px) {
.social-links {
    align-items: flex-start;
  }

  .social-links p {
    text-align: left;
    
  }

  .social-icons {
    justify-content: flex-start;
    gap: 18px;
  }

  .cta-section {
    padding-block: 45px;
  }

  .cta a {
    display: block;
    /* width: 100%; */
    text-align: center;
    width: 50%;
  }

  .social-icons {
    gap: 12px;
  }

}

/* Permanent Floating Glass Disclaimer Box */
.glass-disclaimer-box {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
  max-width: 340px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  
  /* Glassmorphism Effect */
  background: rgba(14, 15, 16, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(183, 154, 93, 0.45);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  
  color: #ffffff;
  font-family: "Jost", sans-serif;
}

/* Icon Box */
.disclaimer-icon-wrap {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: rgba(183, 154, 93, 0.15);
  border: 1px solid #b79a5d;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.disclaimer-icon-wrap i {
  color: #b79a5d;
  font-size: 18px;
}

/* Content Area */
.disclaimer-content {
  flex-grow: 1;
}

.disclamer-head {
  display: flex;
  justify-content: space-between;
}

.disclamer-head button {
  border: none;
  padding: 0px 10px;
  margin-bottom: 5px;
  color: var(--gold);
}

.disclaimer-badge {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #b79a5d;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.disclaimer-text {
  font-size: 12px !important;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 !important;
}

.disclaimer-text strong {
  color: #ffffff;
  font-weight: 600;
}

/* Mobile Responsive Adjustments */
@media (max-width: 576px) {
  .glass-disclaimer-box {
    left: 15px;
    right: 15px;
    bottom: 15px;
    max-width: calc(100% - 30px);
    padding: 12px 14px;
  }
}