/*
 * Best Vacation Deals — BVD Theme Stylesheet
 * Version: 1.0.0
 * Author: MV3 Marketing
 * Description: Complete design system for bestvacationdeals.com
 *
 * TABLE OF CONTENTS
 * 1. CSS Variables + Reset
 * 2. Global Typography
 * 3. Navigation
 * 4. FTC Disclosure
 * 5. Author Byline
 * 6. Page Header
 * 7. Quick Answer Block
 * 8. Hotel Section + Map
 * 9. Hotel Cards
 * 10. Tour Cards
 * 11. Section Headings
 * 12. Weather Block
 * 13. Budget Table
 * 14. FAQ Section
 * 15. Email Capture
 * 16. Footer
 * 17. Utility Classes
 * 18. Responsive / Mobile
 */

/* ============================================================
   1. CSS VARIABLES + RESET
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  /* Brand Colors */
  --bvd-navy:          #0A2540;
  --bvd-navy-light:    #1E3A5F;
  --bvd-gold:          #F59E0B;
  --bvd-gold-dark:     #D97706;
  --bvd-gold-light:    #FEF3C7;
  --bvd-blue:          #2563EB;
  --bvd-blue-dark:     #1D4ED8;
  --bvd-blue-light:    #EFF6FF;
  --bvd-green:         #059669;
  --bvd-green-light:   #D1FAE5;

  /* Text */
  --bvd-text-dark:     #1A1A2E;
  --bvd-text-muted:    #64748B;
  --bvd-text-light:    #94A3B8;
  --bvd-text-white:    #FFFFFF;

  /* Surfaces */
  --bvd-card:          #FFFFFF;
  --bvd-page-bg:       #F8FAFC;
  --bvd-border:        #E2E8F0;
  --bvd-border-dark:   #CBD5E1;

  /* Typography Scale */
  --bvd-font:          'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --bvd-h1:            2.8rem;
  --bvd-h2:            2rem;
  --bvd-h3:            1.4rem;
  --bvd-h4:            1.15rem;
  --bvd-body:          1rem;
  --bvd-small:         0.875rem;
  --bvd-xs:            0.75rem;

  /* Spacing */
  --bvd-space-xs:      0.25rem;
  --bvd-space-sm:      0.5rem;
  --bvd-space-md:      1rem;
  --bvd-space-lg:      1.5rem;
  --bvd-space-xl:      2rem;
  --bvd-space-2xl:     3rem;
  --bvd-space-3xl:     4rem;

  /* Radii */
  --bvd-radius-sm:     6px;
  --bvd-radius-md:     10px;
  --bvd-radius-lg:     14px;
  --bvd-radius-xl:     20px;
  --bvd-radius-pill:   999px;

  /* Shadows */
  --bvd-shadow-sm:     0 1px 3px rgba(10,37,64,0.08), 0 1px 2px rgba(10,37,64,0.04);
  --bvd-shadow-md:     0 4px 16px rgba(10,37,64,0.10), 0 2px 8px rgba(10,37,64,0.06);
  --bvd-shadow-lg:     0 10px 40px rgba(10,37,64,0.14), 0 4px 16px rgba(10,37,64,0.08);
  --bvd-shadow-gold:   0 4px 20px rgba(245,158,11,0.30);

  /* Transitions */
  --bvd-transition:    all 0.2s ease;
  --bvd-transition-md: all 0.3s ease;

  /* Container */
  --bvd-container:     1200px;
  --bvd-container-pad: 1.25rem;
}

/* Box-sizing + base reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--bvd-font);
  font-size: var(--bvd-body);
  line-height: 1.7;
  color: var(--bvd-text-dark);
  background-color: var(--bvd-page-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

ul,
ol {
  list-style: none;
}

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

a:hover {
  text-decoration: underline;
  color: var(--bvd-blue-dark);
}

button,
input,
select,
textarea {
  font-family: var(--bvd-font);
  font-size: var(--bvd-body);
}

/* BVD body class */
body.bvd-destination {
  background-color: var(--bvd-page-bg);
}

/* Container utility */
.bvd-container {
  max-width: var(--bvd-container);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--bvd-container-pad);
  padding-right: var(--bvd-container-pad);
}

/* ============================================================
   2. GLOBAL TYPOGRAPHY
   ============================================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--bvd-font);
  color: var(--bvd-text-dark);
  line-height: 1.2;
  font-weight: 700;
}

h1 {
  font-size: var(--bvd-h1);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

h2 {
  font-size: var(--bvd-h2);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h3 {
  font-size: var(--bvd-h3);
  font-weight: 600;
  letter-spacing: -0.01em;
}

h4 {
  font-size: var(--bvd-h4);
  font-weight: 600;
}

h5, h6 {
  font-size: var(--bvd-body);
  font-weight: 600;
}

p {
  color: var(--bvd-text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

strong, b {
  font-weight: 700;
  color: var(--bvd-text-dark);
}

small {
  font-size: var(--bvd-small);
  color: var(--bvd-text-light);
}

/* Content area typography */
.entry-content h2,
.page-content h2 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.entry-content h3,
.page-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.entry-content p,
.page-content p {
  margin-bottom: 1.25rem;
}

/* ============================================================
   3. NAVIGATION
   ============================================================ */

.site-header,
#masthead {
  background-color: var(--bvd-navy) !important;
  position: sticky !important;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
  transition: var(--bvd-transition-md);
}

.site-header.scrolled,
#masthead.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
}

.header-inner,
.site-header .inside-header,
.site-branding {
  max-width: var(--bvd-container);
  margin: 0 auto;
  padding: 0 var(--bvd-container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
}

/* Logo */
.site-title,
.site-branding .site-title {
  font-size: 1.4rem !important;
  font-weight: 800 !important;
  color: var(--bvd-text-white) !important;
  letter-spacing: -0.02em;
  text-decoration: none !important;
}

.site-title a,
.site-branding .site-title a {
  color: var(--bvd-text-white) !important;
  text-decoration: none !important;
}

.site-title a:hover {
  color: var(--bvd-gold) !important;
  text-decoration: none !important;
}

/* Logo image */
.site-header .custom-logo {
  max-height: 42px;
  width: auto;
}

/* Nav links */
.main-navigation,
.site-navigation,
#site-navigation {
  background-color: transparent !important;
}

.main-navigation ul,
.site-navigation ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-navigation ul li a,
.site-navigation ul li a {
  color: rgba(255,255,255,0.88) !important;
  font-size: 0.9rem !important;
  font-weight: 500 !important;
  padding: 0.5rem 0.875rem !important;
  border-radius: var(--bvd-radius-sm);
  text-decoration: none !important;
  transition: var(--bvd-transition);
  display: block;
}

.main-navigation ul li a:hover,
.site-navigation ul li a:hover,
.main-navigation ul li.current-menu-item > a,
.site-navigation ul li.current-menu-item > a {
  color: var(--bvd-gold) !important;
  background-color: rgba(245,158,11,0.10) !important;
  text-decoration: none !important;
}

/* CTA in nav */
.main-navigation ul li.nav-cta a,
.site-navigation ul li.nav-cta a {
  background-color: var(--bvd-gold) !important;
  color: var(--bvd-navy) !important;
  font-weight: 700 !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: var(--bvd-radius-pill) !important;
}

.main-navigation ul li.nav-cta a:hover {
  background-color: var(--bvd-gold-dark) !important;
}

/* Mobile hamburger */
.menu-toggle,
.main-navigation button.menu-toggle {
  display: none;
  background: none !important;
  border: 2px solid rgba(255,255,255,0.4) !important;
  border-radius: var(--bvd-radius-sm) !important;
  color: var(--bvd-text-white) !important;
  cursor: pointer;
  padding: 0.5rem 0.75rem !important;
  font-size: 1.2rem !important;
  line-height: 1;
  transition: var(--bvd-transition);
  min-height: 44px;
  min-width: 44px;
}

.menu-toggle:hover {
  border-color: var(--bvd-gold) !important;
  color: var(--bvd-gold) !important;
}

/* Dropdown menus */
.main-navigation .sub-menu,
.site-navigation .sub-menu {
  background-color: var(--bvd-navy-light) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: var(--bvd-radius-md) !important;
  box-shadow: var(--bvd-shadow-lg) !important;
  padding: 0.5rem !important;
  min-width: 200px !important;
  top: calc(100% + 8px) !important;
}

.main-navigation .sub-menu li a {
  border-radius: var(--bvd-radius-sm) !important;
}

/* ============================================================
   4. FTC DISCLOSURE
   ============================================================ */

.ftc-disclosure {
  background-color: #FFFBEB;
  border-left: 4px solid var(--bvd-gold);
  padding: 0.6rem 1rem;
  font-size: var(--bvd-xs);
  color: #92400E;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.ftc-disclosure::before {
  content: "ℹ";
  font-size: 0.85rem;
  color: var(--bvd-gold-dark);
  flex-shrink: 0;
  margin-top: 1px;
}

.ftc-disclosure strong {
  color: #78350F;
}

.ftc-disclosure a {
  color: var(--bvd-gold-dark);
  text-decoration: underline;
}

/* Full-width disclosure bar at top of content */
.ftc-disclosure-bar {
  background-color: #FFFBEB;
  border-bottom: 1px solid #FDE68A;
  padding: 0.5rem var(--bvd-container-pad);
  text-align: center;
  font-size: var(--bvd-xs);
  color: #92400E;
}

/* ============================================================
   5. AUTHOR BYLINE
   ============================================================ */

.author-byline {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background-color: #F1F5F9;
  border-radius: var(--bvd-radius-pill);
  padding: 0.5rem 1rem 0.5rem 0.5rem;
  width: fit-content;
  margin-bottom: 1.5rem;
}

.author-byline__avatar {
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  flex-shrink: 0;
  border: 2px solid var(--bvd-border);
}

.author-byline__info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.author-byline__name {
  font-size: var(--bvd-small);
  font-weight: 700;
  color: var(--bvd-text-dark);
  line-height: 1.2;
}

.author-byline__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--bvd-xs);
  color: var(--bvd-text-light);
}

.author-byline__title {
  color: var(--bvd-text-muted);
}

.author-byline__sep {
  color: var(--bvd-border-dark);
}

.author-byline__date {
  color: var(--bvd-text-light);
}

/* ============================================================
   6. PAGE HEADER
   ============================================================ */

.bvd-page-header {
  padding: var(--bvd-space-2xl) 0 var(--bvd-space-xl);
  background-color: var(--bvd-card);
  border-bottom: 1px solid var(--bvd-border);
}

.bvd-page-header__inner {
  max-width: var(--bvd-container);
  margin: 0 auto;
  padding: 0 var(--bvd-container-pad);
}

.bvd-page-header h1 {
  font-size: var(--bvd-h1);
  font-weight: 800;
  color: var(--bvd-text-dark);
  margin-bottom: 0.75rem;
  max-width: 800px;
}

.bvd-page-header__subtitle {
  font-size: 1.15rem;
  color: var(--bvd-text-muted);
  max-width: 680px;
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* Breadcrumbs */
.bvd-breadcrumb,
.breadcrumb-trail,
.rank-math-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem;
  font-size: var(--bvd-xs);
  color: var(--bvd-text-light);
  margin-bottom: 0.75rem;
}

.bvd-breadcrumb a,
.breadcrumb-trail a,
.rank-math-breadcrumb a {
  color: var(--bvd-text-muted);
  text-decoration: none;
}

.bvd-breadcrumb a:hover,
.breadcrumb-trail a:hover {
  color: var(--bvd-blue);
  text-decoration: underline;
}

.bvd-breadcrumb__sep,
.breadcrumb-trail .sep {
  color: var(--bvd-border-dark);
  margin: 0 0.1rem;
}

/* Hero variant with background */
.bvd-page-header--hero {
  position: relative;
  padding: var(--bvd-space-3xl) 0;
  background-color: var(--bvd-navy);
  overflow: hidden;
}

.bvd-page-header--hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,37,64,0.95) 0%, rgba(30,58,95,0.85) 100%);
  z-index: 1;
}

.bvd-page-header--hero .bvd-page-header__inner {
  position: relative;
  z-index: 2;
}

.bvd-page-header--hero h1 {
  color: #FFFFFF;
}

.bvd-page-header--hero .bvd-page-header__subtitle {
  color: rgba(255,255,255,0.80);
}

.bvd-page-header--hero .bvd-breadcrumb a,
.bvd-page-header--hero .bvd-breadcrumb {
  color: rgba(255,255,255,0.60);
}

/* ============================================================
   7. QUICK ANSWER BLOCK
   ============================================================ */

.quick-answer {
  background-color: var(--bvd-blue-light);
  border-left: 4px solid var(--bvd-blue);
  border-radius: 0 var(--bvd-radius-md) var(--bvd-radius-md) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0 2rem;
}

.quick-answer__label {
  display: inline-block;
  font-size: var(--bvd-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bvd-gold-dark);
  background-color: var(--bvd-gold-light);
  padding: 0.2rem 0.6rem;
  border-radius: var(--bvd-radius-pill);
  margin-bottom: 0.6rem;
}

.quick-answer__text {
  font-size: 1.05rem;
  color: var(--bvd-text-dark);
  line-height: 1.65;
  margin: 0;
}

.quick-answer__text strong {
  color: var(--bvd-blue-dark);
}

/* ============================================================
   8. HOTEL SECTION + MAP
   ============================================================ */

.bvd-hotels-section {
  padding: var(--bvd-space-2xl) 0;
}

.bvd-hotels-section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--bvd-space-xl);
  flex-wrap: wrap;
  gap: 1rem;
}

.bvd-hotels-section__title {
  font-size: var(--bvd-h2);
  font-weight: 700;
  color: var(--bvd-text-dark);
  position: relative;
  padding-bottom: 0.6rem;
}

.bvd-hotels-section__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 56px;
  height: 3px;
  background-color: var(--bvd-gold);
  border-radius: 2px;
}

.bvd-hotels-section__subtitle {
  font-size: var(--bvd-small);
  color: var(--bvd-text-muted);
  margin-top: 0.4rem;
}

.bvd-hotels-section__view-all {
  font-size: var(--bvd-small);
  font-weight: 600;
  color: var(--bvd-blue);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  white-space: nowrap;
  text-decoration: none;
}

.bvd-hotels-section__view-all:hover {
  color: var(--bvd-blue-dark);
  text-decoration: underline;
}

/* Map container */
.bvd-map-container {
  background-color: var(--bvd-border);
  border-radius: var(--bvd-radius-lg);
  overflow: hidden;
  box-shadow: var(--bvd-shadow-md);
  margin-bottom: var(--bvd-space-xl);
  position: relative;
}

.bvd-map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

.bvd-map-container__placeholder {
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
  color: var(--bvd-text-muted);
  font-size: var(--bvd-small);
  flex-direction: column;
  gap: 0.5rem;
}

/* Hotel grid */
.bvd-hotels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* ============================================================
   9. HOTEL CARDS
   ============================================================ */

.bvd-hotel-card {
  background-color: var(--bvd-card);
  border-radius: var(--bvd-radius-lg);
  box-shadow: var(--bvd-shadow-sm);
  border: 1px solid var(--bvd-border);
  overflow: hidden;
  transition: var(--bvd-transition-md);
  display: flex;
  flex-direction: column;
}

.bvd-hotel-card:hover {
  box-shadow: var(--bvd-shadow-lg);
  transform: translateY(-3px);
  border-color: var(--bvd-blue);
}

.bvd-hotel-card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  background-color: #DBEAFE;
}

.bvd-hotel-card__image-wrap {
  position: relative;
  overflow: hidden;
}

.bvd-hotel-card__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background-color: var(--bvd-green);
  color: #FFFFFF;
  font-size: var(--bvd-xs);
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: var(--bvd-radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.bvd-hotel-card__badge--deal {
  background-color: var(--bvd-gold);
  color: var(--bvd-navy);
}

.bvd-hotel-card__body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.bvd-hotel-card__name {
  font-size: var(--bvd-h3);
  font-weight: 700;
  color: var(--bvd-text-dark);
  line-height: 1.3;
  margin: 0;
}

.bvd-hotel-card__location {
  font-size: var(--bvd-small);
  color: var(--bvd-text-muted);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* Stars */
.bvd-stars {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.bvd-star {
  color: var(--bvd-gold);
  font-size: 0.95rem;
  line-height: 1;
}

.bvd-star--empty {
  color: var(--bvd-border-dark);
}

.bvd-hotel-card__stars-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.bvd-hotel-card__rating-count {
  font-size: var(--bvd-xs);
  color: var(--bvd-text-light);
}

/* Rating badge */
.bvd-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background-color: var(--bvd-navy);
  color: #FFFFFF;
  font-size: var(--bvd-small);
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: var(--bvd-radius-sm);
}

.bvd-rating-badge__label {
  font-size: var(--bvd-xs);
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  margin-left: 0.15rem;
}

/* Price */
.bvd-hotel-card__pricing {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-top: auto;
}

.bvd-hotel-card__price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--bvd-blue);
  line-height: 1;
}

.bvd-hotel-card__price-label {
  font-size: var(--bvd-xs);
  color: var(--bvd-text-muted);
}

.bvd-hotel-card__price-original {
  font-size: var(--bvd-small);
  color: var(--bvd-text-light);
  text-decoration: line-through;
}

.bvd-hotel-card__footer {
  padding: 0 1.25rem 1.25rem;
}

/* Check availability button */
.bvd-btn-availability {
  display: block;
  width: 100%;
  text-align: center;
  background-color: var(--bvd-gold);
  color: var(--bvd-navy) !important;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.75rem 1rem;
  border-radius: var(--bvd-radius-md);
  text-decoration: none !important;
  border: none;
  cursor: pointer;
  transition: var(--bvd-transition);
  box-shadow: var(--bvd-shadow-gold);
  letter-spacing: 0.01em;
}

.bvd-btn-availability:hover {
  background-color: var(--bvd-gold-dark) !important;
  transform: translateY(-1px);
  text-decoration: none !important;
  box-shadow: 0 6px 24px rgba(245,158,11,0.40);
  color: var(--bvd-navy) !important;
}

.bvd-btn-availability:active {
  transform: translateY(0);
}

/* ============================================================
   10. TOUR CARDS
   ============================================================ */

.bvd-tours-section {
  padding: var(--bvd-space-2xl) 0;
  background-color: #F1F5F9;
}

.bvd-tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.bvd-tour-card {
  background-color: var(--bvd-card);
  border-radius: var(--bvd-radius-lg);
  box-shadow: var(--bvd-shadow-sm);
  border: 1px solid var(--bvd-border);
  overflow: hidden;
  transition: var(--bvd-transition-md);
  display: flex;
  flex-direction: column;
}

.bvd-tour-card:hover {
  box-shadow: var(--bvd-shadow-lg);
  transform: translateY(-3px);
}

.bvd-tour-card__image-wrap {
  position: relative;
}

.bvd-tour-card__image {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

/* Partner badge */
.bvd-partner-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background-color: rgba(10,37,64,0.90);
  color: #FFFFFF;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: var(--bvd-radius-pill);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}

.bvd-partner-badge--viator {
  background-color: rgba(37,99,235,0.90);
}

.bvd-partner-badge--gyg {
  background-color: rgba(245,158,11,0.95);
  color: var(--bvd-navy);
}

.bvd-tour-card__body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.bvd-tour-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--bvd-text-dark);
  line-height: 1.35;
  margin: 0;
}

.bvd-tour-card__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: var(--bvd-small);
  color: var(--bvd-text-muted);
  flex-wrap: wrap;
}

.bvd-tour-card__meta-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.bvd-tour-card__pricing-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-top: auto;
}

.bvd-tour-card__from {
  font-size: var(--bvd-xs);
  color: var(--bvd-text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.bvd-tour-card__price {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--bvd-blue);
}

.bvd-tour-card__duration {
  font-size: var(--bvd-xs);
  color: var(--bvd-text-muted);
  margin-left: auto;
}

.bvd-tour-card__footer {
  padding: 0 1.25rem 1.25rem;
}

/* Book button */
.bvd-btn-book {
  display: block;
  width: 100%;
  text-align: center;
  background-color: var(--bvd-blue);
  color: #FFFFFF !important;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.75rem 1rem;
  border-radius: var(--bvd-radius-md);
  text-decoration: none !important;
  border: none;
  cursor: pointer;
  transition: var(--bvd-transition);
  letter-spacing: 0.01em;
}

.bvd-btn-book:hover {
  background-color: var(--bvd-blue-dark) !important;
  transform: translateY(-1px);
  text-decoration: none !important;
  color: #FFFFFF !important;
}

/* ============================================================
   11. SECTION HEADINGS
   ============================================================ */

.bvd-section-heading {
  margin-bottom: var(--bvd-space-xl);
}

.bvd-section-heading__label {
  display: inline-block;
  font-size: var(--bvd-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--bvd-gold-dark);
  margin-bottom: 0.5rem;
}

.bvd-section-heading h2 {
  font-size: var(--bvd-h2);
  font-weight: 700;
  color: var(--bvd-text-dark);
  position: relative;
  padding-bottom: 0.75rem;
  display: inline-block;
}

.bvd-section-heading h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--bvd-gold) 0%, var(--bvd-gold-dark) 100%);
  border-radius: 2px;
}

.bvd-section-heading--center {
  text-align: center;
}

.bvd-section-heading--center h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.bvd-section-heading__desc {
  font-size: 1.05rem;
  color: var(--bvd-text-muted);
  max-width: 600px;
  margin-top: 0.75rem;
  line-height: 1.65;
}

/* ============================================================
   12. WEATHER BLOCK
   ============================================================ */

.bvd-weather-block {
  background-color: var(--bvd-card);
  border: 1px solid var(--bvd-border);
  border-radius: var(--bvd-radius-lg);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  box-shadow: var(--bvd-shadow-sm);
}

.bvd-weather-block__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.bvd-weather-block__title {
  font-size: var(--bvd-h4);
  font-weight: 700;
  color: var(--bvd-text-dark);
}

.bvd-weather-block__location {
  font-size: var(--bvd-small);
  color: var(--bvd-text-muted);
}

.bvd-weather-strip {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  border-radius: var(--bvd-radius-md);
  border: 1px solid var(--bvd-border);
  overflow: hidden;
}

.bvd-weather-strip::-webkit-scrollbar {
  display: none;
}

.bvd-weather-day {
  flex: 1;
  min-width: 100px;
  text-align: center;
  padding: 1rem 0.75rem;
  border-right: 1px solid var(--bvd-border);
  transition: var(--bvd-transition);
}

.bvd-weather-day:last-child {
  border-right: none;
}

.bvd-weather-day:hover {
  background-color: var(--bvd-blue-light);
}

.bvd-weather-day--today {
  background-color: var(--bvd-blue-light);
}

.bvd-weather-day__name {
  font-size: var(--bvd-xs);
  font-weight: 700;
  color: var(--bvd-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}

.bvd-weather-day__icon {
  font-size: 1.75rem;
  line-height: 1;
  margin-bottom: 0.4rem;
  display: block;
}

.bvd-weather-day__temps {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  font-size: var(--bvd-small);
}

.bvd-weather-day__high {
  font-weight: 700;
  color: var(--bvd-text-dark);
}

.bvd-weather-day__low {
  color: var(--bvd-text-light);
}

.bvd-weather-day__condition {
  font-size: var(--bvd-xs);
  color: var(--bvd-text-muted);
  margin-top: 0.3rem;
}

/* ============================================================
   13. BUDGET TABLE
   ============================================================ */

.bvd-budget-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--bvd-radius-lg);
  overflow: hidden;
  box-shadow: var(--bvd-shadow-sm);
  border: 1px solid var(--bvd-border);
  margin: 1.5rem 0;
  font-size: var(--bvd-small);
}

.bvd-budget-table thead {
  background-color: var(--bvd-navy);
  color: #FFFFFF;
}

.bvd-budget-table thead th {
  padding: 1rem 1.25rem;
  text-align: left;
  font-size: var(--bvd-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.90);
  white-space: nowrap;
}

.bvd-budget-table thead th:first-child {
  border-radius: 0;
}

.bvd-budget-table thead th.col-budget {
  color: #93C5FD;
}

.bvd-budget-table thead th.col-midrange {
  color: #86EFAC;
}

.bvd-budget-table thead th.col-luxury {
  color: var(--bvd-gold);
}

.bvd-budget-table tbody tr:nth-child(even) {
  background-color: #F8FAFC;
}

.bvd-budget-table tbody tr:nth-child(odd) {
  background-color: #FFFFFF;
}

.bvd-budget-table tbody tr:hover {
  background-color: var(--bvd-blue-light);
}

.bvd-budget-table td {
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid var(--bvd-border);
  color: var(--bvd-text-dark);
  vertical-align: middle;
}

.bvd-budget-table tbody tr:last-child td {
  border-bottom: none;
}

.bvd-budget-table td:first-child {
  font-weight: 600;
  color: var(--bvd-text-dark);
}

.bvd-budget-table td.col-budget {
  color: var(--bvd-blue);
  font-weight: 600;
}

.bvd-budget-table td.col-luxury {
  color: var(--bvd-gold-dark);
  font-weight: 600;
}

.bvd-budget-table tfoot td {
  padding: 0.875rem 1.25rem;
  background-color: #F1F5F9;
  font-weight: 700;
  font-size: var(--bvd-small);
  color: var(--bvd-text-dark);
  border-top: 2px solid var(--bvd-border);
}

/* ============================================================
   14. FAQ SECTION
   ============================================================ */

.bvd-faq-section {
  padding: var(--bvd-space-2xl) 0;
}

.bvd-faq-section .bvd-section-heading {
  margin-bottom: var(--bvd-space-lg);
}

.bvd-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--bvd-border);
  border-radius: var(--bvd-radius-lg);
  overflow: hidden;
  box-shadow: var(--bvd-shadow-sm);
}

.bvd-faq-item {
  background-color: var(--bvd-card);
  border-bottom: 1px solid var(--bvd-border);
  transition: var(--bvd-transition);
}

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

.bvd-faq-item:hover {
  background-color: #FAFBFC;
}

.bvd-faq-item__question {
  font-size: 1rem;
  font-weight: 700;
  color: var(--bvd-text-dark);
  padding: 1.25rem 1.5rem 1rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  line-height: 1.4;
  margin: 0;
}

.bvd-faq-item__question::before {
  content: "Q";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: var(--bvd-gold-light);
  color: var(--bvd-gold-dark);
  font-size: var(--bvd-xs);
  font-weight: 800;
  border-radius: var(--bvd-radius-sm);
  flex-shrink: 0;
  margin-top: 1px;
}

.bvd-faq-item__answer {
  font-size: var(--bvd-body);
  color: var(--bvd-text-muted);
  line-height: 1.75;
  padding: 0 1.5rem 1.25rem 3.5rem;
  margin: 0;
}

.bvd-faq-item__answer a {
  color: var(--bvd-blue);
  text-decoration: underline;
}

/* ============================================================
   15. EMAIL CAPTURE
   ============================================================ */

.bvd-email-capture {
  background-color: var(--bvd-navy);
  padding: var(--bvd-space-3xl) var(--bvd-container-pad);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bvd-email-capture::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(37,99,235,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.bvd-email-capture::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(245,158,11,0.10) 0%, transparent 70%);
  pointer-events: none;
}

.bvd-email-capture__inner {
  position: relative;
  z-index: 2;
  max-width: 560px;
  margin: 0 auto;
}

.bvd-email-capture__eyebrow {
  display: inline-block;
  font-size: var(--bvd-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--bvd-gold);
  margin-bottom: 0.75rem;
}

.bvd-email-capture h2 {
  font-size: 1.9rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.bvd-email-capture__subtext {
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

.bvd-email-capture__form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
  border-radius: var(--bvd-radius-md);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}

.bvd-email-capture__input {
  flex: 1;
  padding: 0.9rem 1.25rem;
  border: none !important;
  outline: none !important;
  font-size: var(--bvd-body);
  color: var(--bvd-text-dark);
  background-color: #FFFFFF;
  border-radius: 0 !important;
  min-width: 0;
}

.bvd-email-capture__input::placeholder {
  color: var(--bvd-text-light);
}

.bvd-email-capture__btn {
  background-color: var(--bvd-gold);
  color: var(--bvd-navy) !important;
  font-weight: 800;
  font-size: var(--bvd-small);
  padding: 0.9rem 1.5rem;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--bvd-transition);
  text-decoration: none !important;
  letter-spacing: 0.02em;
}

.bvd-email-capture__btn:hover {
  background-color: var(--bvd-gold-dark);
  text-decoration: none !important;
}

.bvd-email-capture__disclaimer {
  font-size: var(--bvd-xs);
  color: rgba(255,255,255,0.45);
  margin-top: 1rem;
}

/* ============================================================
   16. FOOTER
   ============================================================ */

.site-footer,
#colophon {
  background-color: var(--bvd-navy) !important;
  color: rgba(255,255,255,0.75) !important;
  padding: var(--bvd-space-2xl) 0 var(--bvd-space-lg) !important;
}

.site-footer .inside-footer,
.site-footer .footer-inner {
  max-width: var(--bvd-container);
  margin: 0 auto;
  padding: 0 var(--bvd-container-pad);
}

.bvd-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: var(--bvd-space-xl);
  border-bottom: 1px solid rgba(255,255,255,0.10);
  margin-bottom: var(--bvd-space-lg);
}

.bvd-footer-brand {
  max-width: 280px;
}

.bvd-footer-brand__name {
  font-size: 1.3rem;
  font-weight: 800;
  color: #FFFFFF !important;
  margin-bottom: 0.75rem;
  display: block;
}

.bvd-footer-brand__desc {
  font-size: var(--bvd-small);
  color: rgba(255,255,255,0.60);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.bvd-footer-social {
  display: flex;
  gap: 0.5rem;
}

.bvd-footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(255,255,255,0.10);
  border-radius: var(--bvd-radius-sm);
  color: rgba(255,255,255,0.75) !important;
  font-size: 0.9rem;
  text-decoration: none !important;
  transition: var(--bvd-transition);
  min-height: 44px;
  min-width: 44px;
}

.bvd-footer-social a:hover {
  background-color: var(--bvd-gold);
  color: var(--bvd-navy) !important;
  text-decoration: none !important;
}

.bvd-footer-col h4 {
  font-size: var(--bvd-small);
  font-weight: 700;
  color: #FFFFFF !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.bvd-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.bvd-footer-col ul li a {
  font-size: var(--bvd-small);
  color: rgba(255,255,255,0.65) !important;
  text-decoration: none !important;
  transition: var(--bvd-transition);
}

.bvd-footer-col ul li a:hover {
  color: var(--bvd-gold) !important;
  text-decoration: none !important;
}

/* Footer bottom */
.bvd-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.bvd-footer-bottom__copy {
  font-size: var(--bvd-xs);
  color: rgba(255,255,255,0.45);
}

.bvd-footer-bottom__links {
  display: flex;
  gap: 1.25rem;
}

.bvd-footer-bottom__links a {
  font-size: var(--bvd-xs);
  color: rgba(255,255,255,0.45) !important;
  text-decoration: none !important;
}

.bvd-footer-bottom__links a:hover {
  color: rgba(255,255,255,0.80) !important;
}

/* Remove GeneratePress branding */
.site-info,
.site-info a,
p.site-info {
  display: none !important;
}

/* ============================================================
   17. UTILITY CLASSES
   ============================================================ */

.bvd-section {
  padding: var(--bvd-space-2xl) 0;
}

.bvd-section--lg {
  padding: var(--bvd-space-3xl) 0;
}

.bvd-section--sm {
  padding: var(--bvd-space-xl) 0;
}

.bvd-section--alt {
  background-color: #F1F5F9;
}

.bvd-section--dark {
  background-color: var(--bvd-navy);
}

.bvd-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: var(--bvd-xs);
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--bvd-radius-pill);
}

.bvd-badge--gold {
  background-color: var(--bvd-gold-light);
  color: #92400E;
}

.bvd-badge--green {
  background-color: var(--bvd-green-light);
  color: #065F46;
}

.bvd-badge--blue {
  background-color: var(--bvd-blue-light);
  color: var(--bvd-blue-dark);
}

.bvd-badge--navy {
  background-color: rgba(10,37,64,0.08);
  color: var(--bvd-navy);
}

/* Stat blocks */
.bvd-stats-row {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 1.5rem 0;
}

.bvd-stat {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.bvd-stat__number {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--bvd-blue);
  line-height: 1;
}

.bvd-stat__label {
  font-size: var(--bvd-xs);
  color: var(--bvd-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Divider */
.bvd-divider {
  height: 1px;
  background-color: var(--bvd-border);
  margin: var(--bvd-space-xl) 0;
  border: none;
}

/* Text helpers */
.bvd-text-gold   { color: var(--bvd-gold) !important; }
.bvd-text-blue   { color: var(--bvd-blue) !important; }
.bvd-text-muted  { color: var(--bvd-text-muted) !important; }
.bvd-text-white  { color: #FFFFFF !important; }
.bvd-text-center { text-align: center; }

/* Skip nav */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--bvd-gold);
  color: var(--bvd-navy);
  font-weight: 700;
  padding: 0.75rem 1.25rem;
  z-index: 9999;
}

.skip-nav:focus {
  top: 0;
}

/* ============================================================
   18. RESPONSIVE / MOBILE
   ============================================================ */

@media (max-width: 1024px) {
  :root {
    --bvd-h1: 2.4rem;
    --bvd-h2: 1.75rem;
    --bvd-container: 960px;
  }

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

  .bvd-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  :root {
    --bvd-h1: 2rem;
    --bvd-h2: 1.5rem;
    --bvd-h3: 1.25rem;
    --bvd-container-pad: 1rem;
  }

  /* Nav mobile */
  .menu-toggle,
  .main-navigation button.menu-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
  }

  .main-navigation ul,
  .site-navigation ul {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 0.25rem;
    padding: 0.75rem 0;
    background-color: var(--bvd-navy-light);
  }

  .main-navigation ul.toggled,
  .main-navigation ul.opened,
  .main-navigation.toggled ul {
    display: flex !important;
  }

  .main-navigation ul li a,
  .site-navigation ul li a {
    padding: 0.75rem 1rem !important;
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  .header-inner,
  .site-header .inside-header {
    flex-wrap: wrap;
    min-height: 60px;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  /* Page header */
  .bvd-page-header {
    padding: var(--bvd-space-xl) 0 var(--bvd-space-lg);
  }

  /* Hotel / tour grids */
  .bvd-hotels-grid,
  .bvd-tours-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* Budget table */
  .bvd-budget-table {
    font-size: var(--bvd-xs);
  }

  .bvd-budget-table th,
  .bvd-budget-table td {
    padding: 0.7rem 0.75rem;
  }

  /* Email capture */
  .bvd-email-capture__form {
    flex-direction: column;
    border-radius: var(--bvd-radius-md);
    overflow: hidden;
  }

  .bvd-email-capture__input {
    border-radius: var(--bvd-radius-md) var(--bvd-radius-md) 0 0 !important;
    padding: 1rem 1.25rem;
  }

  .bvd-email-capture__btn {
    border-radius: 0 0 var(--bvd-radius-md) var(--bvd-radius-md) !important;
    padding: 1rem 1.5rem;
    min-height: 52px;
  }

  .bvd-email-capture h2 {
    font-size: 1.6rem;
  }

  /* Footer */
  .bvd-footer-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .bvd-footer-brand {
    max-width: 100%;
  }

  .bvd-footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  /* Author byline */
  .author-byline {
    width: 100%;
  }

  /* Weather strip */
  .bvd-weather-day {
    min-width: 80px;
  }

  /* Stats row */
  .bvd-stats-row {
    gap: 1.25rem;
  }

  /* Touch targets */
  a,
  button,
  input,
  select,
  .bvd-btn-availability,
  .bvd-btn-book {
    min-height: 44px;
  }

  .bvd-hotel-card__footer,
  .bvd-tour-card__footer {
    padding: 0 1rem 1rem;
  }

  .bvd-hotel-card__body,
  .bvd-tour-card__body {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  :root {
    --bvd-h1: 1.75rem;
    --bvd-h2: 1.35rem;
  }

  .bvd-email-capture {
    padding: var(--bvd-space-2xl) var(--bvd-container-pad);
  }

  .bvd-hotels-section__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .bvd-budget-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .bvd-budget-table {
    min-width: 480px;
  }
}

/* Print */
@media print {
  .site-header,
  .bvd-email-capture,
  .site-footer {
    display: none !important;
  }
}
