/* ============================
   AQUALUX YACHTS - MAIN STYLES
   Luxury Dark Ocean Theme
   ============================ */

:root {
  --navy: #0a1628;
  --navy-mid: #0f2044;
  --navy-light: #1a3060;
  --gold: #c9a84c;
  --gold-light: #e8c876;
  --gold-dim: rgba(201,168,76,0.15);
  --white: #ffffff;
  --off-white: #f0eeea;
  --gray: #8896a8;
  --card-bg: #0d1e38;
  --border: rgba(201,168,76,0.2);
  --shadow: 0 20px 60px rgba(0,0,0,0.4);
  --radius: 16px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--navy);
  color: var(--off-white);
  overflow-x: hidden;
}

/* ---- TYPOGRAPHY ---- */
h1,h2,h3,h4,h5,h6 { font-family: 'Playfair Display', serif; }
.text-gold { color: var(--gold) !important; }

/* ---- NAVBAR ---- */
#mainNav {
  background: transparent;
  transition: all 0.4s ease;
  padding: 20px 0;
  border-bottom: 1px solid transparent;
}
#mainNav.scrolled {
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white) !important;
  text-decoration: none;
}
.navbar-brand span { color: var(--gold); }
.navbar-brand i { color: var(--gold); }
.nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 8px 16px !important;
  transition: color 0.3s;
}
.nav-link:hover { color: var(--gold) !important; }
.navbar-toggler { border-color: var(--gold); }
.navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(201,168,76,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }

/* ---- BUTTONS ---- */
.btn-gold {
  background: linear-gradient(135deg, var(--gold), #a8832a);
  color: var(--navy) !important;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  padding: 12px 32px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.5);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold) !important;
  border: 2px solid var(--gold);
  border-radius: 50px;
  padding: 12px 32px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy) !important;
}

/* ---- HERO ---- */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.4;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.92) 0%, rgba(15,32,68,0.7) 50%, rgba(10,22,40,0.85) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-dim);
  border: 1px solid var(--border);
  color: var(--gold);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease forwards;
}
.hero-title {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease 0.2s both;
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 30px;
  font-weight: 300;
  animation: fadeInUp 0.8s ease 0.4s both;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 36px;
  animation: fadeInUp 0.8s ease 0.5s both;
}
.stat-item { text-align: center; }
.stat-num { display: block; font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--gold); }
.stat-label { font-size: 0.8rem; color: var(--gray); letter-spacing: 1px; text-transform: uppercase; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }
.hero-btns { animation: fadeInUp 0.8s ease 0.6s both; }
.hero-scroll {
  position: absolute;
  bottom: 30px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:1;transform:scaleY(1)} 50%{opacity:0.3;transform:scaleY(0.5)} }

/* ---- QUICK BOOK ---- */
.quick-book {
  background: var(--card-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 30px 0;
  position: relative;
  z-index: 10;
}
.quick-book-form .form-label { color: var(--gray); font-size: 0.8rem; letter-spacing: 1px; text-transform: uppercase; font-weight: 500; }
.quick-book-form .form-select,
.quick-book-form .form-control {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--white);
  border-radius: 10px;
  padding: 12px 16px;
}
.quick-book-form .form-select:focus,
.quick-book-form .form-control:focus {
  background: rgba(255,255,255,0.08);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
  color: var(--white);
}
.quick-book-form .form-select option { background: var(--navy-mid); }

/* ---- SECTIONS ---- */
.section-pad { padding: 100px 0; }
.section-badge {
  display: inline-block;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-family: 'Outfit', sans-serif;
}
.section-title { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 700; margin-bottom: 16px; color: var(--white); }
.section-sub { color: var(--gray); font-size: 1.05rem; max-width: 580px; margin: 0 auto; }

/* ---- FLEET CARDS ---- */
.fleet-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.4s ease;
  height: 100%;
}
.fleet-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: var(--shadow);
}
.fleet-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.fleet-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.fleet-card:hover .fleet-card-img img { transform: scale(1.08); }
.fleet-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.fleet-card-body { padding: 24px; }
.fleet-card-body h5 { font-size: 1.3rem; color: var(--white); margin-bottom: 8px; }
.fleet-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.fleet-meta span { font-size: 0.82rem; color: var(--gray); }
.fleet-meta span i { color: var(--gold); margin-right: 5px; }
.fleet-price { font-family: 'Playfair Display', serif; }
.fleet-price .amount { font-size: 1.6rem; color: var(--gold); font-weight: 700; }
.fleet-price .per { font-size: 0.8rem; color: var(--gray); }
.fleet-desc { font-size: 0.9rem; color: var(--gray); margin-bottom: 16px; line-height: 1.6; }

/* ---- OCCASIONS ---- */
.occasions-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--navy-mid) 0%, var(--navy) 100%);
}
.occasion-card {
  position: relative;
  height: 340px;
  border-radius: var(--radius);
  overflow: hidden;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: transform 0.4s ease;
}
.occasion-card:hover { transform: translateY(-5px); }
.oc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.9) 0%, rgba(10,22,40,0.3) 100%);
  transition: background 0.4s;
}
.occasion-card:hover .oc-overlay {
  background: linear-gradient(to top, rgba(10,22,40,0.95) 0%, rgba(10,22,40,0.5) 100%);
}
.oc-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px;
  text-align: center;
  transform: translateY(50px);
  transition: transform 0.4s ease;
}
.occasion-card:hover .oc-content { transform: translateY(0); }
.oc-icon {
  font-size: 2rem;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}
.oc-content h4 { font-size: 1.3rem; color: var(--white); margin-bottom: 8px; }
.oc-content p { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-bottom: 16px; }
.oc-btn {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  padding: 8px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.3s;
}
.oc-btn:hover { background: var(--gold-light); color: var(--navy); }

/* ---- WHY US ---- */
.why-section { background: var(--navy); }
.why-img-wrap { position: relative; }
.why-img {
  width: 100%; border-radius: var(--radius);
  border: 1px solid var(--border);
  filter: brightness(0.85);
}
.why-badge-float {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  padding: 14px 22px;
  border-radius: 12px;
  font-size: 0.9rem;
  box-shadow: 0 8px 24px rgba(201,168,76,0.4);
}
.why-features { margin-top: 30px; }
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 24px;
  padding: 20px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.3s;
}
.why-item:hover { border-color: var(--gold); transform: translateX(5px); }
.why-icon {
  width: 48px; height: 48px;
  background: var(--gold-dim);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.why-item h5 { font-family: 'Outfit', sans-serif; font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.why-item p { font-size: 0.88rem; color: var(--gray); margin: 0; }

/* ---- TESTIMONIALS ---- */
.testimonials-section {
  padding: 100px 0;
  background: var(--navy-mid);
}
.testi-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  height: 100%;
  transition: all 0.3s;
}
.testi-card:hover { border-color: var(--gold); }
.testi-stars { color: var(--gold); margin-bottom: 16px; font-size: 1rem; }
.testi-card p { color: rgba(255,255,255,0.75); font-style: italic; margin-bottom: 20px; line-height: 1.7; }
.testi-author strong { display: block; color: var(--white); font-family: 'Playfair Display', serif; margin-bottom: 2px; }
.testi-author span { font-size: 0.82rem; color: var(--gold); }

/* ---- CTA ---- */
.cta-section {
  position: relative;
  padding: 100px 0;
  background: url('https://images.unsplash.com/photo-1540946485063-a40da27545f8?w=1400') center/cover;
  overflow: hidden;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.95), rgba(15,32,68,0.9));
}
.cta-title { font-size: clamp(2rem, 5vw, 3.5rem); color: var(--white); margin-bottom: 16px; position: relative; z-index:1; }
.cta-sub { color: var(--gray); font-size: 1.1rem; margin-bottom: 30px; position: relative; z-index:1; }
.cta-contact { position: relative; z-index:1; }
.cta-phone { color: var(--gold); text-decoration: none; font-weight: 600; font-size: 1.1rem; transition: color 0.3s; }
.cta-phone:hover { color: var(--gold-light); }

/* ---- FOOTER ---- */
.site-footer {
  background: #070f1d;
  padding: 80px 0 0;
  border-top: 1px solid var(--border);
}
.footer-brand { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: var(--white); margin-bottom: 16px; }
.footer-brand span { color: var(--gold); }
.footer-brand i { color: var(--gold); }
.footer-desc { color: var(--gray); font-size: 0.9rem; line-height: 1.7; margin-bottom: 24px; }
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 40px; height: 40px;
  background: var(--gold-dim);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  text-decoration: none;
  transition: all 0.3s;
}
.social-links a:hover { background: var(--gold); color: var(--navy); }
.footer-head { color: var(--gold); font-family: 'Outfit', sans-serif; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; font-size: 0.85rem; margin-bottom: 20px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--gray); text-decoration: none; font-size: 0.9rem; transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }
.footer-contact { list-style: none; padding: 0; }
.footer-contact li { display: flex; gap: 12px; color: var(--gray); font-size: 0.88rem; margin-bottom: 14px; line-height: 1.5; }
.footer-contact li i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: 60px;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { color: var(--gray); font-size: 0.85rem; margin: 0; }
.admin-link { color: var(--gray); text-decoration: none; font-size: 0.8rem; transition: color 0.3s; }
.admin-link:hover { color: var(--gold); }

/* ---- FORMS ---- */
.form-control, .form-select {
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid var(--border) !important;
  color: var(--white) !important;
  border-radius: 10px !important;
}
.form-control::placeholder { color: var(--gray) !important; }
.form-control:focus, .form-select:focus {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1) !important;
}
.form-select option { background: var(--navy-mid); }
.form-label { color: var(--gray); font-size: 0.85rem; font-weight: 500; }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  height: 350px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-content { padding-top: 80px; }
.page-hero h1 { font-size: 3rem; color: var(--white); margin-bottom: 10px; }
.breadcrumb-item a { color: var(--gold); text-decoration: none; }
.breadcrumb-item.active { color: var(--gray); }
.breadcrumb-item+.breadcrumb-item::before { color: var(--gray); }

/* ---- ANIMATIONS ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---- BOOKING PAGE ---- */
.booking-section { padding: 80px 0; }
.booking-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}
.booking-card h4 { color: var(--gold); font-size: 1rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 28px; font-family: 'Outfit', sans-serif; font-weight: 600; }
.slot-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 10px; margin-bottom: 24px; }
.slot-btn {
  border: 1px solid var(--border);
  background: transparent;
  color: var(--gray);
  border-radius: 10px;
  padding: 10px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
}
.slot-btn:hover, .slot-btn.active {
  border-color: var(--gold);
  background: var(--gold-dim);
  color: var(--gold);
}
.slot-btn.booked { opacity: 0.4; pointer-events: none; text-decoration: line-through; }
.price-summary {
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}
.price-row { display: flex; justify-content: space-between; margin-bottom: 12px; font-size: 0.9rem; color: var(--gray); }
.price-row.total { border-top: 1px solid var(--border); padding-top: 12px; margin-top: 12px; color: var(--white); font-size: 1rem; font-weight: 600; }
.price-row.total span:last-child { color: var(--gold); font-size: 1.4rem; font-family: 'Playfair Display', serif; }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .hero-title { font-size: 2.5rem; }
  .hero-btns .btn { width: 100%; margin-bottom: 12px; }
  .hero-btns .me-3 { margin-right: 0 !important; }
  .stat-divider { display: none; }
  .why-badge-float { position: static; margin-top: 12px; display: inline-block; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-phone { display: block; margin: 8px 0; }
  .cta-phone.me-4 { margin-right: 0 !important; }
  .booking-card { padding: 24px; }
  .hero-scroll { display: none; }
}
