:root {
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Trebuchet MS", "Helvetica Neue", Arial, sans-serif;
  background: #36fde9;
  color: #f7fbff;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 5.5rem 0;
}

/* Section hooks present in the full HTML */
.services,
.products,
.reviews,
.report {
  background: transparent;
}

.eyebrow {
  margin: 0 0 1rem;
  color: #eaf8ff;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  font-size: 0.76rem;
  font-weight: 700;
}

h1,
h2,
h3,
.brand {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0.01em;
  color: #ffffff;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(8, 17, 19, 0.74);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.brand span {
  color: #ffffff;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-links a {
  color: #d3dde4;
  font-size: 0.95rem;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 100%;
  height: 2px;
  background: #ffffff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-links a:hover,
.nav-button:hover {
  opacity: 0.88;
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
}

.nav-links a.is-active {
  color: #f7fbff;
}

.nav-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.95rem 1.5rem;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.nav-button,
.button-primary {
  background: #ffffff;
  color: #1a1a1a;
  box-shadow: 0 16px 30px rgba(217, 143, 0, 0.25);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
  color: #f7fbff;
}

.nav-button:hover,
.button:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 4rem 0 5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.8rem, 8vw, 5.4rem);
  line-height: 0.98;
  margin-bottom: 1.25rem;
  max-width: 10ch;
}

.hero-text {
  max-width: 34rem;
  color: #d3dde4;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.25rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.hero-stats div {
  min-width: 120px;
}

.hero-stats strong {
  display: block;
  font-size: 1.8rem;
  font-family: Georgia, "Times New Roman", serif;
  color: #ffffff;
}

.hero-stats span {
  color: #d3dde4;
  text-transform: lowercase;
}

.hero-cards {
  display: grid;
  gap: 1rem;
}

.info-card {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.32);
}

.card-large img {
  height: 320px;
  object-fit: cover;
}

.card-content {
  padding: 1.4rem;
}

.card-label {
  color: #d3dde4;
  text-transform: uppercase;
  font-size: 0.74rem;
  letter-spacing: 0.18rem;
  margin-bottom: 0.85rem;
}

.card-content h2 {
  font-size: 1.45rem;
  line-height: 1.2;
  margin-bottom: 0;
}

.card-small {
  background: rgba(255, 255, 255, 0.06);
}

.section-heading {
  max-width: 42rem;
  margin-bottom: 2.4rem;
}

.section-heading h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  margin-bottom: 0.8rem;
}

.section-heading p:last-child {
  color: #d3dde4;
  line-height: 1.75;
}

.split-heading {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: end;
}

.service-grid,
.rental-grid,
.product-grid {
  display: grid;
  gap: 1.25rem;
}

.service-grid {
  grid-template-columns: 1.1fr 1fr 1fr 1fr;
}

.service-card,
.rental-card,
.policy-card,
.booking-panel,
.benefits-grid {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
}

.service-card {
  padding: 1.5rem;
}

.interactive-card,
.offer-card {
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.interactive-card:hover,
.offer-card:hover {
  transform: translateY(-6px);
  border-color: rgba(244, 181, 68, 0.45);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.2);
}

.offer-card {
  cursor: default;
}

.interactive-card.is-selected {
  border-color: #ffffff;
  background: linear-gradient(180deg, rgba(244, 181, 68, 0.18), rgba(255, 255, 255, 0.05));
  box-shadow: 0 18px 36px rgba(217, 143, 0, 0.2);
}

.service-card h3,
.rental-top h3,
.benefit-list h3,
.booking-copy h2,
.site-footer h3 {
  margin-bottom: 0.75rem;
}

.service-card p,
.rental-content p,
.benefit-copy p,
.benefit-list p,
.booking-copy p,
.footer-text,
.site-footer p {
  color: #d3dde4;
  line-height: 1.7;
}

.featured-service {
  background: rgba(244, 181, 68, 0.12);
}

.service-tag {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 0.82rem;
  font-weight: 600;
}

.service-card ul,
.rental-card ul {
  padding-left: 1.1rem;
  margin: 1rem 0 1.4rem;
  color: #f7fbff;
}

.service-card li,
.rental-card li {
  margin-bottom: 0.55rem;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}

.price-row strong {
  font-size: 2rem;
  color: #ffffff;
}

.price-row span {
  color: #d3dde4;
}

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

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

.product-card {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  min-height: 100%;
}

.product-card.product-click {
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.product-card.product-click:hover {
  transform: translateY(-4px);
  border-color: rgba(244, 181, 68, 0.35);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.product-image-slot {
  width: 100%;
  height: 190px;
  margin-bottom: 1.1rem;
  border-radius: var(--radius-md);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-image-slot img[src=""] {
  display: none;
}

.product-copy {
  margin-bottom: 1.4rem;
}

.product-card h3 {
  margin-bottom: 0.75rem;
}

.product-card p:last-child {
  color: #d3dde4;
  line-height: 1.7;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.review-card {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.32);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(244, 181, 68, 0.35);
}

.review-stars {
  color: #ffffff;
  font-size: 1.15rem;
  letter-spacing: 0.2rem;
  margin-bottom: 1rem;
}

.review-card h3 {
  margin-bottom: 0.35rem;
}

.review-card p {
  color: #d3dde4;
  line-height: 1.7;
}

.review-card span {
  color: #eaf8ff;
  font-size: 0.92rem;
}

.review-form-wrap {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.review-form-copy h3 {
  margin-bottom: 0.8rem;
}

.review-form-copy p:last-child {
  color: #d3dde4;
  line-height: 1.7;
}

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

.review-form label {
  display: grid;
  gap: 0.55rem;
  font-weight: 500;
}

.review-form input,
.review-form select,
.review-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-sm);
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  color: #f7fbff;
  outline: none;
}

.review-form input::placeholder,
.review-form textarea::placeholder {
  color: #8ea19c;
}

.review-form input:focus,
.review-form select:focus,
.review-form textarea:focus {
  border-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(244, 181, 68, 0.16);
}

.product-order-panel {
  margin-top: 2.4rem;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.product-order-copy h3 {
  margin-bottom: 0.8rem;
}

.product-order-copy p:last-child {
  color: #d3dde4;
  line-height: 1.7;
}

.product-payment-details {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.03);
}

.product-payment-details p {
  margin: 0 0 0.45rem;
  color: #f7fbff;
}

.product-order-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.policy-card {
  padding: 1.5rem;
}

.policy-card h3 {
  margin-bottom: 0.75rem;
}

.policy-card p {
  color: #d3dde4;
  line-height: 1.7;
}

.rental-card {
  overflow: hidden;
}

.rental-card img {
  height: 240px;
  object-fit: cover;
}

.rental-content {
  padding: 1.35rem;
}

.rental-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
}

.rental-top span {
  color: #ffffff;
  font-weight: 700;
}

.rental-prompt {
  margin-top: 0.4rem;
  color: #eaf8ff;
  font-size: 0.92rem;
  font-weight: 600;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
  padding: 1.5rem;
}

.benefit-copy {
  padding: 1rem;
}

.benefit-copy h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.benefit-list article {
  padding: 1.25rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
}

.booking-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
  padding: 1.5rem;
}

.booking-copy {
  padding: 1rem;
}

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

.booking-form label,
.product-order-form label {
  display: grid;
  gap: 0.55rem;
  font-weight: 500;
}

.rental-location-field {
  display: none;
}

.rental-location-field.is-visible {
  display: grid;
}

.rental-days-field {
  display: none;
}

.rental-days-field.is-visible {
  display: grid;
}

.rental-transmission-field {
  display: none;
}

.rental-transmission-field.is-visible {
  display: grid;
}

.booking-form input,
.booking-form select,
.booking-form textarea,
.product-order-form input,
.product-order-form select,
.product-order-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-sm);
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  color: #f7fbff;
  outline: none;
}

.booking-form select option,
.product-order-form select option,
.review-form select option,
.rental-variant-select option {
  color: #111a1d;
  background: #f7f4ed;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder,
.product-order-form input::placeholder,
.product-order-form textarea::placeholder {
  color: #8ea19c;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus,
.product-order-form input:focus,
.product-order-form select:focus,
.product-order-form textarea:focus {
  border-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(244, 181, 68, 0.16);
}

.form-message {
  margin: 0;
  min-height: 1.5rem;
  font-size: 0.95rem;
  color: #eaf8ff;
}

.booking-message,
.review-message {
  color: #eaf8ff;
}

.form-message.is-success {
  color: #9ee6b2;
}

.form-message.is-error {
  color: #ffb4a2;
}

.rental-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 40;
}

.rental-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.rental-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 11, 12, 0.72);
  backdrop-filter: blur(8px);
}

.rental-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(560px, calc(100% - 2rem));
  padding: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-lg);
  background: #0f1618;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.35);
}

.rental-modal-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 2.3rem;
  height: 2.3rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #f7fbff;
  cursor: pointer;
}

.rental-modal-text {
  color: #d3dde4;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.rental-option-list {
  display: grid;
  gap: 0.9rem;
}

.rental-variant-wrap {
  display: grid;
  gap: 0.9rem;
}

.rental-variant-label {
  color: #f7fbff;
  font-weight: 600;
}

.rental-variant-select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-md);
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  color: #f7fbff;
  outline: none;
}

.rental-variant-select:focus {
  border-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(244, 181, 68, 0.16);
}

.rental-option-button {
  width: 100%;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-md);
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.05);
  color: #f7fbff;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.rental-option-button:hover {
  transform: translateY(-2px);
  border-color: rgba(244, 181, 68, 0.45);
  background: rgba(244, 181, 68, 0.1);
}

.full-width {
  grid-column: 1 / -1;
}

.site-footer {
  padding: 2rem 0 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1.5rem;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-text {
  max-width: 28rem;
}

.social-link {
  color: #eaf8ff;
  font-weight: 600;
}

.social-link:hover {
  color: #ffffff;
}

@media (max-width: 1200px) {
  .nav-links {
    gap: 1rem;
  }

  .hero-grid,
  .benefits-grid,
  .booking-panel,
  .review-form-wrap,
  .product-order-panel {
    grid-template-columns: 1fr;
  }

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

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

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

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

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

@media (max-width: 900px) {
  .service-grid,
  .product-grid,
  .review-grid,
  .policy-grid {
    grid-template-columns: 1fr;
  }

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

  .benefit-list,
  .booking-form,
  .review-form,
  .product-order-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .footer-grid,
  .booking-panel,
  .benefits-grid,
  .review-form-wrap,
  .product-order-panel {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: none;
  }
}

@media (max-width: 600px) {
  .navbar {
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .section {
    padding: 4rem 0;
  }

  .card-large img,
  .rental-card img {
    height: 220px;
  }

  .hero {
    padding-top: 2.5rem;
  }
}

/* Grey + orange theme override */
body {
  background: #14181b;
  color: #f4f1ea;
}

h1,
h2,
h3,
.brand {
  color: #fdfbf7;
}

.eyebrow,
.review-card span,
.rental-prompt,
.social-link {
  color: #ffdca0;
}

.hero-text,
.service-card p,
.rental-content p,
.benefit-copy p,
.benefit-list p,
.booking-copy p,
.footer-text,
.site-footer p,
.review-card p,
.review-form-copy p,
.product-card p:last-child,
.product-order-copy p:last-child {
  color: #b9c2bf;
}

.site-header {
  background: rgba(8, 17, 19, 0.74);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.nav-links a::after {
  background: #f4b544;
}

.nav-button,
.button-primary {
  background: #f4b544;
  color: #1a1a1a;
  box-shadow: 0 16px 30px rgba(217, 143, 0, 0.25);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: #f4f1ea;
}

.info-card,
.service-card,
.rental-card,
.product-card,
.review-card,
.review-form-wrap,
.product-order-panel,
.booking-panel,
.policy-card,
.benefits-grid,
.rental-modal-dialog,
.rental-option-button,
.product-image-slot {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.28);
}

.featured-service {
  background: rgba(244, 181, 68, 0.12);
}

.interactive-card:hover,
.offer-card:hover,
.product-card.product-click:hover,
.review-card:hover {
  border-color: rgba(244, 181, 68, 0.35);
}

.interactive-card.is-selected {
  border-color: #f4b544;
  background: linear-gradient(180deg, rgba(244, 181, 68, 0.18), rgba(255, 255, 255, 0.05));
  box-shadow: 0 18px 36px rgba(217, 143, 0, 0.2);
}

.review-form input,
.review-form select,
.review-form textarea,
.booking-form input,
.booking-form select,
.booking-form textarea,
.product-order-form input,
.product-order-form select,
.product-order-form textarea,
.rental-variant-select {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: #f4f1ea;
}

.review-form input::placeholder,
.review-form textarea::placeholder,
.booking-form input::placeholder,
.booking-form textarea::placeholder,
.product-order-form input::placeholder,
.product-order-form textarea::placeholder {
  color: #8ea19c;
}

.review-form input:focus,
.review-form select:focus,
.review-form textarea:focus,
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus,
.product-order-form input:focus,
.product-order-form select:focus,
.product-order-form textarea:focus,
.rental-variant-select:focus {
  border-color: #f4b544;
  box-shadow: 0 0 0 3px rgba(244, 181, 68, 0.16);
}

.rental-modal-backdrop {
  background: rgba(5, 11, 12, 0.72);
}

/* Smaller "Send Report" button */
.report-form .button {
  padding: 0.7rem 1.1rem;
  font-size: 0.95rem;
}

.report-form .button.full-width {
  width: 12.5%;
  margin: 0 auto;
  display: block;
}

/* Reduce booking button width */
.booking-form .button.full-width {
  width: 50%;
  margin: 0 auto;
  display: block;
}

/* Reduce submit order button width */
.product-order-form .button.full-width {
  width: 50%;
  margin: 0 auto;
  display: block;
}
