/* ============================================
   Weekend Mobility — Main Stylesheet
   Design: Black & Gold, Luxury
   ============================================ */

:root {
  --gold: #b8972e;
  --gold-light: #d4b85a;
  --gold-dark: #8a6e1a;
  --black: #000000;
  --dark: #0a0a0a;
  --dark2: #111111;
  --dark3: #1a1a1a;
  --white: #ffffff;
  --gray: #888888;
  --gray-light: #cccccc;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--white); color: #333; line-height: 1.7; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* TYPOGRAPHY */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 400; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
h3 { font-size: 1.3rem; }
p { font-size: 0.95rem; color: #555; }

/* BUTTONS */
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  padding: 14px 40px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border: 2px solid var(--gold);
  transition: all 0.3s ease;
}
.btn-gold:hover { background: transparent; color: var(--gold); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  padding: 12px 36px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  transition: all 0.3s ease;
}
.btn-outline:hover { background: var(--gold); color: var(--white); }

.label-gold {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  font-family: var(--font-body);
  font-weight: 500;
}

/* LAYOUT */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
section { padding: 90px 0; }
.dark-section { background: var(--dark); }
.dark-section h2, .dark-section h3, .dark-section h4 { color: var(--white); }
.dark-section p { color: var(--gray-light); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { color: var(--dark); margin-top: 8px; }
.dark-section .section-header h2 { color: var(--white); }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.95);
  border-bottom: 1px solid rgba(184, 151, 46, 0.25);
  transition: all 0.3s ease;
}
.site-header.scrolled {
  background: rgba(0, 0, 0, 1);
  border-bottom-color: var(--gold);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}
.logo img { height: 140px; width: auto; margin: -35px 0; }
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 12px;
  transition: color 0.3s;
  font-weight: 400;
}
.main-nav a:hover, .main-nav a.active { color: var(--gold); }
.btn-nav-contact {
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  padding: 7px 18px !important;
  margin-left: 8px;
}
.btn-nav-contact:hover { background: var(--gold) !important; color: var(--black) !important; }
.lang-switcher {
  border: 1px solid rgba(255,255,255,0.2) !important;
  font-size: 0.65rem !important;
  padding: 5px 10px !important;
  margin-left: 8px;
}
.lang-switcher:hover { border-color: var(--gold) !important; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.menu-toggle span { display: block; width: 25px; height: 1.5px; background: var(--white); transition: all 0.3s; }
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  background-color: var(--dark);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.38) 60%, rgba(0,0,0,0.60) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  padding: 0 24px;
}
.hero-logo { height: 416px; width: auto; margin: 0 auto 0; }
.hero-title { color: var(--white); margin-bottom: 20px; }
.hero-sub {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  margin-bottom: 40px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
  letter-spacing: 0.5px;
}

/* Gold divider line under hero title */
.hero-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 20px auto 0;
}

/* ============================================
   INTRO SECTION
   ============================================ */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro-text h2 { color: var(--dark); margin-bottom: 20px; margin-top: 8px; }
.intro-text p { margin-bottom: 32px; line-height: 1.9; }
.intro-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 1px;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--dark3);
}
.service-card {
  background: var(--dark2);
  padding: 44px 36px;
  transition: background 0.3s;
  border: 1px solid var(--dark3);
}
.service-card:hover { background: #161616; border-color: rgba(184,151,46,0.3); }
.svc-icon {
  width: 52px;
  height: 52px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.svc-icon i { color: var(--gold); font-size: 1.2rem; }
.service-card h3 { color: var(--white); margin-bottom: 12px; font-size: 1.2rem; }
.service-card p { color: var(--gray); font-size: 0.88rem; line-height: 1.8; }

/* ============================================
   FLEET SECTION
   ============================================ */
.fleet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.fleet-grid-3 {
  grid-template-columns: 1fr 1fr 1fr;
}
.fleet-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--dark3);
}
.fleet-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.fleet-card:hover img { transform: scale(1.05); }
.fleet-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, transparent 100%);
}
.fleet-overlay h3 { color: var(--white); margin-bottom: 6px; font-size: 1.4rem; }
.fleet-overlay p { color: rgba(255,255,255,0.65); font-size: 0.85rem; }

/* Gold line on fleet card hover */
.fleet-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.fleet-card:hover::after { transform: scaleX(1); }

/* ============================================
   WHY US SECTION
   ============================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.why-item { padding: 20px; }
.why-item i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 18px;
  display: block;
}
.why-item h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
}

/* ============================================
   CTA SECTION
   ============================================ */
.section-cta {
  background: var(--dark);
  text-align: center;
  border-top: 1px solid rgba(184,151,46,0.2);
}
.section-cta h2 { color: var(--white); margin-bottom: 16px; }
.section-cta p { color: var(--gray-light); margin-bottom: 36px; font-size: 0.95rem; }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  position: relative;
  height: 420px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 64px;
  background-size: cover;
  background-position: center;
  margin-top: 72px;
  background-color: var(--dark);
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.3) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}
.page-hero-content h1 { color: var(--white); margin-bottom: 12px; }
.page-hero-content p { color: rgba(255,255,255,0.75); max-width: 600px; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--dark);
  border-top: 1px solid var(--dark3);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 24px 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
}
.footer-brand .footer-logo { height: 150px; width: auto; margin-bottom: 0; margin-top: -35px; }
.footer-brand p { color: var(--gray); font-size: 0.78rem; letter-spacing: 1.5px; text-transform: uppercase; }
.footer-nav { display: flex; flex-direction: column; gap: 12px; padding-top: 4px; }
.footer-nav a { color: var(--gray); font-size: 0.82rem; transition: color 0.3s; letter-spacing: 0.5px; }
.footer-nav a:hover { color: var(--gold); }
.footer-contact p { color: var(--gray); font-size: 0.85rem; margin-bottom: 12px; }
.footer-contact i { color: var(--gold); margin-right: 10px; width: 14px; }
.footer-bottom {
  border-top: 1px solid var(--dark3);
  padding: 22px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-bottom p { color: #555; font-size: 0.75rem; text-align: center; }

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 380px; gap: 64px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #777;
  margin-bottom: 8px;
  font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--white);
  border: none;
  border-bottom: 1.5px solid #ddd;
  padding: 12px 0;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--dark);
  transition: border-color 0.3s;
  outline: none;
  border-radius: 0;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-bottom-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 140px; }
.btn-full { width: 100%; text-align: center; cursor: pointer; font-family: var(--font-body); }
.ci-item { display: flex; gap: 18px; margin-bottom: 30px; padding-bottom: 30px; border-bottom: 1px solid #f0f0f0; }
.ci-item > i { color: var(--gold); font-size: 1.1rem; margin-top: 4px; flex-shrink: 0; }
.ci-item strong { display: block; font-size: 0.72rem; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 6px; color: var(--dark); }
.ci-item p { font-size: 0.9rem; }
.alert-success { background: #f0fdf4; border-left: 3px solid #22c55e; color: #166534; padding: 14px 18px; margin-bottom: 24px; font-size: 0.88rem; }
.alert-error { background: #fef2f2; border-left: 3px solid #ef4444; color: #991b1b; padding: 14px 18px; margin-bottom: 24px; font-size: 0.88rem; }

/* ============================================
   DESTINATIONS / TOURS
   ============================================ */
.dest-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-bottom: 48px; }
.dest-card { padding: 32px 24px; border: 1px solid #ebebeb; border-top: 2px solid var(--gold); transition: all 0.3s; }
.dest-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.08); transform: translateY(-5px); }
.dest-icon { width: 48px; height: 48px; background: rgba(184,151,46,0.08); display: flex; align-items: center; justify-content: center; border-radius: 50%; margin-bottom: 18px; }
.dest-icon i { color: var(--gold); font-size: 1.2rem; }
.dest-card h3 { color: var(--dark); margin-bottom: 10px; }
.dest-card p { font-size: 0.88rem; }

.tours-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 30px; margin-bottom: 48px; }
.tour-card { overflow: hidden; border: 1px solid #ebebeb; }
.tour-img img { width: 100%; height: 240px; object-fit: cover; transition: transform 0.4s; }
.tour-card:hover .tour-img img { transform: scale(1.04); }
.tour-body { padding: 26px; }
.tour-body h3 { color: var(--dark); margin-bottom: 10px; }
.tour-body p { font-size: 0.88rem; margin-bottom: 18px; }
.btn-outline-sm { display: inline-block; border: 1px solid var(--gold); color: var(--gold); padding: 8px 20px; font-size: 0.72rem; letter-spacing: 1.5px; text-transform: uppercase; transition: all 0.3s; }
.btn-outline-sm:hover { background: var(--gold); color: #fff; }

.custom-band { background: var(--dark); padding: 44px; display: flex; align-items: center; gap: 32px; border-left: 3px solid var(--gold); }
.custom-band > i { font-size: 2rem; color: var(--gold); flex-shrink: 0; }
.custom-band h3 { color: var(--white); margin-bottom: 8px; }
.custom-band p { color: var(--gray); font-size: 0.88rem; }
.custom-band .btn-gold { flex-shrink: 0; white-space: nowrap; }

/* Fleet detail page */
.vehicle-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; padding: 64px 0; border-bottom: 1px solid #eee; }
.vd-image img { width: 100%; height: 360px; object-fit: cover; }
.vd-info h2 { color: var(--dark); margin: 12px 0 18px; }
.vehicle-features { list-style: none; margin-top: 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.vehicle-features li { font-size: 0.85rem; color: #555; }
.vehicle-features i { color: var(--gold); margin-right: 8px; }

/* Services full page */
.service-full-item { display: grid; grid-template-columns: 90px 1fr; gap: 44px; align-items: flex-start; padding: 56px 0; border-bottom: 1px solid #eee; }
.sfi-icon { width: 72px; height: 72px; border: 1px solid var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sfi-icon i { color: var(--gold); font-size: 1.6rem; }
.sfi-content h2 { color: var(--dark); margin-bottom: 16px; }

/* ============================================
   ADMIN
   ============================================ */
.admin-wrap { font-family: var(--font-body); background: var(--dark); color: #ccc; min-height: 100vh; }

/* ============================================
   ANIMATIONS
   ============================================ */
[data-aos] { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-aos="fade-left"] { transform: translateX(30px); }
[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="zoom-in"] { transform: scale(0.93); }
[data-aos].aos-animate { opacity: 1; transform: none; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .intro-image { display: none; }
  .vehicle-detail { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero-logo { height: 220px; }
  .menu-toggle { display: flex; }
  .main-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: rgba(0,0,0,0.98);
    padding: 20px 24px 28px;
    gap: 0;
    border-top: 1px solid #1a1a1a;
  }
  .main-nav.open { display: flex; }
  .main-nav a { width: 100%; padding: 12px 0; border-bottom: 1px solid #1a1a1a; font-size: 0.78rem; }
  .btn-nav-contact, .lang-switcher { margin-left: 0 !important; margin-top: 8px; display: inline-block; width: auto !important; }
  .services-grid { grid-template-columns: 1fr; }
  .fleet-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .dest-grid { grid-template-columns: 1fr; }
  .tours-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .custom-band { flex-direction: column; text-align: center; }
  .service-full-item { grid-template-columns: 1fr; }
  section { padding: 60px 0; }
}

/* ============================================
   LANGUAGE DROPDOWN
   ============================================ */
.lang-dropdown { position: relative; margin-left: 8px; }
.lang-btn { background: none; border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.75); padding: 5px 10px; font-size: 0.7rem; letter-spacing: 1px; cursor: pointer; font-family: var(--font-body); transition: all 0.3s; }
.lang-btn:hover { border-color: var(--gold); color: var(--gold); }
.lang-menu { display: none; position: absolute; top: 100%; right: 0; background: var(--dark2); border: 1px solid var(--dark3); min-width: 60px; z-index: 1001; }
.lang-menu a { display: block; padding: 8px 14px; font-size: 0.7rem; letter-spacing: 1px; color: var(--gray-light); transition: all 0.2s; text-align: center; }
.lang-menu a:hover { background: var(--dark3); color: var(--gold); }
.lang-dropdown:hover .lang-menu { display: block; }

/* ============================================
   TOUR MODAL
   ============================================ */
.tour-modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.85); z-index: 2000; align-items: center; justify-content: center; padding: 20px; }
.tour-modal-overlay.active { display: flex; }
.tour-modal-box { background: var(--white); max-width: 780px; width: 100%; max-height: 85vh; overflow-y: auto; padding: 48px; position: relative; border-top: 3px solid var(--gold); }
.tour-modal-close { position: absolute; top: 16px; right: 20px; background: none; border: none; font-size: 1.4rem; cursor: pointer; color: var(--gray); transition: color 0.2s; }
.tour-modal-close:hover { color: var(--dark); }
.modal-tour-content h2 { font-family: var(--font-heading); color: var(--dark); margin-bottom: 16px; font-size: 1.8rem; }
.modal-tour-content h3 { font-family: var(--font-heading); color: var(--dark); margin: 24px 0 10px; font-size: 1.2rem; }
.modal-tour-content p { color: #555; line-height: 1.8; margin-bottom: 12px; font-size: 0.92rem; }
.modal-tour-content ul { list-style: none; padding: 0; margin-bottom: 16px; }
.modal-tour-content ul li { padding: 8px 0 8px 20px; border-bottom: 1px solid #f0f0f0; font-size: 0.9rem; color: #555; position: relative; }
.modal-tour-content ul li::before { content: '›'; position: absolute; left: 0; color: var(--gold); font-weight: bold; }
.modal-tour-content ul li strong { color: var(--dark); }
.tour-tip { background: rgba(184,151,46,0.08); border-left: 3px solid var(--gold); padding: 12px 16px; font-size: 0.88rem !important; color: #666 !important; margin-top: 16px; }

@media (max-width: 768px) {
  .tour-modal-box { padding: 28px 20px; }
  .modal-tour-content h2 { font-size: 1.4rem; }
}
