/* ============================================================
   PLATINUM PARKING SERVICES — Main Stylesheet
   ============================================================ */

/* --- CSS Custom Properties --- */
:root {
  --color-bg:           #0A0E1A;
  --color-surface:      #111827;
  --color-surface-2:    #1F2937;
  --color-surface-3:    #374151;
  --color-gold:         #C9A84C;
  --color-gold-light:   #E8C96B;
  --color-gold-dark:    #A07830;
  --color-white:        #FFFFFF;
  --color-text:         #F9FAFB;
  --color-text-muted:   #9CA3AF;
  --color-text-dim:     #6B7280;
  --color-border:       #2D3748;
  --color-success:      #10B981;
  --color-error:        #EF4444;
  --color-warning:      #F59E0B;

  --font-body:     'Inter', system-ui, sans-serif;
  --font-display:  'Playfair Display', Georgia, serif;

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-full: 9999px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.4);
  --shadow-md:  0 4px 20px rgba(0,0,0,.5);
  --shadow-lg:  0 8px 40px rgba(0,0,0,.6);
  --shadow-glow: 0 0 30px rgba(201,168,76,.15);

  --transition: all .25s ease;
  --transition-slow: all .4s ease;

  --nav-height: 72px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--color-gold-light); }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* --- Utilities --- */
.gold { color: var(--color-gold); }
.container {
  width: min(1200px, 100% - 3rem);
  margin-inline: auto;
}
.section { padding: 80px 0; }
.section-dark { background: var(--color-surface); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .02em;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  color: #000;
  box-shadow: 0 4px 15px rgba(201,168,76,.3);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
  color: #000;
  box-shadow: 0 6px 25px rgba(201,168,76,.5);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--color-text);
  border: 2px solid var(--color-border);
}
.btn-outline:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background: rgba(201,168,76,.08);
}
.btn-full { width: 100%; justify-content: center; }
.btn-lg { padding: 1rem 2.25rem; font-size: 1.05rem; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: var(--transition);
}
.site-header.scrolled {
  background: rgba(10,14,26,.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}
.nav-container {
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
}
.logo-img {
  height: 44px;
  width: auto;
  border-radius: 6px;
  background: #fff;
  padding: 4px 8px;
  display: block;
}
.footer-logo-img {
  height: 52px;
  opacity: .9;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  color: var(--color-text-muted);
  font-weight: 500;
  font-size: .95rem;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--color-text); }
.nav-book { padding: .6rem 1.4rem !important; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: var(--nav-height);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('/images/hero-bg.jpg') center 60%/cover no-repeat;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,14,26,.92) 0%,
    rgba(10,14,26,.75) 50%,
    rgba(10,14,26,.85) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 4rem;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(201,168,76,.12);
  border: 1px solid rgba(201,168,76,.3);
  color: var(--color-gold);
  padding: .4rem 1rem;
  border-radius: var(--radius-full);
  font-size: .85rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 1.25rem;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 480px;
  margin-bottom: 1.75rem;
  line-height: 1.7;
}
.hero-perks {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.5rem;
  font-size: .9rem;
  color: var(--color-text-muted);
}
.hero-perks i {
  color: var(--color-gold);
  margin-right: .25rem;
}

/* Booking Widget */
.booking-widget {
  background: rgba(17,24,39,.9);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  backdrop-filter: blur(20px);
}
.widget-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--color-text);
  text-align: center;
}
.widget-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.form-group label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.form-group label i {
  color: var(--color-gold);
  width: 14px;
  margin-right: .25rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-text);
  padding: .7rem .9rem;
  font-size: .95rem;
  font-family: inherit;
  transition: var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.1);
}
.form-group select option { background: var(--color-surface-2); }

.widget-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(201,168,76,.08);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: var(--radius-sm);
  padding: .75rem 1rem;
  margin-bottom: 1rem;
}
.price-label { font-size: .85rem; color: var(--color-text-muted); }
.price-value { font-size: 1.1rem; font-weight: 700; color: var(--color-gold); }
.widget-rates-link {
  display: block;
  text-align: center;
  font-size: .8rem;
  color: var(--color-text-muted);
  margin-top: .75rem;
}
.widget-rates-link:hover { color: var(--color-gold); }

/* Stats Bar */
.hero-stats {
  position: relative;
  z-index: 1;
  background: rgba(201,168,76,.08);
  border-top: 1px solid rgba(201,168,76,.15);
  padding: 1.5rem 0;
}
.stats-row {
  display: flex;
  justify-content: space-around;
  gap: 2rem;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-gold);
  font-family: var(--font-display);
}
.stat-label {
  font-size: .8rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-tag {
  display: inline-block;
  background: rgba(201,168,76,.12);
  border: 1px solid rgba(201,168,76,.25);
  color: var(--color-gold);
  padding: .3rem .9rem;
  border-radius: var(--radius-full);
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: .75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: .75rem;
}
.section-sub {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  max-width: 520px;
  margin-inline: auto;
}

/* ============================================================
   FEATURES
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  transition: var(--transition-slow);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,.04), transparent);
  opacity: 0;
  transition: var(--transition);
}
.feature-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md), var(--shadow-glow);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 52px;
  height: 52px;
  background: rgba(201,168,76,.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--color-gold);
  margin-bottom: 1.25rem;
  transition: var(--transition);
}
.feature-card:hover .feature-icon {
  background: rgba(201,168,76,.2);
  transform: scale(1.05);
}
.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .5rem;
}
.feature-card p {
  font-size: .9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps-grid {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.step-card {
  flex: 1;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  transition: var(--transition-slow);
}
.step-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-4px);
}
.step-num {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background: var(--color-gold);
  color: #000;
  font-size: .75rem;
  font-weight: 800;
  padding: .2rem .6rem;
  border-radius: var(--radius-full);
  letter-spacing: .05em;
}
.step-icon {
  font-size: 2.5rem;
  color: var(--color-gold);
  margin-bottom: 1rem;
}
.step-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: .75rem;
}
.step-card p {
  font-size: .9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}
.step-connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-dark));
  flex-shrink: 0;
  opacity: .4;
}

/* ============================================================
   PRICING
   ============================================================ */
.rates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 1.5rem;
}
.rate-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition-slow);
  position: relative;
}
.rate-card.featured {
  border-color: var(--color-gold);
  transform: scale(1.03);
  box-shadow: var(--shadow-md), var(--shadow-glow);
}
.rate-card:hover:not(.featured) {
  border-color: var(--color-surface-3);
  transform: translateY(-2px);
}
.rate-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  color: #000;
  font-size: .75rem;
  font-weight: 700;
  padding: .25rem .9rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
}
.rate-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-bottom: .75rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .85rem;
}
.rate-price {
  display: flex;
  align-items: baseline;
  gap: .25rem;
  margin-bottom: 1.5rem;
}
.rate-price .currency { font-size: 1.2rem; font-weight: 600; color: var(--color-gold); }
.rate-price .amount { font-size: 3rem; font-weight: 800; color: var(--color-text); font-family: var(--font-display); }
.rate-price .per { font-size: .9rem; color: var(--color-text-muted); }
.rate-features {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-bottom: 1.75rem;
}
.rate-features li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .9rem;
  color: var(--color-text-muted);
}
.rate-features li i { color: var(--color-gold); font-size: .8rem; }
.rates-note {
  text-align: center;
  font-size: .85rem;
  color: var(--color-text-dim);
}
.rates-note i { color: var(--color-gold); margin-right: .25rem; }
.rates-note a { color: var(--color-gold); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-carousel { position: relative; overflow: hidden; }
.testimonial-track {
  display: flex;
  gap: 1.5rem;
  transition: transform .4s ease;
}
.testimonial-card {
  flex: 0 0 calc(33.333% - 1rem);
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: var(--transition-slow);
}
.testimonial-card:hover { border-color: rgba(201,168,76,.3); }
.stars { color: var(--color-gold); margin-bottom: 1rem; font-size: .9rem; letter-spacing: 2px; }
.testimonial-card p {
  font-size: .95rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.author-avatar {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #000;
  font-size: .8rem;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: .9rem; }
.testimonial-author span { font-size: .8rem; color: var(--color-text-dim); }
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.carousel-btn {
  width: 40px;
  height: 40px;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  cursor: pointer;
  font-size: .8rem;
}
.carousel-btn:hover { border-color: var(--color-gold); color: var(--color-gold); }
.carousel-dots { display: flex; gap: .4rem; }
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: var(--radius-full);
  background: var(--color-border);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.carousel-dot.active {
  background: var(--color-gold);
  width: 24px;
}

/* ============================================================
   TRUST SECTION
   ============================================================ */
.trust-grid {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  background: var(--color-surface);
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  text-align: center;
  color: var(--color-text-muted);
  font-size: .9rem;
  font-weight: 500;
}
.trust-img { height: 48px; width: auto; opacity: .8; filter: brightness(0) invert(1) sepia(1) hue-rotate(10deg) saturate(.8); }
.trust-icon { font-size: 2rem; color: var(--color-gold); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-grid {
  max-width: 800px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.faq-item {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: rgba(201,168,76,.3); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-size: .95rem;
  font-weight: 600;
  color: var(--color-text);
  transition: var(--transition);
  cursor: pointer;
}
.faq-question:hover { color: var(--color-gold); }
.faq-question i {
  color: var(--color-gold);
  font-size: .85rem;
  transition: var(--transition);
  flex-shrink: 0;
}
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p {
  padding: 0 1.5rem 1.25rem;
  font-size: .9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(
    135deg,
    rgba(201,168,76,.08) 0%,
    rgba(10,14,26,1) 60%
  );
  border-top: 1px solid rgba(201,168,76,.15);
  border-bottom: 1px solid rgba(201,168,76,.15);
  padding: 80px 0;
}
.cta-content {
  text-align: center;
}
.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 1rem;
}
.cta-content p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p {
  font-size: .9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-top: .75rem;
  margin-bottom: 1.25rem;
}
.footer-logo { margin-bottom: .25rem; }
.social-links {
  display: flex;
  gap: .75rem;
}
.social-links a {
  width: 36px;
  height: 36px;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: .85rem;
  transition: var(--transition);
}
.social-links a:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background: rgba(201,168,76,.1);
}
.footer-col h4 {
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--color-text);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul li a {
  font-size: .9rem;
  color: var(--color-text-muted);
}
.footer-col ul li a:hover { color: var(--color-gold); }
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .9rem;
  color: var(--color-text-muted);
}
.contact-list li i {
  color: var(--color-gold);
  width: 14px;
  margin-top: 3px;
}
.hours-list { display: flex; flex-direction: column; gap: .5rem; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: .85rem;
  color: var(--color-text-muted);
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--color-border);
}
.payment-logos {
  display: flex;
  gap: .5rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
  align-items: center;
}
.payment-logos img {
  height: 24px;
  width: auto;
  filter: brightness(0) invert(.7);
  transition: var(--transition);
}
.payment-logos img:hover { filter: brightness(0) invert(1); }
.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding: 1.5rem 0;
  text-align: center;
}
.footer-bottom p {
  font-size: .8rem;
  color: var(--color-text-dim);
  margin-bottom: .25rem;
}
.footer-reg { font-size: .75rem !important; }

/* ============================================================
   IMAGE GALLERY STRIP
   ============================================================ */
.image-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
.image-strip-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.image-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.image-strip-item:hover img { transform: scale(1.05); }
.image-strip-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75), transparent);
  padding: 1rem .75rem .75rem;
  color: #fff;
  font-size: .8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.image-strip-caption i { color: var(--color-gold); }

/* Image-backed feature cards */
.feature-card-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
}

/* ============================================================
   BOOKING PAGE
   ============================================================ */
.page-hero {
  padding: calc(var(--nav-height) + 40px) 0 40px;
  background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-bg) 100%);
  border-bottom: 1px solid var(--color-border);
}
.page-hero-content { text-align: center; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: .75rem;
}
.page-hero p { color: var(--color-text-muted); font-size: 1rem; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  color: var(--color-text-dim);
  margin-bottom: 1rem;
  justify-content: center;
}
.breadcrumb a { color: var(--color-text-dim); }
.breadcrumb a:hover { color: var(--color-gold); }
.breadcrumb i { font-size: .6rem; }

.booking-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2rem;
  padding: 60px 0;
  align-items: start;
}
.booking-form-container {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.booking-steps {
  display: flex;
  border-bottom: 1px solid var(--color-border);
}
.booking-step {
  flex: 1;
  padding: 1rem;
  text-align: center;
  font-size: .8rem;
  color: var(--color-text-dim);
  font-weight: 500;
  position: relative;
  transition: var(--transition);
}
.booking-step.active {
  color: var(--color-gold);
  background: rgba(201,168,76,.05);
}
.booking-step.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0; right: 0;
  height: 2px;
  background: var(--color-gold);
}
.booking-step.done { color: var(--color-success); }
.step-num-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--color-surface-2);
  border-radius: var(--radius-full);
  font-size: .75rem;
  margin-right: .4rem;
}
.booking-step.active .step-num-circle {
  background: var(--color-gold);
  color: #000;
}
.booking-form-panel { padding: 2rem; display: none; }
.booking-form-panel.active { display: block; }
.form-section-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--color-border);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.form-grid .full { grid-column: 1 / -1; }
.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}

/* Booking Summary Panel */
.booking-summary {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  position: sticky;
  top: calc(var(--nav-height) + 20px);
}
.summary-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--color-border);
}
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: .6rem 0;
  font-size: .9rem;
  border-bottom: 1px solid var(--color-border);
}
.summary-row:last-of-type { border-bottom: none; }
.summary-row .label { color: var(--color-text-muted); }
.summary-row .value { font-weight: 500; text-align: right; }
.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  margin-top: .5rem;
  border-top: 2px solid var(--color-gold);
  font-weight: 700;
  font-size: 1.1rem;
}
.summary-total .total-price { color: var(--color-gold); font-size: 1.4rem; }

/* ============================================================
   RATES PAGE
   ============================================================ */
.rates-table-section { padding: 60px 0; }
.rates-table-wrapper {
  overflow-x: auto;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}
.rates-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}
.rates-table th,
.rates-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}
.rates-table th {
  background: var(--color-surface-2);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--color-text-muted);
  font-weight: 700;
}
.rates-table tr:last-child td { border-bottom: none; }
.rates-table tr:hover td { background: rgba(201,168,76,.03); }
.rates-table .highlight td {
  background: rgba(201,168,76,.05);
  border-left: 2px solid var(--color-gold);
}
.rate-tag {
  background: rgba(201,168,76,.12);
  color: var(--color-gold);
  padding: .2rem .6rem;
  border-radius: var(--radius-full);
  font-size: .75rem;
  font-weight: 600;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  padding: 60px 0;
}
.contact-info h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin-bottom: 1rem;
}
.contact-info p { color: var(--color-text-muted); margin-bottom: 2rem; line-height: 1.7; }
.contact-detail-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact-detail-icon {
  width: 46px;
  height: 46px;
  background: rgba(201,168,76,.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-detail-text strong {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--color-text-muted);
  margin-bottom: .2rem;
}
.contact-detail-text a,
.contact-detail-text span {
  font-size: .95rem;
  color: var(--color-text);
}
.contact-form {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.contact-form h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.75rem;
}

/* ============================================================
   ADMIN PANEL
   ============================================================ */
.admin-body {
  background: var(--color-bg);
  min-height: 100vh;
}
.admin-login {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.admin-login-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  width: min(420px, 100%);
}
.admin-login-card h1 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: .5rem;
  text-align: center;
}
.admin-login-card p {
  font-size: .9rem;
  color: var(--color-text-muted);
  text-align: center;
  margin-bottom: 2rem;
}
.admin-layout {
  display: flex;
  min-height: 100vh;
}
.admin-sidebar {
  width: 260px;
  background: var(--color-surface);
  border-right: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  padding: 1.5rem 0;
  flex-shrink: 0;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  overflow-y: auto;
}
.admin-logo {
  padding: 0 1.5rem 1.5rem;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 700;
}
.admin-nav-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .75rem 1.5rem;
  font-size: .9rem;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  width: 100%;
  text-align: left;
}
.admin-nav-item:hover { color: var(--color-text); background: var(--color-surface-2); }
.admin-nav-item.active {
  color: var(--color-gold);
  background: rgba(201,168,76,.08);
  border-left: 2px solid var(--color-gold);
}
.admin-nav-item i { width: 16px; }
.admin-main {
  flex: 1;
  margin-left: 260px;
  padding: 2rem;
}
.admin-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
}
.admin-topbar h1 { font-size: 1.5rem; font-weight: 700; }
.stats-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.stats-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.stats-card .stat-icon {
  width: 40px;
  height: 40px;
  background: rgba(201,168,76,.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-size: 1rem;
  margin-bottom: .25rem;
}
.stats-card .stat-value {
  font-size: 1.75rem;
  font-weight: 800;
  font-family: var(--font-display);
}
.stats-card .stat-label { font-size: .8rem; color: var(--color-text-muted); }
.stats-card .stat-change {
  font-size: .75rem;
  padding: .15rem .4rem;
  border-radius: var(--radius-full);
}
.stats-card .stat-change.up { background: rgba(16,185,129,.15); color: var(--color-success); }
.stats-card .stat-change.down { background: rgba(239,68,68,.15); color: var(--color-error); }
.admin-table-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.admin-table-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--color-border);
}
.admin-table-header h3 { font-size: 1rem; font-weight: 700; }
.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .85rem;
}
.admin-table th {
  background: var(--color-surface-2);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--color-text-muted);
  padding: .75rem 1rem;
  text-align: left;
  font-weight: 600;
}
.admin-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text-muted);
}
.admin-table tr:hover td { background: rgba(255,255,255,.02); }
.status-badge {
  display: inline-block;
  padding: .2rem .6rem;
  border-radius: var(--radius-full);
  font-size: .75rem;
  font-weight: 600;
}
.status-confirmed { background: rgba(16,185,129,.15); color: var(--color-success); }
.status-pending { background: rgba(245,158,11,.15); color: var(--color-warning); }
.status-cancelled { background: rgba(239,68,68,.15); color: var(--color-error); }

/* ============================================================
   FORM ALERTS & MESSAGES
   ============================================================ */
.alert {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: .9rem;
  margin-bottom: 1rem;
}
.alert-success { background: rgba(16,185,129,.12); border: 1px solid rgba(16,185,129,.3); color: var(--color-success); }
.alert-error { background: rgba(239,68,68,.12); border: 1px solid rgba(239,68,68,.3); color: var(--color-error); }
.alert-info { background: rgba(201,168,76,.12); border: 1px solid rgba(201,168,76,.25); color: var(--color-gold); }
.spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; max-width: 600px; margin-inline: auto; }
  .booking-widget { margin-top: 0; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { flex-direction: column; }
  .step-connector { width: 2px; height: 40px; }
  .rates-grid { grid-template-columns: 1fr; }
  .rate-card.featured { transform: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .image-strip { grid-template-columns: 1fr; }
  :root { --nav-height: 64px; }
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: rgba(10,14,26,.97);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--color-border);
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .hero-content { grid-template-columns: 1fr; }
  .widget-form .form-row { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .stats-row { gap: 1rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .booking-layout { grid-template-columns: 1fr; }
  .booking-summary { position: static; }
  .contact-layout { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .stats-cards { grid-template-columns: 1fr 1fr; }
  .admin-sidebar { transform: translateX(-100%); z-index: 999; transition: transform .3s; }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-main { margin-left: 0; padding: 1.25rem; }
  .testimonial-card { flex: 0 0 85%; }
}

@media (max-width: 480px) {
  .section { padding: 50px 0; }
  .cta-actions { flex-direction: column; }
  .stats-cards { grid-template-columns: 1fr; }
}

/* ============================================================
   ANIMATION UTILITIES
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}
.fade-in-delay-1 { transition-delay: .1s; }
.fade-in-delay-2 { transition-delay: .2s; }
.fade-in-delay-3 { transition-delay: .3s; }

/* Loading skeleton */
.skeleton {
  background: linear-gradient(90deg, var(--color-surface-2) 0%, var(--color-surface-3) 50%, var(--color-surface-2) 100%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s ease-in-out infinite;
  border-radius: var(--radius-sm);
}
@keyframes skeleton-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
