@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap');

@font-face {
  font-family: 'Batman Forever';
  src: url('batmfa__.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Batman Forever Outline';
  src: url('batmfo__.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ===== GLOBAL STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --green: #111111;
  --green-light: #222222;
  --gold: #FF5E14;
  --gold-light: #ff7a40;
  --dark: #0d0d0d;
  --gray-dark: #222222;
  --gray: #555555;
  --gray-light: #f5f5f5;
  --white: #ffffff;
  --font: 'Manrope', sans-serif;
}

html { scroll-behavior: smooth; }

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

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

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

/* ===== NAVIGATION ===== */
nav {
  background-image: url('Checker%20Plate%203.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 0 5%;
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.6);
  border-bottom: 3px solid var(--gold);
}

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

.nav-logo .logo-icon {
  width: 82px;
  height: 82px;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-text .brand {
  color: #ffffff;
  font-family: 'Batman Forever', sans-serif;
  font-size: 1.05rem;
  font-weight: normal;
  letter-spacing: 1.5px;
}

.nav-logo-text .tagline-small {
  display: none;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2px;
}

.nav-links a {
  color: #ccc;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s;
  letter-spacing: 0.3px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  background: rgba(255,94,20,0.1);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #fff !important;
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 10px 18px;
  border-radius: 4px;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
  margin-left: 16px;
}

.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.nav-cta svg {
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .nav-cta { font-size: 0.75rem; padding: 8px 14px; margin-left: 8px; }
}

@media (max-width: 768px) {
  .nav-cta {
    display: none;
  }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--dark);
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,94,20,0.35);
}

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

.btn-outline:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-2px);
}

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

.btn-green:hover {
  background: var(--green-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

/* ===== SECTION HEADERS ===== */
.section-label {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 600px;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

.divider {
  width: 60px;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
  margin: 16px 0 24px;
}

.divider.center { margin: 16px auto 24px; }

/* ===== HERO ===== */
.hero {
  background-image: url('cart-2seater.jpg');
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 5%;
}

/* Dark overlay so text stays crisp over the photo */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,13,13,0.85) 0%,
    rgba(13,13,13,0.55) 50%,
    rgba(13,13,13,0.75) 100%
  );
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,94,20,0.15);
  border: 1px solid rgba(255,94,20,0.3);
  color: var(--gold);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: 3.8rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

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

.hero-desc {
  color: #cccccc;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

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

.hero-visual {
  position: relative;
}

.hero-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,94,20,0.2);
  border-radius: 16px;
  padding: 16px;
  backdrop-filter: blur(10px);
  animation: heroCardFloat 6s ease-in-out infinite;
}

@keyframes heroCardFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}

.hero-photo-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  line-height: 0;
}

.hero-photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 50%,
    rgba(8,13,36,0.7) 100%
  );
  border-radius: 12px;
}

.hero-photo {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  transition: transform 0.6s ease;
}

.hero-card:hover .hero-photo {
  transform: scale(1.04);
}

.golf-cart-illustration {
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
}

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

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

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }
.fade-up:nth-child(6) { transition-delay: 0.5s; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.stat-item {
  text-align: center;
  padding: 16px;
  background: rgba(255,94,20,0.08);
  border-radius: 10px;
  border: 1px solid rgba(255,94,20,0.15);
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  color: #aaaaaa;
  margin-top: 4px;
  letter-spacing: 0.5px;
}

/* ===== CHECKER PLATE STRIP ===== */
.checker-strip {
  height: 18px;
  background-color: #FF5E14;
  background-image:
    repeating-linear-gradient(
      45deg,
      rgba(0,0,0,0.15) 0px,
      rgba(0,0,0,0.15) 2px,
      transparent 2px,
      transparent 8px
    ),
    repeating-linear-gradient(
      -45deg,
      rgba(0,0,0,0.15) 0px,
      rgba(0,0,0,0.15) 2px,
      transparent 2px,
      transparent 8px
    );
  width: 100%;
}

/* ===== FEATURES STRIP ===== */
.features-strip {
  background: var(--green);
  padding: 20px 5%;
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #cccccc;
  font-size: 0.9rem;
  font-weight: 500;
}

.feature-item svg {
  color: var(--gold);
  flex-shrink: 0;
}

/* ===== SECTIONS ===== */
section {
  padding: 90px 5%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== WHY US ===== */
.why-us {
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 50px;
  border-top: 1px solid #e8e8e8;
  border-left: 1px solid #e8e8e8;
}

.why-card {
  padding: 32px 28px;
  border-right: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
  transition: background 0.2s;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; bottom: 0;
  background: var(--gold);
  transform: scaleY(0);
  transition: transform 0.25s;
  transform-origin: top;
}

.why-card:hover {
  background: rgba(255,94,20,0.03);
}

.why-card:hover::before {
  transform: scaleY(1);
}

.why-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,94,20,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  transition: background 0.2s;
}

.why-card:hover .why-icon {
  background: rgba(255,94,20,0.18);
}

.why-card-text {}

.why-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.why-card p {
  color: var(--gray);
  font-size: 0.88rem;
  line-height: 1.65;
}

/* ===== KARTS SHOWCASE ===== */
.karts-showcase {
  background: var(--gray-light);
}

.karts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}

.kart-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.kart-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.15);
}

.kart-img {
  height: 200px;
  background: linear-gradient(135deg, #111111, #222222);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.kart-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.kart-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.kart-info a.btn {
  margin-top: auto;
}

.kart-info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.kart-info p {
  color: var(--gray);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.kart-specs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.spec-tag {
  background: var(--gray-light);
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid #ddd;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background-color: #111111;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 10px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 10px);
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  padding: 80px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,94,20,0.1) 0%, transparent 65%);
}

.cta-banner > * { position: relative; z-index: 1; }

.cta-banner h2 {
  color: var(--white);
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.cta-banner p {
  color: #cccccc;
  font-size: 1.05rem;
  margin-bottom: 36px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background-color: #111111;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.025) 0px, rgba(255,255,255,0.025) 1px, transparent 1px, transparent 10px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.025) 0px, rgba(255,255,255,0.025) 1px, transparent 1px, transparent 10px),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.045) 0px, rgba(255,255,255,0.045) 1px, transparent 1px, transparent 5px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.045) 0px, rgba(255,255,255,0.045) 1px, transparent 1px, transparent 5px);
  padding: 72px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--gold);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 120%, rgba(255,94,20,0.12) 0%, transparent 60%);
}

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

.page-hero h1 {
  color: var(--white);
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 14px;
}

.page-hero h1 span { color: var(--gold); }

.page-hero p {
  color: #cccccc;
  font-size: 1.05rem;
  max-width: 550px;
  margin: 0 auto;
}

/* ===== ABOUT PAGE ===== */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  margin-top: 10px;
}

.about-image-box {
  background: linear-gradient(135deg, #111111, #222222);
  border-radius: 16px;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-image-box::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 120px; height: 120px;
  background: var(--gold);
  opacity: 0.15;
  border-radius: 50% 0 0 0;
}

.about-text .section-subtitle {
  max-width: 100%;
  margin-bottom: 24px;
}

.about-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--gray);
}

.about-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23111' stroke-width='3'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

.values-section {
  background: var(--gray-light);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.value-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px 22px;
  text-align: center;
  border-bottom: 4px solid var(--gold);
  transition: transform 0.3s;
}

.value-card:hover {
  transform: translateY(-4px);
}

.value-icon {
  width: 56px;
  height: 56px;
  background: rgba(255,94,20,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--gold);
}

.value-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
}

.team-section {}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.team-card {
  text-align: center;
}

.team-avatar {
  width: 110px;
  height: 110px;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  border: 4px solid var(--gold);
}

.team-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.team-card .role {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 10px;
}

.team-card p {
  color: var(--gray);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ===== GOLF KART PAGE ===== */
.karts-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  margin-top: 10px;
}

.kart-full-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  border: 1px solid #e8e8e8;
  transition: all 0.3s;
}

.kart-full-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.14);
  transform: translateY(-5px);
  border-color: var(--gold);
}

.kart-full-img {
  height: 240px;
  background: linear-gradient(135deg, #111111, #222222);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* golf-carts.html product grid */
.carts-full-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.cart-full-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
}

.cart-full-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cart-full-body h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.cart-full-body .cart-desc {
  color: var(--gray);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 20px;
  flex: 1;
}

/* shared class used in golf-carts.html */
.cart-full-img {
  height: 240px;
  background: linear-gradient(135deg, #111111, #222222);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.cart-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.kart-full-body {
  padding: 28px;
}

.kart-full-body h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.kart-full-body .kart-desc {
  color: var(--gray);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 20px;
}

.kart-specs-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 22px;
}

.kart-specs-list li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.85rem;
  color: var(--gray);
}

.kart-specs-list li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
}

.kart-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid #eee;
}

.kart-price {
  font-size: 0.82rem;
  color: var(--gray);
}

.kart-price strong {
  font-size: 1.3rem;
  color: var(--green);
  display: block;
}

.services-section {
  background: var(--gray-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.service-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px 22px;
  text-align: center;
  transition: all 0.3s;
}

.service-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}

.service-icon {
  font-size: 2.4rem;
  margin-bottom: 14px;
}

.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  margin-top: 10px;
}

.contact-info h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.contact-info p {
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 30px;
  font-size: 0.95rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.contact-icon {
  width: 46px;
  height: 46px;
  background: rgba(255,94,20,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-item-text strong {
  display: block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 3px;
}

.contact-item-text span {
  font-size: 0.95rem;
  color: var(--dark);
  line-height: 1.5;
}

.contact-form-box {
  background: var(--gray-light);
  border-radius: 16px;
  padding: 40px;
}

.contact-form-box h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.contact-form-box > p {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 28px;
}

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

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

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-family: var(--font);
  font-size: 0.92rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(255,94,20,0.1);
}

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

/* ===== MAP PLACEHOLDER ===== */
.map-section {
  background: var(--gray-light);
  padding: 60px 5%;
}

.map-placeholder {
  background-color: #111111;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.025) 0px, rgba(255,255,255,0.025) 1px, transparent 1px, transparent 10px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.025) 0px, rgba(255,255,255,0.025) 1px, transparent 1px, transparent 10px);
  border-radius: 12px;
  border: 1px solid rgba(255,94,20,0.25);
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    rgba(255,255,255,0.03) 0px,
    rgba(255,255,255,0.03) 1px,
    transparent 1px,
    transparent 40px
  ),
  repeating-linear-gradient(
    90deg,
    rgba(255,255,255,0.03) 0px,
    rgba(255,255,255,0.03) 1px,
    transparent 1px,
    transparent 40px
  );
}

.map-pin {
  text-align: center;
  color: var(--white);
  position: relative;
  z-index: 1;
}

.map-pin-icon {
  font-size: 3rem;
  margin-bottom: 10px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.map-pin p {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 4px;
}

.map-pin span {
  font-size: 0.85rem;
  color: #aaaaaa;
}

/* ===== PHOTO GALLERY ===== */
.photo-gallery {
  background: #0d0d0d;
  padding: 90px 5%;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 10px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  overflow: hidden;
  border-radius: 8px;
  position: relative;
  background: #1a1a1a;
}

.gallery-item.gallery-hero {
  grid-row: 1 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 10px 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 10px 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item.gallery-hero {
    grid-row: auto;
    grid-column: 1 / 3;
    height: 260px;
  }
  .gallery-item:not(.gallery-hero) {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .carts-full-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item.gallery-hero {
    grid-column: 1;
    height: 220px;
  }
  .gallery-item:not(.gallery-hero) {
    height: 160px;
  }
}

/* ===== FOOTER ===== */
footer {
  background: #0d1a3a;
  color: #bbb;
  padding: 60px 5% 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 40px;
  border-bottom: 1px solid #333;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-top: 14px;
  color: #888;
  max-width: 280px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-col ul li a {
  color: #888;
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-map {
  max-width: 1200px;
  margin: 36px auto 0;
  padding: 0 5%;
}

.footer-bottom {
  max-width: 1200px;
  margin: 28px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: #555;
}

.footer-bottom a {
  color: var(--gold);
}

/* ===== HAMBURGER NAV TOGGLE ===== */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

nav.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
nav.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
nav.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero h1 { font-size: 2.4rem; }

  .about-intro { grid-template-columns: 1fr; gap: 40px; }
  .about-image-box { height: 280px; }

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

  .page-hero h1 { font-size: 2rem; }

  .why-grid {
    grid-template-columns: 1fr;
    border-left: none;
    border-top: 1px solid #e8e8e8;
  }
  .why-card { border-left: none; border-right: none; }

  .karts-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .carts-full-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  /* NAV */
  .nav-toggle { display: flex; }

  nav {
    flex-wrap: wrap;
    padding: 0 4%;
    position: sticky;
    height: auto;
    min-height: 80px;
  }

  .nav-logo {
    height: 80px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
  }

  .nav-toggle {
    height: 80px;
    display: flex;
    align-items: center;
  }

  .nav-logo .logo-icon {
    width: 62px !important;
    height: 62px !important;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 0 2px rgba(255,94,20,0.5);
  }

  .nav-logo-text .brand {
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #ffffff;
    line-height: 1.3;
    white-space: normal;
    word-break: break-word;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #111111;
    padding: 8px 0 16px;
    gap: 0;
    border-top: 1px solid rgba(255,94,20,0.4);
    order: 3;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    z-index: 999;
    box-shadow: 0 8px 24px rgba(0,0,0,0.6);
  }

  nav.nav-open .nav-links {
    display: flex;
  }

  .nav-links li a {
    display: block;
    padding: 14px 6%;
    font-size: 1rem;
    font-weight: 600;
    color: #dddddd;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    letter-spacing: 0.3px;
  }

  .nav-links li a:hover,
  .nav-links li a.active {
    color: var(--gold);
    background: rgba(255,94,20,0.08);
    padding-left: 8%;
  }

  .nav-links li:last-child a { border-bottom: none; }

  /* HERO */
  .hero { padding: 56px 5%; min-height: auto; }
  .hero h1 { font-size: 2rem; letter-spacing: -0.5px; }
  .hero-desc { font-size: 0.95rem; }
  .hero-cta { flex-direction: column; gap: 12px; }
  .hero-cta .btn { width: 100%; text-align: center; }

  /* PAGE HERO */
  .page-hero { padding: 52px 5%; }
  .page-hero h1 { font-size: 1.75rem; }
  .page-hero p { font-size: 0.95rem; }

  /* SECTIONS */
  section { padding: 56px 5%; }
  .section-title { font-size: 1.6rem; }
  .section-subtitle { font-size: 0.93rem; }

  /* GRIDS */
  .karts-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .carts-full-grid { grid-template-columns: 1fr; }

  /* KART CARDS (homepage) */
  .kart-card { flex-direction: column; }

  /* CTA BANNER */
  .cta-banner { padding: 56px 5%; }
  .cta-banner h2 { font-size: 1.6rem; }
  .cta-actions { flex-direction: column; gap: 12px; align-items: stretch; }
  .cta-actions .btn { width: 100%; text-align: center; }

  /* ABOUT */
  .about-image-box { height: 240px; }
  .about-intro { gap: 32px; }

  /* CONTACT */
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .map-placeholder { height: 200px; }

  /* FAQ */
  .faq-grid,
  [style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }

  /* HERO STATS */
  .hero-stats { grid-template-columns: 1fr 1fr; }

  /* FEATURES STRIP */
  .features-strip { gap: 24px; padding: 16px 5%; }

  /* FOOTER */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  /* NAV */
  .nav-logo-text .brand { font-size: 0.82rem; letter-spacing: 0.3px; }
  .nav-logo .logo-icon { width: 54px !important; height: 54px !important; }

  /* HERO */
  .hero { padding: 48px 4%; }
  .hero h1 { font-size: 1.75rem; }

  /* PAGE HERO */
  .page-hero { padding: 44px 4%; }
  .page-hero h1 { font-size: 1.5rem; }

  /* SECTIONS */
  section { padding: 48px 4%; }
  .section-title { font-size: 1.45rem; }

  /* GRIDS */
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .kart-specs { flex-wrap: wrap; }
  .kart-specs-list { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; }
  .features-strip { gap: 16px; }

  /* CONTACT FORM */
  .contact-form-box { padding: 24px 18px; }

  /* GALLERY */
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .gallery-item { height: 200px; }
  .gallery-item.gallery-hero {
    grid-row: auto;
    grid-column: auto;
    height: 240px;
  }
  /* show overlay labels on touch devices */
  .gallery-overlay { opacity: 1; }

  /* FOOTER */
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  footer { padding: 48px 4% 24px; }

  /* MISC */
  .cart-price-row { flex-direction: column; gap: 12px; }
  .cart-price-row .btn { width: 100%; text-align: center; }
  .why-card { flex-direction: column; gap: 12px; }
  .why-icon { flex-shrink: 0; }
}

/* ===== PHOTO GALLERY (homepage) ===== */
.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.gtab {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.15);
  color: #aaa;
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 9px 24px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.2s;
}

.gtab:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.gtab.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.pg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.pg-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  background: #1a1a1a;
  aspect-ratio: 4/3;
  transition: transform 0.3s, opacity 0.3s;
}

.pg-item.hidden {
  display: none;
}

.pg-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.pg-item:hover img {
  transform: scale(1.07);
}

.pg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 14px;
}

.pg-item:hover .pg-overlay {
  opacity: 1;
}

.pg-overlay span {
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: rgba(255,94,20,0.85);
  padding: 4px 10px;
  border-radius: 4px;
}

/* LIGHTBOX */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 99999;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
}

.lightbox p {
  color: #ccc;
  font-size: 0.88rem;
  margin-top: 14px;
  letter-spacing: 0.5px;
}

.lb-close {
  position: absolute;
  top: 20px;
  right: 28px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.lb-close:hover { opacity: 1; }

@media (max-width: 768px) {
  .pg-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}

@media (max-width: 480px) {
  .pg-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .gtab { font-size: 0.78rem; padding: 8px 16px; }
}

/* FLOATING WHATSAPP */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  padding: 12px 20px 12px 14px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: wa-pulse 2.5s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.06);
  box-shadow: 0 6px 28px rgba(37,211,102,0.6);
  color: #fff;
}
.whatsapp-float svg {
  flex-shrink: 0;
}
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50%       { box-shadow: 0 4px 32px rgba(37,211,102,0.75); }
}

@media (max-width: 480px) {
  .whatsapp-float {
    padding: 14px;
    border-radius: 50%;
    bottom: 20px;
    right: 20px;
  }
  .whatsapp-float span { display: none; }
}
