/* ============================================
   EXOTIC ISLANDS INTERNATIONAL v2
   Charter-Focused Site
   Fonts: MADE Canvas (for "EXOTIC"), Montserrat (all other)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800&display=swap');

:root {
  --gold: #C9A84C;
  --gold-light: #D4AF37;
  --gold-dark: #A88B3D;
  --navy: #1A1A2E;
  --navy-light: #16213E;
  --ocean: #1B6CA8;
  --ocean-light: #2196F3;
  --teal: #0F3460;
  --aqua: #0E918C;
  --white: #FFFFFF;
  --off-white: #F8F9FA;
  --light-gray: #E9ECEF;
  --medium-gray: #6C757D;
  --dark-gray: #343A40;
  --text: #212529;
  --text-light: #F8F9FA;
  --overlay: rgba(26, 26, 46, 0.55);
  --overlay-heavy: rgba(26, 26, 46, 0.85);
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.08);
  --shadow-md: 0 5px 25px rgba(0,0,0,0.1);
  --shadow-lg: 0 15px 50px rgba(0,0,0,0.15);
  --radius: 12px;
  --radius-sm: 8px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Montserrat', sans-serif;
  --header-h: 100px;
  --max-w: 1200px;
  --transition: 0.3s ease;
}

/* RESET */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); font-weight: 400; color: var(--text); line-height: 1.7; overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
a:hover { color: var(--gold); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* UTILITY */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }

.exotic-word {
  font-family: var(--font-display);
  color: var(--gold);
  letter-spacing: 2px;
  font-weight: 800;
}

.section { padding: 100px 0; }
.section-sm { padding: 70px 0; }

.section-heading {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 2.2rem;
  margin-bottom: 16px;
  line-height: 1.3;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--medium-gray);
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.8;
}

.gold-divider {
  width: 70px;
  height: 3px;
  background: var(--gold);
  margin: 24px auto;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 15px 36px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201,168,76,0.4);
  color: var(--navy);
}

.btn-outline-gold {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255,255,255,0.3);
  color: var(--navy);
}

.btn-ocean {
  background: var(--ocean);
  color: var(--white);
}
.btn-ocean:hover {
  background: var(--ocean-light);
  transform: translateY(-2px);
  color: var(--white);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.8rem;
}

/* ---- HEADER ---- */
.site-header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 2px solid var(--gold);
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(255,255,255,0.99);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 12px 40px;
}

.header-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.header-logo-img {
  height: 75px;
  width: auto;
  display: block;
  transition: all var(--transition);
}
.header-logo:hover .header-logo-img { opacity: 0.85; }
.site-header.scrolled .header-logo-img { height: 60px; }
.header-logo .logo-text {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1.4rem;
  letter-spacing: 3px;
  font-weight: 800;
}
.header-logo .logo-sub {
  font-family: var(--font-body);
  color: var(--ocean);
  font-size: 0.55rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-top: -2px;
  opacity: 0.8;
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

.header-nav a {
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
  white-space: nowrap;
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

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

.header-nav a:hover { color: var(--ocean); }
.header-nav a.active { color: var(--gold); }

.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.header-cta .btn { padding: 12px 26px; font-size: 0.8rem; letter-spacing: 1.2px; }

.whatsapp-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 50px;
  background: rgba(37,211,102,0.1);
  transition: background var(--transition);
}
.whatsapp-link span { font-size: 0.78rem; font-weight: 600; color: #1a9e4a; display: inline; }
.whatsapp-link:hover { background: rgba(37,211,102,0.2); color: #25D366; }
.whatsapp-link svg { width: 18px; height: 18px; fill: #25D366; }

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: all var(--transition);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; right: -100%;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: var(--navy);
  z-index: 1001;
  overflow-y: auto;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 90px 30px 30px;
}

.mobile-menu.active { right: 0; }
.mobile-menu a {
  display: block;
  color: var(--text-light);
  font-size: 1rem;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu a:hover { color: var(--gold); padding-left: 8px; }

.mobile-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
}
.mobile-overlay.active { display: block; }

.mobile-close {
  position: absolute;
  top: 25px; right: 25px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
}

/* ---- SHIMMER & WATER EFFECTS ---- */
@keyframes shimmer {
  0% { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}

@keyframes waterRipple {
  0%, 100% { transform: translateY(0) scaleX(1); }
  25% { transform: translateY(-3px) scaleX(1.01); }
  50% { transform: translateY(0) scaleX(1); }
  75% { transform: translateY(3px) scaleX(0.99); }
}

@keyframes lightReflection {
  0% { opacity: 0; transform: translateX(-100%) rotate(25deg); }
  50% { opacity: 0.15; }
  100% { opacity: 0; transform: translateX(100%) rotate(25deg); }
}

@keyframes gentleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes waveMove {
  0% { transform: translateX(0) translateZ(0); }
  100% { transform: translateX(-50%) translateZ(0); }
}

.shimmer-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.shimmer-overlay::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(255, 255, 255, 0.03) 25%,
    rgba(201, 168, 76, 0.06) 50%,
    rgba(255, 255, 255, 0.03) 75%,
    transparent 100%
  );
  animation: shimmer 8s ease-in-out infinite;
}

.shimmer-overlay::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.08),
    transparent
  );
  transform: rotate(25deg);
  animation: lightReflection 6s ease-in-out infinite;
}

/* Water wave border decoration */
.wave-border {
  position: relative;
  overflow: hidden;
}

.wave-border::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 200%;
  height: 80px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80'%3E%3Cpath fill='%23F8F9FA' d='M0,40 C360,80 720,0 1080,40 C1260,60 1380,50 1440,40 L1440,80 L0,80Z'/%3E%3C/svg%3E") repeat-x;
  background-size: 50% 100%;
  animation: waveMove 10s linear infinite;
  z-index: 5;
}

.wave-border-dark::after {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80'%3E%3Cpath fill='%231A1A2E' d='M0,40 C360,80 720,0 1080,40 C1260,60 1380,50 1440,40 L1440,80 L0,80Z'/%3E%3C/svg%3E") repeat-x;
  background-size: 50% 100%;
  animation: waveMove 10s linear infinite;
}

.wave-border-white::after {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80'%3E%3Cpath fill='%23FFFFFF' d='M0,40 C360,80 720,0 1080,40 C1260,60 1380,50 1440,40 L1440,80 L0,80Z'/%3E%3C/svg%3E") repeat-x;
  background-size: 50% 100%;
  animation: waveMove 10s linear infinite;
}

/* Parallax-style section backgrounds */
.parallax-bg {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 768px) {
  .parallax-bg { background-attachment: scroll; }
  .wave-border::after { height: 40px; }
}

/* Image with color grade overlay */
.img-cover {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

.color-grade {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}

.color-grade-ocean {
  background: linear-gradient(
    135deg,
    rgba(15, 52, 96, 0.3) 0%,
    rgba(27, 108, 168, 0.2) 50%,
    rgba(14, 145, 140, 0.25) 100%
  );
}

.color-grade-gold {
  background: linear-gradient(
    135deg,
    rgba(26, 26, 46, 0.4) 0%,
    rgba(201, 168, 76, 0.15) 50%,
    rgba(26, 26, 46, 0.3) 100%
  );
}

.color-grade-sunset {
  background: linear-gradient(
    180deg,
    rgba(26, 26, 46, 0.2) 0%,
    rgba(201, 168, 76, 0.1) 40%,
    rgba(230, 126, 34, 0.15) 70%,
    rgba(26, 26, 46, 0.4) 100%
  );
}

/* ---- HERO ---- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 40%, var(--ocean) 70%, var(--aqua) 100%);
  z-index: 0;
}

.hero-video {
  position: absolute;
  top: 50%; left: 50%;
  min-width: 100%; min-height: 100%;
  width: auto; height: auto;
  transform: translate(-50%, -50%);
  z-index: 0;
  object-fit: cover;
}

.hero-bg::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 40%;
  background: linear-gradient(to top, rgba(26,26,46,0.6), transparent);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(
    180deg,
    rgba(26, 26, 46, 0.5) 0%,
    rgba(26, 26, 46, 0.3) 40%,
    rgba(15, 52, 96, 0.4) 70%,
    rgba(26, 26, 46, 0.6) 100%
  );
  z-index: 1;
}

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

.hero-label {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold);
  padding: 8px 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 30px;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease forwards;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.2s forwards;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
  font-weight: 300;
  line-height: 1.8;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.4s forwards;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.6s forwards;
}

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

/* ---- BOATS / FLEET SECTION ---- */
.fleet-section { padding: 100px 0; background: var(--off-white); }

.boat-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.boat-card {
  width: calc(33.333% - 20px);
  max-width: 420px;
  min-width: 300px;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
}
.boat-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.boat-card-img {
  height: 280px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.boat-card-img .availability-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #27AE60;
  color: var(--white);
  padding: 6px 14px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 20px;
}

.boat-card-img .partner-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--gold);
  color: var(--navy);
  padding: 6px 14px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 20px;
}

.boat-card-body {
  padding: 28px;
}

.boat-card-body h3 {
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 6px;
  color: var(--navy);
}

.boat-type {
  font-size: 0.8rem;
  color: var(--ocean);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.boat-card-body p {
  color: var(--medium-gray);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.boat-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 20px;
  padding: 16px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
}

.boat-spec {
  font-size: 0.8rem;
  color: var(--dark-gray);
}
.boat-spec strong {
  color: var(--navy);
  font-weight: 600;
}

.boat-card-actions {
  display: flex;
  gap: 10px;
}

.boat-card-actions .btn { flex: 1; text-align: center; padding: 12px 16px; }

/* ---- CHARTER TYPES ---- */
.charter-types-section { padding: 100px 0; background: var(--white); }

.charter-type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.charter-type-card {
  padding: 35px 30px;
  border-radius: var(--radius);
  background: var(--off-white);
  text-align: center;
  transition: all var(--transition);
  border: 2px solid transparent;
}

.charter-type-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.charter-type-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.charter-type-card h3 {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.charter-type-card p {
  font-size: 0.9rem;
  color: var(--medium-gray);
  line-height: 1.6;
}

/* ---- HOW IT WORKS ---- */
.how-it-works { padding: 100px 0; background: var(--navy); color: var(--white); }

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

.step-item {
  text-align: center;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(201,168,76,0.15);
  border: 2px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 auto 20px;
}

.step-item h3 {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--white);
}

.step-item p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

/* ---- REFERRAL TRACKING ---- */
.inquiry-section { padding: 100px 0; background: var(--off-white); }

.inquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.inquiry-form-wrap {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.inquiry-form-wrap h3 {
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.inquiry-form-wrap .form-sub {
  font-size: 0.9rem;
  color: var(--medium-gray);
  margin-bottom: 28px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

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

.inquiry-benefits {
  padding: 20px 0;
}

.inquiry-benefits h3 {
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 20px;
}

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

.benefit-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  background: rgba(201,168,76,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.benefit-item h4 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.benefit-item p {
  font-size: 0.88rem;
  color: var(--medium-gray);
  line-height: 1.6;
}

/* ---- TESTIMONIALS ---- */
.testimonials-section { padding: 100px 0; background: var(--white); }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  padding: 35px;
  border-radius: var(--radius);
  background: var(--off-white);
  position: relative;
}

.testimonial-card .stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--dark-gray);
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-card .author {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
}

.testimonial-card .author-detail {
  font-size: 0.8rem;
  color: var(--medium-gray);
}

/* ---- ABOUT / FOUNDER (compact) ---- */
.about-strip {
  padding: 100px 0;
  background: var(--navy);
  color: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 50px;
  align-items: center;
}

.about-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-photo .placeholder-img {
  width: 100%;
  height: 380px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-weight: 600;
}

.about-text h2 {
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 8px;
  color: var(--white);
}

.about-text .title-role {
  color: var(--gold);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 20px;
}

.about-text p {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 14px;
}

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  height: 45vh;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}

.page-hero .hero-bg,
.page-hero .hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
}

.page-hero-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.page-hero-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
}

.page-content { padding: 80px 0; }

/* ---- CTA BANNER ---- */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  text-align: center;
  color: var(--white);
}

.cta-banner h2 {
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 12px;
}

.cta-banner p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- FOOTER ---- */
.site-footer {
  background: var(--navy);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo-img {
  height: auto;
  width: 150px;
  display: block;
  margin-bottom: 16px;
  filter: brightness(1.1);
}

.footer-brand .logo-text {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1.3rem;
  letter-spacing: 2px;
  font-weight: 800;
}

.footer-brand .logo-sub {
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  display: block;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

.footer-col h4 {
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  padding: 4px 0;
  transition: all var(--transition);
}
.footer-col a:hover {
  color: var(--gold);
  padding-left: 6px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}

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

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

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all var(--transition);
  padding: 0;
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--navy);
}
.footer-social a svg { width: 16px; height: 16px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}

.footer-bottom a {
  color: rgba(255,255,255,0.5);
  margin-left: 20px;
  padding: 0;
}
.footer-bottom a:hover { color: var(--gold); }

/* ---- REFERRAL TRACKING NOTICE ---- */
.referral-notice {
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius-sm);
  padding: 12px 20px;
  font-size: 0.82rem;
  color: var(--gold-dark);
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ---- COOKIE BANNER ---- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100%;
  background: var(--navy);
  color: var(--white);
  padding: 16px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  z-index: 1100;
  font-size: 0.85rem;
  transform: translateY(100%);
  transition: transform 0.4s;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner button {
  padding: 8px 20px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 4px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-body);
}

/* ---- DASHBOARD STYLES ---- */
.dashboard-section { padding: 40px 0; }

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.stat-card .stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
}

.stat-card .stat-label {
  font-size: 0.78rem;
  color: var(--medium-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.log-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.log-table th {
  background: var(--navy);
  color: var(--white);
  padding: 14px 18px;
  text-align: left;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.log-table td {
  padding: 12px 18px;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--light-gray);
  color: var(--dark-gray);
}

.log-table tr:hover td {
  background: var(--off-white);
}

.log-table .status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-clicked { background: #E3F2FD; color: #1565C0; }
.status-inquiry { background: #FFF8E1; color: #F57F17; }
.status-booked { background: #E8F5E9; color: #2E7D32; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1100px) {
  .header-nav { display: none; }
  .mobile-toggle { display: flex; }
  .header-inner { padding: 10px 24px; }
  .whatsapp-link span { display: none; }
  .whatsapp-link { width: 40px; height: 40px; padding: 0; border-radius: 50%; }
}

@media (max-width: 1024px) {
  .boat-card { width: calc(50% - 15px); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .inquiry-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; text-align: center; }
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero-title { font-size: 2rem; }
  .section-heading { font-size: 1.7rem; }
  .boat-card { width: 100%; max-width: 500px; }
  .steps-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .page-hero-content h1 { font-size: 2rem; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .header-cta { display: none; }

  .log-table { font-size: 0.8rem; }
  .log-table th, .log-table td { padding: 10px 12px; }
}
