/* ============================================
   ROAD RUNNER TIRE SERVICE — DESIGN SYSTEM
   Navy Blue & Red Theme
   ============================================ */

/* ----- Custom Properties ----- */
:root {
  --color-bg-primary: #0A1628;
  --color-bg-secondary: #0F2259;
  --color-bg-tertiary: #1B3A8C;
  --color-surface: #122040;
  --color-accent: #E42528;
  --color-accent-hover: #FF3538;
  --color-accent-secondary: #F4A261;
  --color-blue: #4A90D9;
  --color-blue-hover: #3A7BC8;
  --color-text: #F5F5F5;
  --color-text-secondary: #8BA3C7;
  --color-text-muted: #7B9BC5;
  --color-success: #2ECC71;
  --color-border: #1E3A6E;

  --font-heading: 'Barlow Condensed', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  --shadow-card: 0 4px 24px rgba(5, 10, 30, 0.5);
  --shadow-elevated: 0 8px 32px rgba(5, 10, 30, 0.7);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

input, select, textarea {
  font-family: var(--font-body);
  font-size: 16px;
}

.hidden {
  display: none !important;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}


/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 64px;
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: background 0.3s;
}

.nav__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav__logo-img {
  height: 50px;
  width: auto;
  display: block;
}

.nav__links {
  display: none;
  gap: 32px;
}

.nav__link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  transition: color 0.2s;
  letter-spacing: 0.5px;
}

.nav__link:hover,
.nav__link.active {
  color: var(--color-text);
}

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

/* Language Toggle */
.lang-toggle {
  display: flex;
  background: var(--color-surface);
  border-radius: 20px;
  overflow: hidden;
}

.lang-toggle__btn {
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: all 0.2s;
  border-radius: 20px;
}

.lang-toggle__btn.active {
  background: var(--color-accent);
  color: white;
}

/* Phone Button */
.nav__phone {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--color-accent);
  border-radius: 50%;
  color: white;
  transition: background 0.2s;
}

.nav__phone:hover {
  background: var(--color-accent-hover);
}

/* Hamburger */
.nav__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
}

.nav__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text);
  transition: all 0.3s;
  border-radius: 2px;
}

.nav__hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 22, 40, 0.98);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.mobile-menu__link {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 32px;
  color: var(--color-text);
  text-transform: uppercase;
  transition: color 0.2s;
}

.mobile-menu__link:hover {
  color: var(--color-accent);
}

.mobile-menu__lang {
  display: flex;
  gap: 8px;
}

.mobile-menu__lang .lang-toggle__btn {
  padding: 10px 20px;
  font-size: 16px;
}


/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 130px 20px 48px;
  background:
    linear-gradient(135deg, rgba(10, 22, 40, 0.85), rgba(15, 34, 89, 0.9)),
    radial-gradient(ellipse at 20% 50%, rgba(228, 37, 40, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(74, 144, 217, 0.08) 0%, transparent 50%),
    var(--color-bg-primary);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(74, 144, 217, 0.015) 2px,
      rgba(74, 144, 217, 0.015) 4px
    );
  pointer-events: none;
}

.hero__logo-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 450px;
  height: 450px;
  background: url('../images/logo.webp') center / contain no-repeat;
  opacity: 0.1;
  filter: blur(0.5px);
  pointer-events: none;
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero__badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 20px;
  color: var(--color-accent-secondary);
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero__headline {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(28px, 8vw, 48px);
  line-height: 1.05;
  color: var(--color-text);
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 2px;
  white-space: nowrap;
}

.hero__sub {
  font-size: 18px;
  color: var(--color-text-secondary);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.hero__rating-text {
  font-size: 14px;
  color: var(--color-text-secondary);
  font-weight: 500;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-text-muted);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-8px); }
  60% { transform: translateX(-50%) translateY(-4px); }
}


/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  min-height: 48px;
  text-decoration: none;
}

.btn--primary {
  background: var(--color-accent);
  color: white;
}

.btn--primary:hover {
  background: var(--color-accent-hover);
  transform: scale(1.02);
}

.btn--outline {
  background: transparent;
  color: var(--color-text);
  border: 2px solid var(--color-blue);
}

.btn--outline:hover {
  border-color: var(--color-text);
  background: rgba(74, 144, 217, 0.1);
}

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

.btn--sm {
  padding: 10px 20px;
  font-size: 14px;
  min-height: 40px;
}


/* ============================================
   STARS
   ============================================ */
.stars {
  display: inline-flex;
  gap: 2px;
}

.star {
  width: 20px;
  height: 20px;
}

.star--filled {
  fill: var(--color-accent-secondary);
}

.stars--small .star {
  width: 16px;
  height: 16px;
}


/* ============================================
   SECTIONS (shared)
   ============================================ */
.section {
  padding: 80px 0;
}

.section--alt {
  background: var(--color-bg-secondary);
}

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

.section__label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  color: #F45B5E;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 12px;
}

.section__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 36px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-text);
}

.section__line {
  width: 60px;
  height: 3px;
  background: var(--color-accent);
  margin: 16px auto 0;
  border-radius: 2px;
}

.section__sub {
  margin-top: 16px;
  font-size: 16px;
  color: var(--color-text-secondary);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}


/* ============================================
   SERVICES
   ============================================ */
.services__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.services__grid > .service-card {
  width: 100%;
}

.service-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border-top: 3px solid var(--color-accent);
  box-shadow: var(--shadow-card);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elevated);
}

.service-card__icon {
  color: var(--color-blue);
  margin-bottom: 16px;
}

.service-card__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--color-text);
}

.service-card__desc {
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-bottom: 12px;
  line-height: 1.5;
}

.service-card__price {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-accent-secondary);
}

/* Price list for detailed pricing cards */
.price-list {
  list-style: none;
  margin: 0 0 16px 0;
  padding: 0;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 14px;
  color: var(--color-text-secondary);
  border-bottom: 1px solid var(--color-border);
}

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

.price-list li strong {
  color: var(--color-accent-secondary);
  font-family: var(--font-heading);
  font-weight: 700;
}

.service-card__disclaimer {
  font-size: 12px;
  color: var(--color-text-muted);
  font-style: italic;
  margin-bottom: 16px;
}

.service-card__book {
  margin-top: auto;
}


/* ============================================
   PROMO BANNER (self-contained, removable)
   ============================================ */
.promo-banner {
  background: var(--color-accent);
  color: white;
  overflow: hidden;
  padding: 10px 0;
  position: fixed;
  top: 65px;
  left: 0;
  right: 0;
  z-index: 999;
}

.promo-banner__track {
  display: flex;
  animation: promo-scroll 25s linear infinite;
  width: max-content;
}

.promo-banner__content {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  padding: 0 40px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
}

.promo-banner__content span {
  opacity: 1;
  color: rgba(255, 255, 255, 0.95);
}

.promo-banner__content .promo-banner__highlight {
  opacity: 1;
  font-weight: 700;
  color: #FFF;
}

.promo-banner__content .promo-banner__separator {
  opacity: 0.4;
  font-size: 18px;
}

@keyframes promo-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .promo-banner__track {
    animation: none;
    justify-content: center;
    flex-wrap: wrap;
  }
  .promo-banner__content:nth-child(2) {
    display: none;
  }
}


/* ============================================
   WHY US
   ============================================ */
.why-us__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.why-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.why-card__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(74, 144, 217, 0.12);
  border-radius: var(--radius-md);
  color: var(--color-blue);
}

.why-card__text h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--color-text);
}

.why-card__text p {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.6;
}


/* ============================================
   GALLERY — Side-to-Side Slider
   ============================================ */
.gallery {
  overflow: hidden;
}

.gallery__track-wrapper {
  overflow: hidden;
  width: 100%;
}

.gallery__track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: gallery-slide 25s linear infinite;
}

.gallery__slide {
  position: relative;
  flex-shrink: 0;
  width: 280px;
  height: 220px;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 2px solid var(--color-border);
  box-shadow: var(--shadow-card);
}

.gallery__slide img,
.gallery__slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 14px;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.9), transparent);
  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@keyframes gallery-slide {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* ============================================
   BOOKING
   ============================================ */
.page-booking .booking {
  padding-top: 70px;
  padding-bottom: 0;
}

.page-booking .section__header {
  margin-bottom: 16px;
}

.page-booking .section__sub {
  margin-bottom: 0;
}

.booking__card {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 4px;
  box-shadow: var(--shadow-elevated);
  border: 1px solid var(--color-border);
}

.setmore-embed {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.setmore-embed iframe {
  display: block;
  width: 100%;
  min-height: 700px;
  border: none;
  border-radius: var(--radius-md);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-weight: 500;
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--color-bg-primary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-blue);
  box-shadow: 0 0 0 3px rgba(74, 144, 217, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-muted);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%235A7399' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

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

.form-group .error-msg {
  display: none;
  font-size: 12px;
  color: var(--color-accent);
  margin-top: 4px;
}

.form-group.has-error input,
.form-group.has-error select {
  border-color: var(--color-accent);
}

.form-group.has-error .error-msg {
  display: block;
}

/* Booking Success */
.booking__success {
  text-align: center;
  padding: 32px 16px;
}

.booking__success svg {
  margin: 0 auto 16px;
}

.booking__success h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 28px;
  color: var(--color-success);
  margin-bottom: 8px;
}

.booking__success p {
  color: var(--color-text-secondary);
  margin-bottom: 24px;
}


/* ============================================
   REVIEWS
   ============================================ */
.reviews__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-weight: 500;
  color: var(--color-text-secondary);
}

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

.review-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-card);
  border-left: 3px solid var(--color-blue);
}

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

.review-card__stars .star {
  width: 16px;
  height: 16px;
  fill: var(--color-accent-secondary);
}

.review-card__text {
  font-size: 15px;
  font-style: italic;
  color: var(--color-text);
  line-height: 1.6;
  margin-bottom: 16px;
}

.review-card__author {
  display: block;
  font-weight: 500;
  font-size: 14px;
  color: var(--color-text);
}

.review-card__source {
  font-size: 12px;
  color: var(--color-text-muted);
}

.reviews__cta {
  text-align: center;
  margin-top: 40px;
}


/* ============================================
   ABOUT / LOCATION
   ============================================ */
.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

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

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

.about__detail svg {
  flex-shrink: 0;
  color: var(--color-blue);
  margin-top: 2px;
}

.about__detail strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 4px;
  color: var(--color-text);
}

.about__detail a {
  color: var(--color-accent-secondary);
  transition: color 0.2s;
}

.about__detail a:hover {
  color: var(--color-accent);
}

.hours-table {
  border-collapse: collapse;
  margin-top: 4px;
}

.hours-table td {
  padding: 4px 16px 4px 0;
  font-size: 14px;
  color: var(--color-text-secondary);
}

.hours-table td:first-child {
  color: var(--color-text);
  font-weight: 500;
  min-width: 100px;
}

.hours-table--closed td {
  color: var(--color-accent) !important;
}

.about__map iframe {
  width: 100%;
  border-radius: var(--radius-md);
}


/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #060E1C;
  border-top: 1px solid var(--color-border);
  padding: 48px 0 24px;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer__logo-img {
  height: 64px;
  width: auto;
  display: block;
}

.footer__tagline {
  color: var(--color-text-secondary);
  font-size: 14px;
  margin-top: 12px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.footer__heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--color-text);
}

.footer__links a {
  display: block;
  font-size: 14px;
  color: var(--color-text-secondary);
  padding: 4px 0;
  transition: color 0.2s;
}

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

.footer__contact p,
.footer__contact a {
  display: block;
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.footer__contact a:hover {
  color: var(--color-blue);
}

.footer__bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: var(--color-text-muted);
}


/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================
   FLATPICKR NAVY OVERRIDES
   ============================================ */
.flatpickr-calendar {
  background: var(--color-surface) !important;
  border: 1px solid var(--color-border) !important;
  box-shadow: var(--shadow-elevated) !important;
  border-radius: var(--radius-md) !important;
}

.flatpickr-months .flatpickr-month,
.flatpickr-current-month .flatpickr-monthDropdown-months {
  background: var(--color-surface) !important;
  color: var(--color-text) !important;
}

.flatpickr-current-month input.cur-year {
  color: var(--color-text) !important;
}

span.flatpickr-weekday {
  color: var(--color-text-muted) !important;
  background: var(--color-surface) !important;
}

.flatpickr-day {
  color: var(--color-text) !important;
  border-color: transparent !important;
}

.flatpickr-day:hover {
  background: var(--color-bg-secondary) !important;
  border-color: var(--color-bg-secondary) !important;
}

.flatpickr-day.selected {
  background: var(--color-accent) !important;
  border-color: var(--color-accent) !important;
  color: white !important;
}

.flatpickr-day.flatpickr-disabled {
  color: var(--color-text-muted) !important;
  opacity: 0.4;
}

.flatpickr-day.today {
  border-color: var(--color-blue) !important;
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  fill: var(--color-text) !important;
  color: var(--color-text) !important;
}

.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg {
  fill: var(--color-accent) !important;
}


/* ============================================
   RESPONSIVE — TABLET (768px+)
   ============================================ */
@media (min-width: 768px) {
  .hero__logo-bg {
    width: 600px;
    height: 600px;
  }

  .hero__headline {
    font-size: clamp(48px, 7vw, 64px);
  }

  .services__grid > .service-card {
    width: calc(50% - 10px);
  }

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

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

  .form-group--full {
    grid-column: 1 / -1;
  }

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

  .gallery__slide {
    width: 340px;
    height: 260px;
  }

  .about__grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .booking__card {
    padding: 40px 32px;
  }
}


/* ============================================
   RESPONSIVE — DESKTOP (1024px+)
   ============================================ */
@media (min-width: 1024px) {
  .nav__links {
    display: flex;
  }

  .nav__hamburger {
    display: none;
  }

  .nav__phone {
    display: none;
  }

  .hero__logo-bg {
    width: 750px;
    height: 750px;
  }

  .hero__headline {
    font-size: clamp(56px, 5vw, 72px);
  }

  .hero__sub {
    font-size: 20px;
  }

  .section {
    padding: 100px 0;
  }

  .section__title {
    font-size: 42px;
  }

  .services__grid > .service-card {
    width: calc(33.333% - 14px);
  }

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

  .gallery__slide {
    width: 420px;
    height: 320px;
  }

  .gallery__caption {
    font-size: 17px;
  }
}

/* Large desktop: 4-column services */
@media (min-width: 1280px) {
  .services__grid > .service-card {
    width: calc(25% - 15px);
  }
}
