/* ============================================
   DUBAI YACHT JETSKI - Premium Design System
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- CSS Custom Properties --- */
:root {
  /* Navy Palette */
  --navy-darkest: #060d18;
  --navy-dark: #0a1628;
  --navy: #0f2240;
  --navy-medium: #162d50;
  --navy-light: #1e3a5c;
  --navy-lighter: #2a4a6e;

  /* Gold Palette */
  --gold: #c9a84c;
  --gold-light: #e8d5a3;
  --gold-dark: #a08535;
  --gold-muted: rgba(201, 168, 76, 0.15);
  --gold-gradient: linear-gradient(135deg, #c9a84c 0%, #e8d5a3 50%, #c9a84c 100%);

  /* Neutrals */
  --white: #ffffff;
  --off-white: #f8f9fc;
  --gray-50: #f5f6fa;
  --gray-100: #eef0f5;
  --gray-200: #e1e4ea;
  --gray-300: #c8cdd6;
  --gray-500: #8a94a6;
  --gray-700: #4a5568;
  --gray-900: #1a202c;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.14);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.18);
  --shadow-gold: 0 4px 24px rgba(201, 168, 76, 0.25);
  --shadow-card: 0 10px 40px rgba(10, 22, 40, 0.08);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-fast: 0.2s var(--ease-out);
  --transition-base: 0.4s var(--ease-out);
  --transition-slow: 0.6s var(--ease-out);

  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1200px;
  --container-padding: 0 24px;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-700);
  background: var(--white);
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--navy-darkest);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-light);
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

button,
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

/* --- Typography --- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy-dark);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

.section {
  padding: var(--section-padding);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-block;
  padding: 6px 20px;
  background: var(--gold-muted);
  color: var(--gold-dark);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  border: 1px solid rgba(201, 168, 76, 0.3);
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto;
}

/* --- Preloader --- */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--navy-darkest);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-logo {
  animation: pulse-gold 1.5s ease-in-out infinite;
}

.preloader-logo svg {
  width: 80px;
  height: 80px;
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition-base);
}

.navbar.scrolled {
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav-logo svg {
  height: 42px;
  width: auto;
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.nav-logo-text span {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
  letter-spacing: 0.3px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition-base);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.btn-book {
  background: linear-gradient(135deg, var(--gold) 0%, #e8c252 50%, var(--gold) 100%);
  background-size: 200% 100%;
  color: var(--navy-dark);
  padding: 12px 32px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(201, 168, 76, 0.3);
}

.btn-book::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transition: left 0.6s ease;
}

.btn-book:hover {
  background-position: 100% 0;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 25px rgba(201, 168, 76, 0.5), 0 0 40px rgba(201, 168, 76, 0.15);
  color: var(--navy-dark);
}

.btn-book:hover::before {
  left: 100%;
}

/* Nav Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-md);
  border: 1px solid rgba(201, 168, 76, 0.15);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  z-index: 100;
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 2px;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 12px 24px;
  color: rgba(255, 255, 255, 0.75) !important;
  font-size: 0.88rem;
  font-weight: 500;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  background: rgba(201, 168, 76, 0.1);
  color: var(--gold) !important;
  padding-left: 28px;
}

.nav-dropdown-menu a::after {
  display: none;
}

.dropdown-category-label {
  display: block;
  padding: 10px 24px 4px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  pointer-events: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 4px;
}

.dropdown-category-label:first-child {
  border-top: none;
  margin-top: 0;
  padding-top: 6px;
}

/* Mobile Menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.nav-toggle span {
  width: 28px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-darkest);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(6, 13, 24, 0.85) 0%,
      rgba(15, 34, 64, 0.7) 50%,
      rgba(6, 13, 24, 0.8) 100%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: float-particle 8s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 0 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 24px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: var(--radius-full);
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.1;
}

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

.hero-subtitle {
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-base);
  border: 2px solid var(--gold);
  letter-spacing: 0.5px;
}

.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-base);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

/* Hero Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

/* --- Page Hero (Inner Pages) --- */
.page-hero {
  position: relative;
  padding: 160px 0 80px;
  background: var(--navy-dark);
  text-align: center;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(201, 168, 76, 0.08) 0%, transparent 60%);
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-muted), transparent);
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  max-width: 550px;
  margin: 0 auto;
}

/* --- Fleet Cards (Vertical Layout) --- */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.fleet-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
}

.fleet-card::before {
  display: none;
}

.fleet-card:hover::before {
  display: none;
}

.fleet-card:hover {
  transform: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

/* Card Image - Top Section */
.fleet-card-image {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
  flex-shrink: 0;
}

.fleet-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fleet-card:hover .fleet-card-image img {
  transform: none;
}

.fleet-card-overlay {
  display: none;
}

/* Top Bar (Badge + Rating) */
.fleet-card-top {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 3;
}

/* Badge */
.fleet-badge {
  background: var(--gold);
  color: var(--navy-dark);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.4);
}

.fleet-badge.premium {
  background: linear-gradient(135deg, #c9a84c, #f5d680, #c9a84c);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

.fleet-badge.adventure {
  background: linear-gradient(135deg, #00b4d8, #0077b6);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(0, 180, 216, 0.4);
}

/* Rating */
.fleet-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--gold);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.8rem;
  white-space: nowrap;
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.fleet-rating i {
  font-size: 0.7rem;
  color: var(--gold);
}

/* Card Content - Below Image */
.fleet-card-content {
  position: relative;
  z-index: 2;
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* Price Tag */
.fleet-price-tag {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 4px;
  flex-wrap: wrap;
}

.fleet-price-amount {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy-dark);
}

.fleet-price-unit {
  font-size: 0.85rem;
  color: rgba(0, 0, 0, 0.45);
  font-weight: 500;
  line-height: 1.2;
  display: inline-block;
}

.fleet-card-content h3 {
  font-size: 1.35rem;
  color: var(--navy-dark);
  margin-bottom: 12px;
  font-weight: 700;
}

.fleet-tagline {
  font-size: 0.88rem;
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 16px;
}

/* Specs Bar */
.fleet-specs-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.fleet-spec {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--navy-dark);
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  flex-shrink: 0;
  white-space: nowrap;
}

.fleet-spec i {
  color: var(--gold);
  font-size: 0.7rem;
}

.fleet-spec span {
  display: inline-block;
  line-height: 1;
}

/* Highlights - Hidden by default, shown on hover */
.fleet-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fleet-card:hover .fleet-highlights {
  max-height: 80px;
  opacity: 1;
}

.fleet-highlights span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  color: rgba(0, 0, 0, 0.6);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.15);
}

.fleet-highlights span i {
  color: var(--gold);
  font-size: 0.6rem;
}

/* Actions */
.fleet-card-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.fleet-btn-primary {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy-dark);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
}

.fleet-btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.fleet-btn-primary:hover::before {
  left: 100%;
}

.fleet-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.45);
  color: var(--navy-dark);
}

.fleet-btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #25d366;
  border-radius: 50%;
  font-size: 1.15rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.fleet-btn-whatsapp:hover {
  background: #25d366;
  color: var(--white);
  transform: translateY(-2px) scale(1.1);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  border-color: #25d366;
}

/* --- Categories Grid --- */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}

.category-card {
  text-align: center;
  padding: 36px 20px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--gray-100);
  transition: all var(--transition-base);
  cursor: pointer;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.category-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
  color: var(--gold);
  transition: all var(--transition-base);
}

.category-card:hover .category-icon {
  background: var(--gold);
  color: var(--white);
  transform: scale(1.1);
}

.category-card h3 {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.category-card p {
  font-size: 0.82rem;
  color: var(--gray-500);
}

/* --- Why Choose Section (Dark BG) --- */
.section-dark {
  background: var(--navy-dark);
  position: relative;
}

.section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(201, 168, 76, 0.05) 0%, transparent 50%);
}

.section-dark .section-header h2 {
  color: var(--white);
}

.section-dark .section-header p {
  color: rgba(255, 255, 255, 0.6);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
  position: relative;
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all var(--transition-base);
  backdrop-filter: blur(10px);
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-4px);
}

.feature-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: var(--radius-sm);
  background: var(--gold-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.25rem;
  transition: all var(--transition-base);
}

.feature-card:hover .feature-icon {
  background: var(--gold);
  color: var(--navy-dark);
}

.feature-card h3 {
  font-size: 1.05rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.feature-card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

/* --- Stats Bar --- */
.stats-bar {
  background: var(--navy);
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

.stats-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.stats-bar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item h3 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 800;
}

.stat-item p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 500;
}

/* --- Testimonials --- */
.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--gray-100);
  transition: all var(--transition-base);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 5rem;
  font-family: var(--font-heading);
  color: var(--gold-muted);
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  color: var(--gold);
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.testimonial-name {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* --- CTA Section --- */
.cta-section {
  background: linear-gradient(135deg, var(--navy-darkest) 0%, var(--navy) 100%);
  text-align: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 40%);
  animation: rotate-slow 30s linear infinite;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
}

.cta-section h2 .gold {
  color: var(--gold);
}

.cta-section p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.05rem;
  max-width: 550px;
  margin: 0 auto 36px;
  position: relative;
}

/* --- About Page --- */
.story-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-text p {
  margin-bottom: 16px;
  color: var(--gray-700);
  line-height: 1.8;
}

.story-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.story-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.story-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  transform: translate(12px, 12px);
  z-index: -1;
}

/* Values Cards */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.value-card {
  text-align: center;
  padding: 48px 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-base);
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--gold);
}

.value-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--navy-dark);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.8rem;
  transition: all var(--transition-base);
}

.value-card:hover .value-icon {
  background: var(--gold);
  color: var(--navy-dark);
  transform: scale(1.1) rotate(5deg);
}

.value-card h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
}

/* Why Choose (About page checkmarks) */
.choose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.choose-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.choose-item:hover {
  background: var(--gold-muted);
  transform: translateX(6px);
}

.choose-item i {
  color: var(--gold);
  font-size: 1.1rem;
  min-width: 20px;
}

.choose-item span {
  font-weight: 500;
  color: var(--navy);
  font-size: 0.92rem;
}

/* --- Contact Page --- */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid var(--gray-100);
}

.contact-info {
  background: var(--navy-dark);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
}

.contact-info::before {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -30%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.06);
}

.contact-info h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.contact-info>p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-bottom: 36px;
}

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

.contact-item-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
}

.contact-item h4 {
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-item p,
.contact-item a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  line-height: 1.5;
}

.contact-item a:hover {
  color: var(--gold);
}

.contact-form {
  padding: 48px;
}

.contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: 4px;
}

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

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

.form-row-3 {
  grid-template-columns: 1fr 1fr 1fr;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-group label .required {
  color: var(--gold);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  color: var(--gray-900);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--gold-muted);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-300);
}

.btn-submit {
  width: 100%;
  padding: 16px;
  background: var(--navy-dark);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  border: 2px solid var(--navy-dark);
  font-size: 0.95rem;
}

.btn-submit:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-dark);
  box-shadow: var(--shadow-gold);
}

/* Quick Contact Buttons */
.quick-contact {
  text-align: center;
  padding: 60px 0;
}

.quick-contact h3 {
  margin-bottom: 24px;
}

.quick-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-quick {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition-base);
  min-width: 240px;
  justify-content: center;
}

.btn-call {
  background: var(--gold);
  color: var(--navy-dark);
  border: 2px solid var(--gold);
}

.btn-call:hover {
  background: transparent;
  color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  border: 2px solid #25d366;
}

.btn-whatsapp:hover {
  background: transparent;
  color: #25d366;
  transform: translateY(-3px);
}

/* Marina Section */
.marina-section {
  text-align: center;
  background: var(--gray-50);
}

.marina-card {
  max-width: 700px;
  margin: 0 auto;
  padding: 48px;
  background: var(--navy-dark);
  border-radius: var(--radius-xl);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.marina-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top center, rgba(201, 168, 76, 0.1) 0%, transparent 60%);
}

.marina-card i.location-pin {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.marina-card h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.marina-card p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

/* --- Footer --- */
.footer {
  background: var(--navy-darkest);
  padding-top: 80px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 60px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  margin: 20px 0 24px;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: all var(--transition-base);
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-dark);
  transform: translateY(-3px);
}

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold);
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.footer-col ul a:hover {
  color: var(--gold);
  padding-left: 6px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-contact-item i {
  color: var(--gold);
  margin-top: 3px;
  font-size: 0.85rem;
}

.footer-contact-item span,
.footer-contact-item a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
}

.footer-contact-item a:hover {
  color: var(--gold);
}

/* Newsletter */
.newsletter-form {
  display: flex;
  margin-top: 24px;
  gap: 8px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 0.88rem;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.newsletter-form input:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
}

.newsletter-form button {
  padding: 12px 20px;
  background: var(--gold);
  color: var(--navy-dark);
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-size: 0.85rem;
}

.newsletter-form button:hover {
  background: var(--gold-light);
}

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.82rem;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.82rem;
}

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

/* Footer Payment Section */
.footer-payment {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-payment-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-payment-text {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-payment-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: rgba(212, 162, 78, 0.12);
  border: 1px solid rgba(212, 162, 78, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
}

.footer-payment-text h4 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 4px;
  font-family: var(--font-heading);
  padding-bottom: 0;
  position: static;
}

.footer-payment-text h4::after {
  display: none;
}

.footer-payment-text p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
}

.footer-payment-cards {
  background: linear-gradient(135deg, #d4a24e 0%, #c49a3a 50%, #d4a24e 100%);
  padding: 16px 28px;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(212, 162, 78, 0.2);
  display: flex;
  align-items: center;
}

.payment-logos-img {
  height: 38px;
  width: auto;
  object-fit: contain;
  display: block;
}

@media (max-width: 768px) {
  .footer-payment-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .footer-payment-cards {
    width: 100%;
    justify-content: center;
  }

  .payment-logos-img {
    height: 32px;
    max-width: 100%;
  }
}

/* --- Logo Image --- */
.logo-img {
  height: 45px;
  width: auto;
  object-fit: contain;
}

/* --- Wave Divider --- */
.wave-divider {
  position: relative;
  margin-top: -2px;
}

.wave-divider svg {
  display: block;
  width: 100%;
}

/* --- Product Hero --- */
.product-hero {
  position: relative;
  height: 55vh;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.product-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.product-hero:hover .product-hero-bg {
  transform: scale(1);
}

.product-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.95) 0%, rgba(10, 22, 40, 0.7) 40%, rgba(10, 22, 40, 0.5) 100%);
}

.product-hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 50px;
}

.product-hero-content h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin: 12px 0 8px;
}

.product-hero-content>p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  max-width: 600px;
}

.product-hero-price {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-top: 20px;
}

.price-tag {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
}

.price-tag small {
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
}

.price-min {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
  padding: 4px 14px;
  border-radius: var(--radius-full);
}

/* --- Product Bento Layout --- */
.product-section {
  padding-top: 48px;
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 36px;
  align-items: start;
}

/* Content Area (75%) */
.product-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Bento Gallery */
.bento-gallery {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.bento-main {
  position: relative;
  height: 420px;
  cursor: zoom-in;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.bento-main .gallery-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.3s ease;
}

.bento-main:hover .gallery-main-img {
  transform: scale(1.03);
}

.bento-zoom {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.9rem;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
}

.bento-main:hover .bento-zoom {
  opacity: 1;
  transform: scale(1);
}

.bento-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(75px, 1fr));
  gap: 4px;
  background: var(--gray-100);
  padding: 4px;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.bento-thumb {
  height: 65px;
  overflow: hidden;
  cursor: pointer;
  border-radius: var(--radius-sm);
  opacity: 0.6;
  transition: all 0.25s ease;
  border: 2px solid transparent;
}

.bento-thumb:hover,
.bento-thumb.active {
  opacity: 1;
  border-color: var(--gold);
  transform: scale(1.05);
}

.bento-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Bento Spec Cards */
.bento-specs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.bento-spec-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 20px 12px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: default;
}

.bento-spec-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.12);
}

.bento-spec-card i {
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 10px;
}

.bento-spec-value {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-dark);
}

.bento-spec-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--gray-500);
  margin-top: 4px;
}

/* Bento Content Cards */
.bento-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.bento-card h2 {
  font-size: 1.4rem;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold-muted);
}

.bento-card p {
  color: var(--gray-700);
  line-height: 1.85;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.bento-card p:last-child {
  margin-bottom: 0;
}

/* Bento Amenities */
.bento-amenities {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 10px;
}

.bento-amenity {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: var(--gray-700);
  font-weight: 500;
  transition: all 0.25s ease;
  border: 1px solid transparent;
}

.bento-amenity:hover {
  border-color: var(--gold);
  background: var(--gold-muted);
}

.bento-amenity i {
  color: var(--gold);
  font-size: 0.9rem;
  width: 18px;
  text-align: center;
}

/* Included Items */
.bento-included {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.included-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.92rem;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-50);
}

.included-item:last-child {
  border-bottom: none;
}

.included-item i {
  color: var(--gold);
  font-size: 0.95rem;
}

/* --- Sidebar Booking --- */
.product-sidebar {
  position: sticky;
  top: 90px;
}

.sidebar-booking {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.sidebar-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--gold-muted);
}

.sidebar-amount {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy-dark);
}

.sidebar-unit {
  color: var(--gray-500);
  font-size: 0.9rem;
}

.sidebar-field {
  margin-bottom: 14px;
}

.sidebar-field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sidebar-field input,
.sidebar-field select,
.sidebar-field textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  background: var(--gray-50);
  transition: all 0.2s ease;
  color: var(--navy-dark);
}

.sidebar-field input:focus,
.sidebar-field select:focus,
.sidebar-field textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--gold-muted);
}

.sidebar-field textarea {
  resize: vertical;
  min-height: 70px;
}

.sidebar-submit {
  width: 100%;
  padding: 14px;
  background: var(--navy-dark);
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  margin-top: 6px;
}

.sidebar-submit:hover {
  background: var(--gold);
  color: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.sidebar-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  background: #25d366;
  color: var(--white);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.88rem;
  margin-top: 10px;
  transition: all 0.3s ease;
}

.sidebar-whatsapp:hover {
  background: #1fad55;
  transform: translateY(-2px);
  color: var(--white);
}

.sidebar-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.88rem;
  margin-top: 8px;
  transition: all 0.3s ease;
}

.sidebar-call:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: var(--radius-md);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: all var(--transition-fast);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

/* --- Animations --- */
@keyframes float-particle {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }

  10% {
    opacity: 0.6;
  }

  90% {
    opacity: 0.6;
  }

  100% {
    transform: translateY(-100vh) scale(1);
    opacity: 0;
  }
}

@keyframes scroll-pulse {

  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(1);
  }

  50% {
    opacity: 1;
    transform: scaleY(1.3);
  }
}

@keyframes pulse-gold {

  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

@keyframes rotate-slow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .fleet-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fleet-card {
    height: auto;
  }

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

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

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .product-layout {
    grid-template-columns: 1fr;
  }

  .product-sidebar {
    position: static;
  }

  .bento-specs {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
  }

  .nav-links {
    display: none;
  }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: linear-gradient(180deg, var(--navy-darkest) 0%, rgba(10, 22, 40, 0.98) 100%);
    justify-content: center;
    align-items: center;
    gap: 8px;
    z-index: 1000;
    padding: 80px 40px;
  }

  .nav-links.active>a,
  .nav-links.active>.nav-dropdown>.nav-dropdown-trigger {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--white) !important;
    padding: 14px 24px;
    width: 100%;
    text-align: center;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    position: relative;
  }

  .nav-links.active>a:hover,
  .nav-links.active>a.active {
    color: var(--gold) !important;
    background: rgba(201, 168, 76, 0.08);
  }

  .nav-links.active>a::after {
    display: none;
  }

  .nav-links.active .nav-dropdown {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .nav-links.active .nav-dropdown-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
  }

  .nav-links.active .nav-dropdown-trigger i {
    transition: transform 0.3s ease;
    font-size: 0.75rem !important;
  }

  .nav-links.active .nav-dropdown.open .nav-dropdown-trigger i {
    transform: rotate(180deg);
  }

  .nav-links.active .nav-dropdown-trigger:hover,
  .nav-links.active .nav-dropdown-trigger.active {
    color: var(--gold) !important;
  }

  .nav-links.active .nav-dropdown-menu {
    position: static;
    transform: none;
    background: rgba(201, 168, 76, 0.05);
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: var(--radius-md);
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transition: all 0.35s ease;
    padding: 0;
    min-width: auto;
    width: 85%;
    margin-top: 4px;
  }

  .nav-links.active .nav-dropdown-menu::before {
    display: none;
  }

  .nav-links.active .nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 300px;
    padding: 8px 0;
    margin-top: 8px;
  }

  .nav-links.active .nav-dropdown-menu a {
    font-size: 1rem !important;
    font-weight: 500;
    padding: 12px 24px !important;
    color: rgba(255, 255, 255, 0.7) !important;
    text-align: center;
    border-left: none;
    transition: all 0.2s ease;
  }

  .nav-links.active .nav-dropdown-menu a:hover {
    color: var(--gold) !important;
    background: rgba(201, 168, 76, 0.1);
    padding-left: 24px !important;
  }

  .nav-toggle {
    display: flex;
    z-index: 1001;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .fleet-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .fleet-card {
    height: auto;
  }

  .fleet-card-content {
    padding: 22px 20px;
  }

  .fleet-price-amount {
    font-size: 1.45rem;
    line-height: 1.1;
  }

  .fleet-price-unit {
    font-size: 0.8rem;
    margin-top: 2px;
  }

  .fleet-card .fleet-highlights {
    max-height: 80px;
    opacity: 1;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-row,
  .form-row-3 {
    grid-template-columns: 1fr;
  }

  .choose-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom .container {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .page-hero {
    padding: 130px 0 60px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .product-hero {
    height: 45vh;
    min-height: 300px;
  }

  .bento-main {
    height: 260px;
  }

  .bento-specs {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-card {
    padding: 24px;
  }

  .logo-img {
    height: 38px;
  }
}

@media (max-width: 480px) {
  .categories-grid {
    grid-template-columns: 1fr;
  }

  .quick-btns {
    flex-direction: column;
    align-items: center;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .bento-specs {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .bento-amenities {
    grid-template-columns: 1fr;
  }

  .product-hero-content h1 {
    font-size: 1.8rem;
  }

  .price-tag {
    font-size: 1.4rem;
  }
}
/* ============================================
   THANK YOU PAGE STYLES
   ============================================ */
.thankyou-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 20px 80px;
  background: linear-gradient(135deg, #0a1628 0%, #1a2a4a 50%, #0a1628 100%);
}

.thankyou-card {
  background: #fff;
  border-radius: 24px;
  padding: 50px 40px;
  max-width: 560px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  animation: thankyouFadeUp 0.6s ease-out;
}

@keyframes thankyouFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Success Checkmark Animation */
.thankyou-icon {
  margin-bottom: 30px;
}

.thankyou-circle {
  width: 80px;
  height: 80px;
  margin: 0 auto;
}

.thankyou-checkmark {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: block;
  stroke-width: 2;
  stroke: #27ae60;
  stroke-miterlimit: 10;
  animation: thankyouScale 0.3s ease-in-out 0.6s both;
}

.thankyou-checkmark-circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #27ae60;
  fill: none;
  animation: thankyouStroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.thankyou-checkmark-check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  stroke-width: 3;
  animation: thankyouStroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.6s forwards;
}

@keyframes thankyouStroke {
  100% { stroke-dashoffset: 0; }
}

@keyframes thankyouScale {
  0%, 100% { transform: none; }
  50% { transform: scale3d(1.1, 1.1, 1); }
}

.thankyou-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 10px;
}

.thankyou-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 8px;
}

.thankyou-text {
  font-size: 1rem;
  color: #777;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* WhatsApp Button */
.thankyou-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #25D366;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  padding: 18px 40px;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 35px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

.thankyou-whatsapp-btn i {
  font-size: 1.5rem;
}

.thankyou-whatsapp-btn:hover {
  background: #1fb855;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  color: #fff;
}

/* Booking Details */
.thankyou-details {
  background: #f8f9fa;
  border-radius: 16px;
  padding: 25px;
  margin-bottom: 30px;
  text-align: left;
}

.thankyou-detail-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 0;
  border-bottom: 1px solid #e9ecef;
}

.thankyou-detail-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.thankyou-detail-item:first-child {
  padding-top: 0;
}

.thankyou-detail-item i {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #c9a84c, #e8c96d);
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.thankyou-detail-item div {
  display: flex;
  flex-direction: column;
}

.thankyou-detail-item .detail-label {
  font-size: 0.8rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.thankyou-detail-item .detail-value {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a2e;
}

/* Back Button */
.thankyou-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0a1628;
  font-weight: 600;
  text-decoration: none;
  padding: 12px 30px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.thankyou-back-btn:hover {
  border-color: #c9a84c;
  color: #c9a84c;
}

/* Mobile Responsive */
@media (max-width: 600px) {
  .thankyou-section {
    padding: 120px 15px 60px;
  }
  .thankyou-card {
    padding: 35px 25px;
    border-radius: 18px;
  }
  .thankyou-title {
    font-size: 1.6rem;
  }
  .thankyou-whatsapp-btn {
    font-size: 1rem;
    padding: 15px 25px;
  }
}
