:root {
  --primary:   #EE727A;
  --secondary: #F4D687;
  --green:     #59754D;
  --accent:    #CB5488;
  --dark:      #2c2c2c;
  --light:     #f8f6f5;
}

/* ── Global ──────────────────────────────────────────── */
body {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--dark);
  background: #fff;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
}

p, li, a, label, input, textarea, select, button, .nav-link {
  font-family: 'Lato', sans-serif;
}

/* ── Navbar ──────────────────────────────────────────── */
.navbar {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  padding: 1rem 0;
}

.navbar-brand img {
  height: 120px;
  width: auto;
}

.nav-link {
  color: var(--dark) !important;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .85rem;
  padding: .5rem 1rem !important;
  transition: color .2s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary) !important;
}

.btn-book {
  background: var(--primary);
  color: #fff !important;
  border-radius: 30px;
  padding: .5rem 1.5rem !important;
  transition: background .2s, transform .15s;
}

.btn-book:hover {
  background: var(--accent);
  transform: translateY(-1px);
}

/* ── Hero ────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--light) 0%, #fdf0f1 60%, #fff 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(238,114,122,.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  background: var(--secondary);
  color: var(--dark);
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem 1.1rem;
  border-radius: 20px;
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 1rem;
}

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

.hero h2 {
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  font-weight: 400;
  font-style: italic;
  color: #555;
  margin-bottom: 2rem;
  font-family: 'Lato', sans-serif;
}

.btn-primary-custom,
.hero-cta .btn-primary-custom {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: .85rem 2.2rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .03em;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 18px rgba(238,114,122,.35);
}

.btn-primary-custom:hover,
.hero-cta .btn-primary-custom:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(203,84,136,.35);
}

.hero-cta .btn-outline-custom {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
  border-radius: 30px;
  padding: .82rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .03em;
  transition: background .2s, color .2s, transform .15s;
}

.hero-cta .btn-outline-custom:hover {
  background: var(--green);
  color: #fff;
  transform: translateY(-2px);
}

/* ── Trailer image card ──────────────────────────────── */
.trailer-img-wrap {
  position: relative;
}

.trailer-img-wrap img {
  border-radius: 18px;
  box-shadow: 0 16px 48px rgba(0,0,0,.15);
  width: 100%;
  object-fit: cover;
}

.trailer-img-wrap .ribbon {
  position: absolute;
  top: 18px; left: -8px;
  background: var(--primary);
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .4rem 1.1rem;
  border-radius: 0 4px 4px 0;
  box-shadow: 2px 2px 8px rgba(0,0,0,.15);
}

/* ── Trust bar ───────────────────────────────────────── */
.trust-bar {
  background: var(--green);
  color: #fff;
  padding: 18px 0;
}

.trust-bar .trust-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .03em;
}

.trust-bar .trust-icon {
  font-size: 1.3rem;
}

/* ── Section titles ──────────────────────────────────── */
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: .5rem;
}

.section-title span {
  color: var(--primary);
}

.section-subtitle {
  font-family: 'Lato', sans-serif;
  color: #666;
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

.section-divider {
  width: 60px;
  height: 4px;
  background: var(--secondary);
  border-radius: 2px;
  margin: .75rem auto 1.5rem;
}

/* ── Fleet cards ─────────────────────────────────────── */
.fleet-section {
  background: var(--light);
  padding: 80px 0;
}

.fleet-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
  transition: transform .25s, box-shadow .25s;
  height: 100%;
}

.fleet-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0,0,0,.14);
}

.fleet-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: linear-gradient(135deg, #f0e8ea 0%, #fdf0f1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}

.fleet-card-body {
  padding: 1.5rem;
}

.fleet-card-body h4 {
  color: var(--dark);
  font-weight: 700;
  margin-bottom: .5rem;
}

.fleet-card-body .stall-badge {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  padding: .25rem .8rem;
  border-radius: 20px;
  margin-bottom: .75rem;
}

.fleet-card-body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}

.fleet-card-body ul li {
  font-family: 'Lato', sans-serif;
  font-size: .92rem;
  color: #555;
  padding: .2rem 0;
}

.fleet-card-body ul li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  margin-right: .5rem;
}

.btn-fleet {
  display: block;
  width: 100%;
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 25px;
  padding: .6rem 1rem;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  text-align: center;
  text-decoration: none;
  transition: background .2s, color .2s;
}

.btn-fleet:hover {
  background: var(--primary);
  color: #fff;
}

/* ── Why Us ──────────────────────────────────────────── */
.why-section {
  padding: 80px 0;
  background: #fff;
}

.why-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 16px;
  transition: background .2s, box-shadow .2s;
}

.why-card:hover {
  background: var(--light);
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
}

.why-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--secondary) 0%, #f9e8a0 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1.25rem;
}

.why-card h5 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: .5rem;
}

.why-card p {
  font-family: 'Lato', sans-serif;
  font-size: .93rem;
  color: #666;
  margin: 0;
}

/* ── Events section ──────────────────────────────────── */
.events-section {
  background: linear-gradient(135deg, #2c2c2c 0%, #3a3330 100%);
  padding: 80px 0;
  color: #fff;
}

.events-section .section-title {
  color: #fff;
}

.events-section .section-subtitle {
  color: rgba(255,255,255,.7);
}

.event-chip {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  border-radius: 30px;
  padding: .55rem 1.2rem;
  font-family: 'Lato', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  margin: .35rem;
  transition: background .2s, border-color .2s;
}

.event-chip:hover {
  background: var(--primary);
  border-color: var(--primary);
}

/* ── Testimonials ────────────────────────────────────── */
.testimonials-section {
  background: var(--light);
  padding: 80px 0;
}

.testi-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
  height: 100%;
  position: relative;
}

.testi-card::before {
  content: '"';
  position: absolute;
  top: 12px; left: 20px;
  font-size: 5rem;
  line-height: 1;
  color: var(--secondary);
  font-family: Georgia, serif;
  opacity: .6;
}

.testi-card p {
  font-family: 'Lato', sans-serif;
  font-style: italic;
  color: #555;
  font-size: .97rem;
  padding-top: 1.5rem;
  margin-bottom: 1.25rem;
}

.testi-stars {
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: .4rem;
}

.testi-name {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  color: var(--dark);
}

.testi-event {
  font-family: 'Lato', sans-serif;
  font-size: .82rem;
  color: #888;
}

/* ── Contact / Booking ───────────────────────────────── */
.contact-section {
  padding: 80px 0;
  background: #fff;
}

.contact-form-wrap {
  background: var(--light);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
}

.contact-form-wrap .form-label {
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  font-size: .9rem;
  color: var(--dark);
}

.contact-form-wrap .form-control,
.contact-form-wrap .form-select {
  border-radius: 10px;
  border: 1.5px solid #ddd;
  padding: .65rem 1rem;
  font-family: 'Lato', sans-serif;
  font-size: .95rem;
  transition: border-color .2s, box-shadow .2s;
}

.contact-form-wrap .form-control:focus,
.contact-form-wrap .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(238,114,122,.15);
  outline: none;
}

.btn-submit {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: .85rem 2.5rem;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .04em;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 18px rgba(238,114,122,.3);
}

.btn-submit:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(203,84,136,.35);
}

.contact-info-block h5 {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: .25rem;
  font-size: 1rem;
}

.contact-info-block p {
  font-family: 'Lato', sans-serif;
  color: #555;
  font-size: .95rem;
  margin: 0;
}

/* ── Footer ──────────────────────────────────────────── */
footer {
  background: #1e1e1e;
  color: rgba(255,255,255,.75);
  padding: 50px 0 25px;
}

footer .footer-logo img {
  height: 70px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: .85;
}

footer h6 {
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .82rem;
  margin-bottom: 1rem;
}

footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer ul li {
  margin-bottom: .4rem;
}

footer ul li a {
  font-family: 'Lato', sans-serif;
  color: rgba(255,255,255,.65);
  font-size: .9rem;
  text-decoration: none;
  transition: color .2s;
}

footer ul li a:hover {
  color: var(--primary);
}

footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  font-family: 'Lato', sans-serif;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
  text-align: center;
}

footer .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  color: rgba(255,255,255,.7);
  font-size: 1rem;
  text-decoration: none;
  margin-right: .5rem;
  transition: background .2s, color .2s;
}

footer .social-links a:hover {
  background: var(--primary);
  color: #fff;
}

/* ── Site Checklist promo ────────────────────────────── */
.checklist-promo-section {
  background: linear-gradient(135deg, #fff9f0 0%, #fff5f5 100%);
  padding: 80px 0;
  border-top: 1px solid rgba(238,114,122,.1);
  border-bottom: 1px solid rgba(238,114,122,.1);
}

.clipboard-graphic {
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, var(--secondary) 0%, #f9e8a0 100%);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 40px rgba(244,214,135,.45);
}

.clipboard-graphic i {
  font-size: 5rem;
  color: var(--green);
}

.checklist-preview-list {
  list-style: none;
  padding: 0;
  margin: 0 0 .5rem;
}

.checklist-preview-list li {
  font-family: 'Lato', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  padding: .45rem 0;
  display: flex;
  align-items: center;
  gap: .65rem;
}

.checklist-preview-list li i {
  color: var(--green);
  font-size: 1.15rem;
  flex-shrink: 0;
}

/* ── Utilities ───────────────────────────────────────── */
.text-primary-custom { color: var(--primary) !important; }
.bg-primary-custom   { background: var(--primary) !important; }
.bg-green            { background: var(--green) !important; }

@media (max-width: 767px) {
  .hero { padding: 50px 0 40px; }
  .trust-bar .trust-item { justify-content: center; }
}
