/*
 * Vanguard Luxury Yacht & Cruise CSS Stylesheet
 * Custom designed with dynamic CSS custom properties, fluid typography,
 * premium card designs, glassmorphism overlays, and micro-animations.
 */

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

:root {
  /* Color Palette (Luxury Yacht theme: Deep Navy and Gold Accents) */
  --primary-navy: #0B192C;
  --primary-navy-rgb: 11, 25, 44;
  --secondary-gold: #D4AF37;
  --secondary-gold-rgb: 212, 175, 55;
  --secondary-gold-hover: #F1C40F;
  --accent-blue: #1E3E62;
  --accent-light: #F8F9FA;
  --text-dark: #1E293B;
  --text-light: #F8FAFC;
  --text-gray: #64748B;
  --border-color: #E2E8F0;
  --border-gold: rgba(212, 175, 55, 0.2);
  --white: #FFFFFF;
  
  /* Font Stacks */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Montserrat', Helvetica, Arial, sans-serif;
  
  /* Layout Tones */
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 40px rgba(0,0,0,0.12);
  --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.15);
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.4);
  --glass-blur: blur(12px);
  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--accent-light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--primary-navy);
  line-height: 1.3;
}

p {
  color: var(--text-gray);
  margin-bottom: 1.5rem;
}

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

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

/* Accessibility settings */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--secondary-gold);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
  background: var(--secondary-gold);
  color: var(--primary-navy);
  padding: 10px 20px;
  font-weight: bold;
  z-index: 9999;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 20px;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section-dark {
  background-color: var(--primary-navy);
  color: var(--text-light);
}

.section-dark p {
  color: #94A3B8;
}

.section-dark h2, .section-dark h3 {
  color: var(--text-light);
}

.text-center {
  text-align: center;
}

.text-gold {
  color: var(--secondary-gold);
}

.subtitle {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--secondary-gold);
  margin: 15px auto 0;
}

.left-title::after {
  margin: 15px 0 0;
}

/* Custom Grids */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: center;
}

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

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

/* Buttons and CTAs */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--secondary-gold);
  color: var(--primary-navy);
}

.btn-primary:hover {
  background-color: var(--secondary-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.btn-outline {
  background-color: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}

.btn-outline:hover {
  background-color: var(--white);
  color: var(--primary-navy);
  transform: translateY(-2px);
}

.btn-dark {
  background-color: var(--primary-navy);
  color: var(--white);
}

.btn-dark:hover {
  background-color: var(--accent-blue);
  transform: translateY(-2px);
}

/* Transparent-to-Frosted Header */
.header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: var(--transition);
  display: flex;
  align-items: center;
}

.header-wrapper.scrolled {
  background: rgba(11, 25, 44, 0.85);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--border-gold);
  box-shadow: var(--shadow-md);
  height: 70px;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1400px;
}

.header-container nav {
  margin-left: auto;
  margin-right: 40px;
}

.logo-link {
  display: flex;
  align-items: center;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
  white-space: nowrap;
  margin-right: 35px;
}

.logo-gold {
  color: var(--secondary-gold);
  margin-left: 6px;
}

.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 5px 0;
  position: relative;
  white-space: nowrap;
}

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

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

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

.nav-links a.active {
  color: var(--secondary-gold);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
}

.nav-phone {
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.nav-phone svg {
  fill: var(--secondary-gold);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
  z-index: 1100;
}

.mobile-menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--white);
  position: absolute;
  left: 0;
  transition: var(--transition);
}

.mobile-menu-btn span:nth-child(1) { top: 0; }
.mobile-menu-btn span:nth-child(2) { top: 9px; }
.mobile-menu-btn span:nth-child(3) { top: 18px; }

.mobile-menu-btn.open span:nth-child(1) { transform: rotate(45deg); top: 9px; }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open span:nth-child(3) { transform: rotate(-45deg); top: 9px; }

/* Hero Banner Layout with Parallax */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  overflow: hidden;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.hero-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2.5rem;
}

.hero-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Premium Card Layouts */
.luxury-card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.luxury-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212, 175, 55, 0.3);
}

.card-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.luxury-card:hover .card-img-wrapper img {
  transform: scale(1.08);
}

.card-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--primary-navy);
  color: var(--secondary-gold);
  padding: 5px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 2px;
}

.card-body {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-body h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.card-body p {
  font-size: 0.9rem;
  flex-grow: 1;
  margin-bottom: 20px;
}

.card-footer {
  padding-top: 15px;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-link {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--primary-navy);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.card-link::after {
  content: '→';
  transition: var(--transition);
}

.luxury-card:hover .card-link {
  color: var(--secondary-gold);
}

.luxury-card:hover .card-link::after {
  transform: translateX(4px);
}

/* Glassmorphism Elements */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-md);
  border-radius: 8px;
  padding: 40px;
}

/* Trust Badges */
.trust-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
  padding: 40px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.trust-badge {
  text-align: center;
  max-width: 250px;
}

.trust-icon {
  margin: 0 auto 15px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(212, 175, 55, 0.1);
}

.trust-icon svg {
  fill: var(--secondary-gold);
  width: 25px;
  height: 25px;
}

.trust-badge h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.trust-badge p {
  font-size: 0.85rem;
}

/* Testimonial Section */
.testimonial-card {
  background-color: var(--white);
  padding: 35px;
  border-radius: 6px;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 15px;
}

.testimonial-stars svg {
  fill: var(--secondary-gold);
  width: 16px;
  height: 16px;
}

.testimonial-text {
  font-style: italic;
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.author-location {
  font-size: 0.8rem;
  color: var(--text-gray);
}

/* FAQ Accordions */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
  padding: 20px 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-navy);
  padding: 10px 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.faq-answer p {
  padding-top: 15px;
  margin: 0;
  color: var(--text-gray);
  font-size: 0.95rem;
}

.faq-icon {
  width: 20px;
  height: 20px;
  position: relative;
  transition: transform 0.4s ease;
}

.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background-color: var(--secondary-gold);
  transition: var(--transition);
}

.faq-icon::before {
  top: 9px;
  left: 0;
  width: 100%;
  height: 2px;
}

.faq-icon::after {
  top: 0;
  left: 9px;
  width: 2px;
  height: 100%;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

/* Forms & Inquiries */
.inquiry-form {
  background: var(--white);
  padding: 40px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
}

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

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--primary-navy);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  background-color: var(--accent-light);
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--secondary-gold);
  background-color: var(--white);
  outline: none;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

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

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

.alert {
  padding: 15px;
  border-radius: 4px;
  margin-bottom: 25px;
  font-weight: 500;
  font-size: 0.9rem;
}

.alert-success {
  background-color: #DEF7EC;
  color: #03543F;
  border: 1px solid #BCF0DA;
}

.alert-danger {
  background-color: #FDE8E8;
  color: #9B1C1C;
  border: 1px solid #F8B4B4;
}

/* Footer layout */
.footer {
  background-color: var(--primary-navy);
  color: var(--white);
  padding: 80px 0 30px;
  border-top: 1px solid var(--border-gold);
}

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

.footer-about h3 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.footer-about p {
  color: #94A3B8;
  font-size: 0.9rem;
  margin-bottom: 25px;
}

.footer-title {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

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

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #94A3B8;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--secondary-gold);
  transform: translateX(3px);
}

.footer-contact {
  list-style: none;
}

.footer-contact li {
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: #94A3B8;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-contact svg {
  fill: var(--secondary-gold);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

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

.newsletter-form {
  display: flex;
  margin-top: 15px;
}

.newsletter-input {
  flex-grow: 1;
  padding: 10px 15px;
  border-radius: 4px 0 0 4px;
  border: 1px solid #1E293B;
  background-color: #1E293B;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.85rem;
}

.newsletter-input:focus {
  outline: none;
  background-color: #0F172A;
  border-color: var(--secondary-gold);
}

.newsletter-btn {
  padding: 10px 15px;
  border-radius: 0 4px 4px 0;
  border: none;
  background-color: var(--secondary-gold);
  color: var(--primary-navy);
  font-weight: 600;
  cursor: pointer;
}

.footer-bottom {
  border-top: 1px solid #1E293B;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copy {
  font-size: 0.8rem;
  color: #64748B;
}

.footer-compliance-links {
  display: flex;
  gap: 20px;
  list-style: none;
  flex-wrap: wrap;
}

.footer-compliance-links a {
  font-size: 0.8rem;
  color: #64748B;
}

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

/* Social Icons */
.social-icons {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  background-color: rgba(255,255,255,0.05);
  color: var(--white);
  font-size: 1rem;
}

.social-link:hover {
  background-color: var(--secondary-gold);
  color: var(--primary-navy);
  border-color: var(--secondary-gold);
  transform: translateY(-3px);
}

.social-link svg {
  fill: currentColor;
  width: 16px;
  height: 16px;
}

/* Call Now Banner / Conversion Elements */
.call-banner {
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--accent-blue) 100%);
  color: var(--white);
  border-radius: 8px;
  padding: 50px;
  text-align: center;
  border: 1px solid var(--border-gold);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.call-banner::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, rgba(212,175,55,0) 70%);
  top: -150px;
  right: -100px;
}

.call-banner h2 {
  color: var(--white);
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.call-banner p {
  color: #94A3B8;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.call-banner-btn {
  background-color: var(--secondary-gold);
  color: var(--primary-navy);
  font-size: 1.25rem;
  padding: 16px 36px;
  border-radius: 4px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-gold);
}

.call-banner-btn:hover {
  background-color: var(--secondary-gold-hover);
  transform: scale(1.03);
}

.call-banner-btn svg {
  fill: var(--primary-navy);
  width: 22px;
  height: 22px;
}

/* Mobile Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--primary-navy);
  border-top: 2px solid var(--secondary-gold);
  padding: 12px 20px;
  z-index: 999;
  display: none;
  justify-content: center;
  box-shadow: 0 -5px 15px rgba(0,0,0,0.15);
}

.sticky-cta-btn {
  width: 100%;
  max-width: 400px;
  background-color: var(--secondary-gold);
  color: var(--primary-navy);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 14px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
}

/* GDPR Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 30px;
  right: 30px;
  max-width: 400px;
  background: rgba(11, 25, 44, 0.95);
  border: 1px solid var(--border-gold);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  color: var(--white);
  padding: 25px;
  border-radius: 8px;
  z-index: 1001;
  box-shadow: var(--shadow-lg);
  display: none;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.cookie-banner.show {
  display: block;
  transform: translateY(0);
}

.cookie-banner h4 {
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.cookie-banner p {
  color: #94A3B8;
  font-size: 0.8rem;
  margin-bottom: 20px;
  line-height: 1.4;
}

.cookie-banner-btns {
  display: flex;
  gap: 10px;
}

.cookie-banner-btns button {
  flex: 1;
  padding: 10px 0;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-accept {
  background-color: var(--secondary-gold);
  color: var(--primary-navy);
}

.cookie-accept:hover {
  background-color: var(--secondary-gold-hover);
}

.cookie-decline {
  background-color: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2) !important;
}

.cookie-decline:hover {
  background-color: rgba(255,255,255,0.1);
}

/* Page Header component for internal pages */
.page-header {
  position: relative;
  padding: 160px 0 90px;
  background-color: var(--primary-navy);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Creates native CSS parallax */
  color: var(--white);
  text-align: center;
}

.page-header h1 {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 10px;
}

.breadcrumbs-container {
  display: flex;
  justify-content: center;
  list-style: none;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #94A3B8;
}

.breadcrumbs-container li::after {
  content: '/';
  margin: 0 10px;
  color: #475569;
}

.breadcrumbs-container li:last-child::after {
  content: '';
}

.breadcrumbs-container a {
  color: #94A3B8;
}

.breadcrumbs-container a:hover {
  color: var(--secondary-gold);
}

.breadcrumbs-container li.active {
  color: var(--white);
  font-weight: 600;
}

/* Page: Destinations Grid & List */
.region-section {
  margin-bottom: 60px;
}

.region-title {
  font-size: 1.8rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 10px;
  margin-bottom: 25px;
}

/* Page: Contact layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 40px;
}

.contact-info-panel {
  background-color: var(--primary-navy);
  color: var(--white);
  padding: 40px;
  border-radius: 8px;
}

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

.contact-info-list {
  list-style: none;
  margin-bottom: 40px;
}

.contact-info-list li {
  margin-bottom: 25px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-info-list h4 {
  color: var(--white);
  font-size: 1.1rem;
  font-family: var(--font-sans);
  margin-bottom: 5px;
}

.contact-info-list p {
  color: #94A3B8;
  margin: 0;
}

.contact-info-list svg {
  fill: var(--secondary-gold);
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 4px;
}

/* Page: Destination details styles */
.dest-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.dest-detail-img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: var(--shadow-md);
}

.dest-detail-desc {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.dest-feature-box {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--secondary-gold);
  padding: 25px;
  margin-bottom: 25px;
  border-radius: 0 6px 6px 0;
}

.dest-feature-box h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.dest-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sidebar-box {
  background-color: var(--white);
  padding: 30px;
  border-radius: 6px;
  border: 1px solid var(--border-color);
}

.sidebar-box h3 {
  font-size: 1.25rem;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 10px;
}

.sidebar-box ul {
  list-style: none;
}

.sidebar-box li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-gray);
}

.sidebar-box li::before {
  content: '✓';
  color: var(--secondary-gold);
  font-weight: bold;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .dest-detail-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1100px) {
  .hero {
    height: auto !important;
    padding: 120px 0 60px !important;
  }
  .hero-split-container {
    grid-template-columns: 1fr !important;
    gap: 50px !important;
  }
  .hero-left-editorial {
    text-align: center !important;
  }
  .hero-left-editorial h1 {
    font-size: 2.3rem !important;
  }
  .hero-left-editorial div {
    justify-content: center;
    flex-direction: column;
    gap: 10px !important;
  }
  .hero-right-image img {
    height: 280px !important;
  }
  .hero-right-image {
    padding: 0 10px;
    margin-top: 20px;
  }
  .header-container nav {
    margin: 0;
  }
  
  /* Mobile Header Overlay Drawer */
  .mobile-menu-btn {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--primary-navy);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transition: var(--transition);
    z-index: 1050;
    box-shadow: -10px 0 30px rgba(0,0,0,0.3);
  }
  
  .nav-links.open {
    right: 0;
  }
  
  .nav-cta {
    display: none;
  }
  
  .sticky-cta {
    display: flex;
  }
  
  .cookie-banner {
    bottom: 80px; /* Adjust for mobile sticky CTA */
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .grid-3 {
    grid-template-columns: 1fr;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .hero-btns {
    flex-direction: column;
    gap: 15px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-bottom {
    flex-direction: column-reverse;
    text-align: center;
  }
  
  .footer-compliance-links {
    justify-content: center;
  }
  
  .cookie-banner {
    left: 20px;
    right: 20px;
    max-width: none;
  }
}
