/* ---------------------------------------------------------------------------
   Home section 04 - luxury / performance vehicles.

   Markup: components/home/PremiumSection.tsx. Everything is scoped under
   .gg-premium so none of it can reach the cloned WordPress markup, and the file
   loads after the theme stylesheets so the theme cannot win on specificity.
--------------------------------------------------------------------------- */

.gg-premium {
  background: #fff;
  padding: 110px 0;
}

.gg-premium__inner {
  max-width: 1330px;
  margin: 0 auto;
  padding: 0 15px;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
  gap: 70px;
  /* The image is a full-height card beside the copy, not a centred thumbnail. */
  align-items: stretch;
}

/* --- image card ---------------------------------------------------------- */

.gg-premium__media {
  position: relative;
  margin: 0;
  border-radius: 5px;
  overflow: hidden;
  background: #111;
  min-height: 620px;
}

.gg-premium__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gg-premium__badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 18px;
  border-radius: 999px;
  background: rgba(17, 14, 16, 0.88);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  backdrop-filter: blur(4px);
}

.gg-premium__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--primary-color);
  flex: 0 0 auto;
}

/* --- copy ---------------------------------------------------------------- */

/* Match home Services eyebrow (Elementor accent + theme default). */
.gg-premium__eyebrow {
  display: inline-block;
  margin: 0 0 4px;
  color: #D70005;
  font-family: "Inclusive Sans", Sans-serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.5;
}

.gg-premium__title {
  margin: 0 0 22px;
  color: var(--secondary-color);
  font-family: "Inclusive Sans", Sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
}

.gg-premium__lede {
  margin: 0 0 34px;
  color: #4e4e4e;
  font-size: 16px;
  line-height: 1.78;
}

/* --- features ------------------------------------------------------------ */

.gg-premium__features {
  margin: 0 0 36px;
  padding: 0;
  list-style: none;
  border-top: 1px solid #e8e8e8;
}

.gg-premium__features li {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid #e8e8e8;
}

.gg-premium__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 5px;
  background: rgba(var(--primary-color-rgb), 0.09);
  color: var(--primary-color);
  font-size: 21px;
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.gg-premium__features li:hover .gg-premium__icon {
  background: var(--primary-color);
  color: #fff;
}

.gg-premium__features h3 {
  margin: 0 0 7px;
  color: var(--secondary-color);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}

.gg-premium__features p {
  margin: 0;
  color: #6b6b6b;
  font-size: 15px;
  line-height: 1.65;
}

/* --- call to action ------------------------------------------------------ */

.gg-premium__cta {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 17px 34px;
  border-radius: 5px;
  background: var(--primary-color);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.gg-premium__cta:hover,
.gg-premium__cta:focus-visible {
  background: #b00005;
  color: #fff;
  transform: translateY(-2px);
}

.gg-premium__cta i {
  font-size: 17px;
}

/* --- responsive ---------------------------------------------------------- */

@media screen and (max-width: 1199px) {
  .gg-premium {
    padding: 80px 0;
  }
  .gg-premium__inner {
    gap: 46px;
  }
  .gg-premium__title {
    font-size: 38px;
  }
}

@media screen and (max-width: 991px) {
  .gg-premium__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 38px;
  }
  .gg-premium__media {
    min-height: 380px;
  }
}

@media screen and (max-width: 575px) {
  .gg-premium {
    padding: 60px 0;
  }
  .gg-premium__title {
    font-size: 30px;
  }
  .gg-premium__features li {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 14px;
  }
  .gg-premium__icon {
    width: 46px;
    height: 46px;
    border-radius: 5px;
    font-size: 18px;
  }
  .gg-premium__badge {
    left: 14px;
    bottom: 14px;
    font-size: 13px;
    padding: 9px 15px;
  }
}
