/* =========================================================
   FusionWeddings.com — High Luxury Responsive Stylesheet
   Designed for Maximum Conversions, Fast Loading & SEO Dominance
   ========================================================= */

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

:root {
  --primary-navy: #0e1927;
  --secondary-navy: #19273a;
  --accent-gold: #c5a059;
  --accent-gold-light: #dfbe7d;
  --accent-gold-soft: #f8f4eb;
  --text-dark: #1f2937;
  --text-muted: #64748b;
  --text-light: #f8fafc;
  --bg-cream: #fcfbf8;
  --bg-sand: #f5f2eb;
  --border-light: #e7e3d8;
  --shadow-sm: 0 2px 4px rgba(14, 25, 39, 0.04);
  --shadow-md: 0 8px 24px rgba(14, 25, 39, 0.08);
  --shadow-lg: 0 16px 40px rgba(14, 25, 39, 0.12);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: all 0.25s ease-in-out;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-cream);
  color: var(--text-dark);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: var(--accent-gold);
  text-decoration: none;
  transition: var(--transition);
}
a:hover {
  color: var(--accent-gold-light);
}

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

h1 { font-size: clamp(2.2rem, 4.5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.7rem); }
h3 { font-size: clamp(1.4rem, 2.2vw, 2rem); }
h4 { font-size: clamp(1.2rem, 1.8vw, 1.5rem); }

p {
  margin-bottom: 1.25rem;
  color: #374151;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* =========================================================
   Top Trust Announcement Bar
   ========================================================= */
.top-bar {
  background-color: var(--primary-navy);
  color: #d1d5db;
  font-size: 0.82rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(197, 160, 89, 0.25);
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.top-bar-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--accent-gold-light);
  font-weight: 600;
  letter-spacing: 0.5px;
}
.top-bar-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.top-bar-links a {
  color: #cbd5e1;
  font-size: 0.8rem;
}
.top-bar-links a:hover {
  color: var(--accent-gold-light);
}

/* =========================================================
   Main Header & Navigation
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(252, 251, 248, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
  max-width: 1400px;
}

.brand-logo {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  margin-right: clamp(2.5rem, 5vw, 5rem);
}
.brand-logo .logo-main {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--primary-navy);
  letter-spacing: 0.5px;
  line-height: 1;
}
.brand-logo .logo-main span {
  color: var(--accent-gold);
}
.brand-logo .logo-sub {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 2px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-grow: 1;
  justify-content: flex-end;
}
.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: nowrap;
}
.nav-item {
  position: relative;
}
.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-navy);
  padding: 0.5rem 0.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--accent-gold);
}

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 260px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  padding: 0.75rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  list-style: none;
  z-index: 1001;
}
.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
  color: var(--text-dark);
  font-weight: 500;
}
.dropdown-menu a:hover {
  background: var(--accent-gold-soft);
  color: var(--accent-gold);
  padding-left: 1.5rem;
}

.header-cta-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.btn-gold {
  background: linear-gradient(135deg, #c5a059 0%, #b38b42 100%);
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(197, 160, 89, 0.35);
}
.btn-gold:hover {
  background: linear-gradient(135deg, #d4b068 0%, #c5a059 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(197, 160, 89, 0.45);
}
.btn-outline {
  border: 1.5px solid var(--primary-navy);
  color: var(--primary-navy);
  background: transparent;
}
.btn-outline:hover {
  background: var(--primary-navy);
  color: #ffffff !important;
}
.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
}
.btn-lg {
  padding: 1rem 2.2rem;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--primary-navy);
  margin: 5px 0;
  transition: var(--transition);
}

/* =========================================================
   Hero Section
   ========================================================= */
.hero {
  position: relative;
  background: linear-gradient(rgba(14, 25, 39, 0.72), rgba(14, 25, 39, 0.82)), url('https://images.unsplash.com/photo-1540555700478-4be289fbecef?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
  color: #ffffff;
  padding: clamp(4rem, 9vw, 8rem) 0;
  text-align: center;
}
.hero-content {
  max-width: 920px;
  margin: 0 auto;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(197, 160, 89, 0.2);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold-light);
  padding: 0.35rem 1.1rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.5rem;
}
.hero h1 {
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.hero p.lead {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: #e2e8f0;
  margin-bottom: 2.25rem;
  line-height: 1.6;
}
.hero-cta-box {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-trust-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.85rem;
  color: #cbd5e1;
}
.hero-trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.hero-trust-row span strong {
  color: var(--accent-gold-light);
}

/* =========================================================
   Trust Signals Bar Component
   ========================================================= */
.trust-bar {
  background: #ffffff;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.trust-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--accent-gold-soft);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.trust-text h4 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  color: var(--primary-navy);
}
.trust-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.4;
}

/* =========================================================
   Section Header Standard
   ========================================================= */
.section {
  padding: clamp(3.5rem, 6vw, 6rem) 0;
}
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3.5rem auto;
}
.section-tag {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-gold);
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
}
.section-header h2 {
  margin-bottom: 1rem;
}
.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* =========================================================
   Cultural Blend Hub Cards
   ========================================================= */
.blends-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}
.blend-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  padding: 2.2rem 1.8rem;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.blend-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-gold);
}
.blend-icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--accent-gold-soft);
  color: var(--accent-gold);
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}
.blend-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.blend-card .blend-subtitle {
  font-size: 0.85rem;
  color: var(--accent-gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
.blend-card p {
  font-size: 0.92rem;
  color: #4b5563;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}
.blend-features-list {
  list-style: none;
  margin-bottom: 1.5rem;
  border-top: 1px solid var(--border-light);
  padding-top: 1rem;
}
.blend-features-list li {
  font-size: 0.84rem;
  color: #374151;
  padding: 0.35rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.blend-features-list li::before {
  content: "✓";
  color: var(--accent-gold);
  font-weight: bold;
}
.blend-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

/* =========================================================
   Resort Cards & Showcase
   ========================================================= */
.resorts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.2rem;
}
.resort-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.resort-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-gold);
}
.resort-image-box {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.resort-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.resort-card:hover .resort-image-box img {
  transform: scale(1.05);
}
.resort-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(14, 25, 39, 0.88);
  color: var(--accent-gold-light);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(4px);
}
.resort-capacity-tag {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary-navy);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-sm);
}
.resort-card-body {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.resort-location-line {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--accent-gold);
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 0.4rem;
}
.resort-card h3 {
  font-size: 1.45rem;
  margin-bottom: 0.4rem;
}
.resort-rating-line {
  font-size: 0.82rem;
  color: #d97706;
  font-weight: 600;
  margin-bottom: 0.8rem;
}
.resort-tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-style: italic;
}
.resort-dealbreakers-box {
  background: var(--bg-sand);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1rem;
  margin-bottom: 1.25rem;
}
.dealbreaker-item {
  font-size: 0.8rem;
  color: #374151;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.dealbreaker-item:last-child {
  margin-bottom: 0;
}
.dealbreaker-item strong {
  color: var(--primary-navy);
  flex-shrink: 0;
}
.resort-card-footer {
  margin-top: auto;
  display: flex;
  gap: 0.8rem;
}
.resort-card-footer a {
  flex: 1;
  text-align: center;
}

/* =========================================================
   Destination Cards
   ========================================================= */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
}
.dest-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 380px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  display: block;
}
.dest-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.dest-card:hover img {
  transform: scale(1.08);
}
.dest-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 25, 39, 0.1) 0%, rgba(14, 25, 39, 0.9) 100%);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #ffffff;
}
.dest-card-overlay span.dest-country {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-gold-light);
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.dest-card-overlay h3 {
  color: #ffffff;
  font-size: 1.7rem;
  margin-bottom: 0.5rem;
}
.dest-card-overlay p {
  font-size: 0.85rem;
  color: #e2e8f0;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* =========================================================
   Timeline Component (TouristTrip Schema alignment)
   ========================================================= */
.timeline-container {
  position: relative;
  max-width: 860px;
  margin: 2rem auto;
  padding: 1rem 0;
}
.timeline-container::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 28px;
  width: 3px;
  background: var(--border-light);
}
.timeline-step {
  position: relative;
  padding-left: 70px;
  margin-bottom: 2.5rem;
}
.timeline-step:last-child {
  margin-bottom: 0;
}
.timeline-badge {
  position: absolute;
  left: 12px;
  top: 0;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: var(--accent-gold);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 0 0 5px var(--bg-cream);
}
.timeline-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.8rem;
  box-shadow: var(--shadow-sm);
}
.timeline-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
  color: var(--primary-navy);
}
.timeline-card .timeline-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--accent-gold);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 0.6rem;
  display: block;
}
.timeline-card p {
  font-size: 0.9rem;
  color: #4b5563;
  margin-bottom: 0;
}

/* =========================================================
   FAQ Accordion (FAQPage Schema alignment)
   ========================================================= */
.faq-wrap {
  max-width: 840px;
  margin: 0 auto;
}
.faq-item {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover {
  border-color: var(--accent-gold);
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-question::after {
  content: "+";
  font-family: var(--font-sans);
  font-size: 1.4rem;
  color: var(--accent-gold);
  font-weight: 400;
  transition: transform 0.25s ease;
}
.faq-item.active .faq-question::after {
  content: "−";
  transform: rotate(180deg);
}
.faq-answer {
  display: none;
  padding: 0 1.5rem 1.5rem 1.5rem;
  font-size: 0.94rem;
  color: #4b5563;
  line-height: 1.6;
}
.faq-item.active .faq-answer {
  display: block;
}

/* =========================================================
   Inquiry Form & Lead Capture (CRO Engine)
   ========================================================= */
.inquiry-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: var(--shadow-lg);
}
.inquiry-header {
  text-align: center;
  margin-bottom: 2rem;
}
.inquiry-header h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.inquiry-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.form-group.full-width {
  grid-column: span 2;
}
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-navy);
  margin-bottom: 0.4rem;
}
.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--text-dark);
  background: #ffffff;
  transition: var(--transition);
}
.form-control:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.15);
}
textarea.form-control {
  min-height: 100px;
  resize: vertical;
}
.checkbox-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #374151;
  cursor: pointer;
}
.checkbox-label input {
  accent-color: var(--accent-gold);
  width: 17px;
  height: 17px;
}
.form-submit-btn {
  width: 100%;
  margin-top: 1.5rem;
  padding: 1rem;
  font-size: 1.05rem;
}
.form-privacy-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 1rem;
  margin-bottom: 0;
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(14, 25, 39, 0.75);
  backdrop-filter: blur(5px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.modal-window {
  background: #ffffff;
  border-radius: var(--radius-lg);
  max-width: 680px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
  padding: 2.5rem;
}
.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-muted);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}
.modal-close:hover {
  background: var(--bg-sand);
  color: var(--primary-navy);
}

/* =========================================================
   Mobile Sticky CTA Bar
   ========================================================= */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid var(--border-light);
  padding: 0.75rem 1.25rem;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
  z-index: 999;
}
.mobile-sticky-bar .btn {
  width: 100%;
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: var(--primary-navy);
  color: #cbd5e1;
  padding: 5rem 0 2rem 0;
  border-top: 2px solid var(--accent-gold);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer-brand h3 {
  color: #ffffff;
  font-size: 1.8rem;
  margin-bottom: 0.4rem;
}
.footer-brand h3 span {
  color: var(--accent-gold);
}
.footer-brand p {
  color: #94a3b8;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.footer-trust-seals {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.seal-badge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(197, 160, 89, 0.3);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  color: var(--accent-gold-light);
  font-weight: 600;
}
.footer-col h4 {
  color: #ffffff;
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent-gold);
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 0.65rem;
}
.footer-links a {
  color: #94a3b8;
  font-size: 0.88rem;
}
.footer-links a:hover {
  color: var(--accent-gold-light);
  padding-left: 4px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: #64748b;
}

/* =========================================================
   Breadcrumbs
   ========================================================= */
.breadcrumb-bar {
  background: var(--bg-sand);
  padding: 0.75rem 0;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--border-light);
}
.breadcrumb-list {
  display: flex;
  list-style: none;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.breadcrumb-list li+li::before {
  content: "/";
  color: var(--text-muted);
  margin-right: 0.5rem;
}
.breadcrumb-list a {
  color: var(--text-muted);
}
.breadcrumb-list a:hover {
  color: var(--accent-gold);
}
.breadcrumb-list li.current {
  color: var(--primary-navy);
  font-weight: 600;
}

/* =========================================================
   Article & Guide Layout (Planning / Hubs)
   ========================================================= */
.article-header {
  background: linear-gradient(rgba(14, 25, 39, 0.85), rgba(14, 25, 39, 0.9)), url('https://images.unsplash.com/photo-1518509562904-e7ef99cdcc86?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  color: #ffffff;
  padding: 4.5rem 0;
  text-align: center;
}
.article-header h1 {
  color: #ffffff;
  max-width: 900px;
  margin: 0 auto 1rem auto;
}
.article-header p.subtitle {
  color: var(--accent-gold-light);
  font-size: 1.15rem;
  max-width: 750px;
  margin: 0 auto;
}
.article-body {
  max-width: 860px;
  margin: 3.5rem auto;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #334155;
}
.article-body h2 {
  margin-top: 2.8rem;
  margin-bottom: 1rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--border-light);
}
.article-body h3 {
  margin-top: 2rem;
  margin-bottom: 0.8rem;
}
.article-body ul, .article-body ol {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}
.article-body li {
  margin-bottom: 0.5rem;
}
.quick-answer-box {
  background: var(--accent-gold-soft);
  border-left: 4px solid var(--accent-gold);
  padding: 1.5rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 2rem 0;
}
.quick-answer-box h4 {
  font-size: 1.1rem;
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
}
.quick-answer-box p {
  margin-bottom: 0;
  font-size: 0.95rem;
  color: #4b5563;
}

/* =========================================================
   Responsive Breakpoints
   ========================================================= */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group.full-width {
    grid-column: span 1;
  }
}

@media (max-width: 1024px) {
  .brand-logo {
    margin-right: 0;
  }
  .mobile-toggle {
    display: block;
  }
  .main-nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border-bottom: 2px solid var(--accent-gold);
    display: none;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }
  .main-nav.active {
    display: flex;
  }
  .nav-menu {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
    align-items: flex-start;
  }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding-left: 1rem;
    background: var(--bg-sand);
    border-radius: var(--radius-sm);
    width: 100%;
    margin-top: 0.5rem;
  }
  .header-cta-group {
    width: 100%;
    margin-top: 1rem;
  }
  .header-cta-group .btn {
    width: 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .mobile-sticky-bar {
    display: block;
  }
  body {
    padding-bottom: 70px;
  }
}

/* =========================================================
   Resort Brand Partner Cards
   ========================================================= */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.8rem;
}
.brand-partner-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.brand-partner-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-gold);
}
.brand-partner-image {
  position: relative;
  height: 190px;
  overflow: hidden;
  background: var(--bg-sand);
}
.brand-partner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.brand-partner-card:hover .brand-partner-image img {
  transform: scale(1.05);
}
.brand-partner-body {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.brand-partner-tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-gold);
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.brand-partner-body h4 {
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
  color: var(--primary-navy);
}
.destination-hr {
  border: 0;
  border-top: 2px solid var(--accent-gold-soft);
  margin: 0.4rem 0 0.7rem 0;
  width: 40px;
}
.brand-partner-body p {
  font-size: 0.88rem;
  color: #4b5563;
  line-height: 1.5;
  margin-bottom: 1rem;
  flex-grow: 1;
}
.brand-partner-footer {
  padding: 0 1.4rem 1.2rem 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-light);
  padding-top: 0.8rem;
}
.brand-hashtags {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}
.destination-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent-gold-soft);
  color: var(--accent-gold);
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  transition: var(--transition);
}
.destination-arrow:hover {
  background: var(--accent-gold);
  color: #ffffff;
}

