/* ============================================
   MARLOWS TYRE & VALETING CENTRE - Styles
   ============================================ */

/* Brand Color Palette */
:root {
  --white: #FFFFFF;
  --off-white: #F4F4F2;
  --deep-charcoal: #17191B;
  --safety-yellow: #F5E500;
  --bright-yellow: #FFE900;
  --steel-grey: #565D63;
  --light-line: #E2E4E0;
  --industrial-green: #35A853;
  --bg-3: #FAFAF7;
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Space Grotesk', var(--font-primary);
  
  /* Spacing */
  --section-padding: 80px 0;
  --container-width: 1200px;
  --border-radius: 8px;
  --border-radius-lg: 12px;
}

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  color: var(--deep-charcoal);
  line-height: 1.6;
  background: var(--white);
}

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

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

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p {
  color: var(--steel-grey);
  font-size: 1.05rem;
}

/* ============================================
   TOPBAR
   ============================================ */
.topbar {
  background: var(--bg-3);
  border-bottom: 1px solid var(--light-line);
  padding: 10px 0;
  font-size: 0.9rem;
}

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

.topbar__left {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.topbar__item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--steel-grey);
}

.topbar__item svg {
  width: 16px;
  height: 16px;
  fill: var(--steel-grey);
}

.topbar__right {
  display: flex;
  gap: 12px;
}

.topbar__social {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--light-line);
  transition: all 0.3s ease;
}

.topbar__social:hover {
  background: var(--safety-yellow);
}

.topbar__social svg {
  width: 16px;
  height: 16px;
  fill: var(--deep-charcoal);
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--light-line);
  padding: 0;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 12px;
}

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

.logo__icon {
  width: 52px;
  height: 52px;
  background: var(--safety-yellow);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo__icon svg {
  width: 32px;
  height: 32px;
  fill: var(--deep-charcoal);
}

.logo__text {
  display: flex;
  flex-direction: column;
}

.logo__name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--deep-charcoal);
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.logo__tagline {
  font-size: 0.75rem;
  color: var(--steel-grey);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.nav a {
  padding: 10px 16px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--deep-charcoal);
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
}

.nav a:hover {
  background: var(--off-white);
}

.nav a.active {
  color: var(--deep-charcoal);
  font-weight: 600;
}

.nav__cta {
  background: var(--safety-yellow) !important;
  font-weight: 600 !important;
  margin-left: 8px;
}

.nav__cta:hover {
  background: var(--bright-yellow) !important;
  transform: translateY(-1px);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--deep-charcoal);
  transition: all 0.3s ease;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--deep-charcoal) 0%, #2a2d30 100%);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../gallery/Hero image.png');
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(23, 25, 27, 0.92) 0%, rgba(23, 25, 27, 0.7) 100%);
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__content {
  max-width: 560px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 229, 0, 0.15);
  border: 1px solid rgba(245, 229, 0, 0.3);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--safety-yellow);
  margin-bottom: 24px;
}

.hero__badge svg {
  width: 16px;
  height: 16px;
  fill: var(--safety-yellow);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero h1 span {
  color: var(--safety-yellow);
}

.hero__description {
  color: #a8abb0;
  font-size: 1.1rem;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--border-radius);
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.btn--primary {
  background: var(--safety-yellow);
  color: var(--deep-charcoal);
}

.btn--primary:hover {
  background: var(--bright-yellow);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 229, 0, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.btn--whatsapp {
  background: var(--industrial-green);
  color: var(--white);
}

.btn--whatsapp:hover {
  background: #2d9249;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(53, 168, 83, 0.3);
}

.btn svg {
  width: 20px;
  height: 20px;
}

.hero__stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__stat {
  text-align: center;
}

.hero__stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--safety-yellow);
}

.hero__stat-label {
  font-size: 0.85rem;
  color: #a8abb0;
}

.hero__visual {
  position: relative;
}

.hero__card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-lg);
  padding: 32px;
  color: var(--white);
}

.hero__card-title {
  font-size: 1rem;
  color: #a8abb0;
  margin-bottom: 16px;
}

.hero__card-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.hero__card-stars {
  display: flex;
  gap: 2px;
}

.hero__card-stars svg {
  width: 20px;
  height: 20px;
  fill: var(--safety-yellow);
}

.hero__card-score {
  font-weight: 700;
  font-size: 1.1rem;
}

.hero__card-count {
  color: #a8abb0;
  font-size: 0.9rem;
}

.hero__card-services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero__card-tag {
  background: rgba(245, 229, 0, 0.15);
  color: var(--safety-yellow);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
  padding: var(--section-padding);
  background: var(--off-white);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.section-header__label {
  display: inline-block;
  background: rgba(245, 229, 0, 0.15);
  color: var(--deep-charcoal);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.1rem;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--light-line);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--safety-yellow);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  background: var(--off-white);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-card__icon svg {
  width: 28px;
  height: 28px;
  fill: var(--deep-charcoal);
}

.service-card h3 {
  margin-bottom: 12px;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--deep-charcoal);
  margin-top: 16px;
  transition: gap 0.3s ease;
}

.service-card__link:hover {
  gap: 10px;
  color: var(--steel-grey);
}

.service-card p {
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.service-card__price {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--deep-charcoal);
  font-size: 1.1rem;
}

.service-card__price span {
  font-weight: 400;
  color: var(--steel-grey);
  font-size: 0.85rem;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  padding: var(--section-padding);
  background: var(--white);
}

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

.about__image {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}

.about__image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
}

.about__badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--safety-yellow);
  color: var(--deep-charcoal);
  padding: 16px 24px;
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  gap: 12px;
}

.about__badge svg {
  width: 24px;
  height: 24px;
}

.about__badge-text {
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.3;
}

.about__content h2 {
  margin-bottom: 20px;
}

.about__content p {
  margin-bottom: 16px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
  margin-bottom: 32px;
}

.about__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.about__feature svg {
  width: 20px;
  height: 20px;
  fill: var(--industrial-green);
  flex-shrink: 0;
}

/* ============================================
   REVIEWS SECTION
   ============================================ */
.reviews {
  padding: var(--section-padding);
  background: var(--deep-charcoal);
}

.reviews .section-header__label {
  background: rgba(245, 229, 0, 0.15);
}

.reviews .section-header h2 {
  color: var(--white);
}

.reviews .section-header p {
  color: #a8abb0;
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}

.review-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-lg);
  padding: 32px;
  transition: all 0.3s ease;
}

.review-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.review-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}

.review-card__stars svg {
  width: 18px;
  height: 18px;
  fill: var(--safety-yellow);
}

.review-card__text {
  color: #d1d3d8;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

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

.review-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--safety-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--deep-charcoal);
  font-size: 1.1rem;
}

.review-card__name {
  font-weight: 600;
  color: var(--white);
  font-size: 0.95rem;
}

.review-card__source {
  color: #a8abb0;
  font-size: 0.85rem;
}

.review-card--light {
  background: var(--white);
  border: 1px solid var(--light-line);
}

.review-card--light .review-card__text {
  color: var(--steel-grey);
}

.review-card--light .review-card__name {
  color: var(--deep-charcoal);
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery {
  padding: var(--section-padding);
  background: var(--off-white);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 16px;
}

.gallery__item {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery__item:hover img {
  transform: scale(1.05);
}

.gallery__item--large {
  grid-column: span 2;
  grid-row: span 2;
}

/* ============================================
   CTA / BOOKING SECTION
   ============================================ */
.cta {
  padding: var(--section-padding);
  background: var(--white);
}

.cta__inner {
  background: linear-gradient(135deg, var(--safety-yellow) 0%, var(--bright-yellow) 100%);
  border-radius: 16px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.cta__content h2 {
  color: var(--deep-charcoal);
  margin-bottom: 16px;
}

.cta__content p {
  color: var(--deep-charcoal);
  opacity: 0.8;
  font-size: 1.1rem;
  margin-bottom: 28px;
}

.cta__form {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 36px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}

.cta__form h3 {
  margin-bottom: 24px;
  font-size: 1.2rem;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--deep-charcoal);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--light-line);
  border-radius: var(--border-radius);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
  background: var(--bg-3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--safety-yellow);
  box-shadow: 0 0 0 3px rgba(245, 229, 0, 0.15);
}

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

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

/* ============================================
   CONTACT / MAP SECTION
   ============================================ */
.contact {
  padding: var(--section-padding);
  background: var(--bg-3);
}

.contact .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact__icon {
  width: 48px;
  height: 48px;
  background: var(--safety-yellow);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact__icon svg {
  width: 22px;
  height: 22px;
  fill: var(--deep-charcoal);
}

.contact__item-title {
  font-weight: 600;
  margin-bottom: 4px;
}

.contact__item-text {
  font-size: 0.95rem;
  color: var(--steel-grey);
}

.contact__item-text a {
  color: var(--steel-grey);
  transition: color 0.3s ease;
}

.contact__item-text a:hover {
  color: var(--safety-yellow);
}

.contact__map {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid var(--light-line);
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
}

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

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__brand p {
  color: #a8abb0;
  margin-top: 16px;
  font-size: 0.95rem;
  max-width: 300px;
}

.footer h4 {
  font-size: 0.95rem;
  margin-bottom: 20px;
  color: var(--white);
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a {
  color: #a8abb0;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer__links a:hover {
  color: var(--safety-yellow);
}

.footer__hours {
  color: #a8abb0;
  font-size: 0.9rem;
  line-height: 2;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__bottom p {
  color: #6b6e73;
  font-size: 0.85rem;
}

.footer__bottom-links {
  display: flex;
  gap: 20px;
}

.footer__bottom-links a {
  color: #6b6e73;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footer__bottom-links a:hover {
  color: var(--safety-yellow);
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--industrial-green);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(53, 168, 83, 0.4);
  z-index: 999;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background: #2d9249;
  box-shadow: 0 8px 30px rgba(53, 168, 83, 0.5);
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(53, 168, 83, 0.5);
  animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.service-card.reveal:nth-child(2),
.review-card.reveal:nth-child(2) {
  transition-delay: 0.1s;
}

.service-card.reveal:nth-child(3),
.review-card.reveal:nth-child(3) {
  transition-delay: 0.2s;
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(23, 25, 27, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 40px;
  animation: lightbox-fade 0.3s ease;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 3rem;
  cursor: pointer;
  line-height: 1;
  transition: transform 0.3s ease;
}

.lightbox__close:hover {
  transform: rotate(90deg);
  color: var(--safety-yellow);
}

@keyframes lightbox-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 52px;
    height: 52px;
  }
}

/* ============================================
   SECONDARY SEO LANDING PAGES
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--deep-charcoal) 0%, #2a2d30 100%);
  color: var(--white);
  padding: 96px 0 64px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../gallery/Hero image.png') center/cover no-repeat;
  opacity: 0.1;
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero .breadcrumbs {
  margin-bottom: 18px;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero p {
  color: #d1d3d8;
  max-width: 720px;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.page-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.breadcrumbs {
  font-size: 0.85rem;
  color: #a8abb0;
}

.breadcrumbs a {
  color: var(--safety-yellow);
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.breadcrumbs span {
  color: #a8abb0;
}

.pagemain {
  padding: var(--section-padding);
  background: var(--white);
}

.pagemain--alt {
  background: var(--off-white);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.two-col h2 {
  margin-bottom: 16px;
}

.prose p {
  margin-bottom: 16px;
  line-height: 1.8;
  font-size: 1.05rem;
}

.prose h3 {
  margin: 28px 0 12px;
  color: var(--deep-charcoal);
}

.prose ul {
  margin: 0 0 20px 20px;
}

.prose li {
  color: var(--steel-grey);
  margin-bottom: 8px;
  line-height: 1.7;
}

.content-block {
  padding: var(--section-padding);
}

.content-block--alt {
  background: var(--off-white);
}

.content-block .section-header {
  margin-bottom: 44px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.info-card {
  background: var(--white);
  border: 1px solid var(--light-line);
  border-radius: var(--border-radius-lg);
  padding: 28px;
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.info-card h3 {
  margin-bottom: 12px;
}

.info-card p {
  font-size: 0.95rem;
}

.info-card__price {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--deep-charcoal);
  font-size: 1.15rem;
  margin-top: 14px;
}

.info-card__price span {
  font-weight: 400;
  color: var(--steel-grey);
  font-size: 0.85rem;
}

.nap-box {
  background: var(--deep-charcoal);
  color: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 32px;
}

.nap-box h3 {
  color: var(--safety-yellow);
  margin-bottom: 16px;
}

.nap-box p {
  color: #d1d3d8;
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.nap-box a {
  color: var(--safety-yellow);
}

.faq {
  max-width: 800px;
  margin: 0 auto;
}

.faq__item {
  border: 1px solid var(--light-line);
  border-radius: var(--border-radius);
  background: var(--white);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq__item summary {
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 600;
  font-family: var(--font-heading);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--safety-yellow);
  line-height: 1;
}

.faq__item[open] summary::after {
  content: '\2013';
}

.faq__item p {
  padding: 0 22px 20px;
  font-size: 0.98rem;
}

.cta-strip {
  background: linear-gradient(135deg, var(--safety-yellow) 0%, var(--bright-yellow) 100%);
  border-radius: 16px;
  padding: 44px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-strip h2 {
  color: var(--deep-charcoal);
  margin-bottom: 8px;
}

.cta-strip p {
  color: var(--deep-charcoal);
  opacity: 0.8;
}

.cta-strip .btn--primary {
  background: var(--deep-charcoal);
  color: var(--white);
}

.cta-strip .btn--primary:hover {
  background: #2a2d30;
  box-shadow: 0 8px 25px rgba(23, 25, 27, 0.35);
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}

.brand-chip {
  background: var(--off-white);
  border: 1px solid var(--light-line);
  border-radius: var(--border-radius);
  padding: 12px 16px;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--deep-charcoal);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
  background: var(--white);
  border: 1px solid var(--light-line);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.price-table th,
.price-table td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--light-line);
  font-size: 0.95rem;
}

.price-table th {
  background: var(--off-white);
  font-weight: 600;
  font-family: var(--font-heading);
}

.price-table tbody tr:last-child td {
  border-bottom: none;
}

.price-table tbody tr:hover td {
  background: var(--bg-3);
}

.checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 8px;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 0.98rem;
}

.checklist-item svg {
  width: 20px;
  height: 20px;
  fill: var(--industrial-green);
  flex-shrink: 0;
}

.review-cta {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

@media (max-width: 900px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero__content {
    max-width: 100%;
  }
  
  .hero__actions {
    justify-content: center;
  }
  
  .hero__stats {
    justify-content: center;
  }
  
  .hero__visual {
    display: none;
  }
  
  .about .container {
    grid-template-columns: 1fr;
  }
  
  .cta__inner {
    grid-template-columns: 1fr;
    padding: 40px;
  }
  
  .contact .container {
    grid-template-columns: 1fr;
  }
  
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .topbar .container {
    flex-direction: column;
    text-align: center;
  }
  
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    border-bottom: 1px solid var(--light-line);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  }
  
  .nav.active {
    display: flex;
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  .nav__cta {
    margin-left: 0;
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  
  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
  }
  
  .gallery__item--large {
    grid-column: span 2;
    grid-row: span 1;
  }
  
  .cta__inner {
    padding: 32px;
  }
  
  .footer__grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .hero__stats {
    flex-direction: column;
    gap: 20px;
  }
  
  .about__features {
    grid-template-columns: 1fr;
  }
  
  .reviews__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .gallery__grid {
    grid-template-columns: 1fr;
  }
  
  .gallery__item--large {
    grid-column: span 1;
  }
}
