/*
Theme Name: ATripPlan Premium Travel
Theme URI: https://atripplan.com
Author: WFPX Communications and Publishing, LLC
Author URI: https://atripplan.com
Description: Premium travel perks membership theme for ATripPlan.com - Luxury travel, airport lounge access, hotel upgrades and exclusive member benefits.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: atripplan
Tags: travel, membership, luxury, elementor, one-page
*/

/* ============================================================
   ATripPlan Premium Travel Theme - Core Styles
   ============================================================ */

:root {
  --gold:        #C9A84C;
  --gold-light:  #E8C96A;
  --gold-dark:   #A07830;
  --navy:        #0D1B2A;
  --navy-mid:    #1A2F45;
  --navy-light:  #243B55;
  --white:       #FFFFFF;
  --off-white:   #F8F6F2;
  --gray-light:  #E8E4DC;
  --gray-mid:    #9A9A9A;
  --text-dark:   #1A1A1A;
  --text-body:   #3A3A3A;
  --accent-teal: #1A8FA0;
  --font-heading:'Playfair Display', Georgia, serif;
  --font-body:   'Lato', 'Helvetica Neue', Arial, sans-serif;
  --font-accent: 'Montserrat', Arial, sans-serif;
  --shadow-card: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-hover:0 16px 48px rgba(0,0,0,0.22);
  --radius:      12px;
  --transition:  all 0.35s cubic-bezier(0.4,0,0.2,1);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

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

/* ---- Utility Classes ---- */
.text-gold    { color: var(--gold) !important; }
.text-white   { color: var(--white) !important; }
.text-navy    { color: var(--navy) !important; }
.text-center  { text-align: center; }
.bg-navy      { background-color: var(--navy); }
.bg-navy-mid  { background-color: var(--navy-mid); }
.bg-off-white { background-color: var(--off-white); }
.bg-gold      { background-color: var(--gold); }

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

.container-custom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Gold Divider ---- */
.gold-divider {
  width: 72px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  margin: 18px auto 28px;
  border-radius: 2px;
}

/* ---- Section Labels ---- */
.section-label {
  font-family: var(--font-accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 8px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-mid);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,27,42,0.82) 0%,
    rgba(13,27,42,0.55) 50%,
    rgba(201,168,76,0.18) 100%
  );
  z-index: 1;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.18);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 50px;
  padding: 8px 20px;
  margin-bottom: 28px;
  font-family: var(--font-accent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.hero-badge::before {
  content: '✦';
  font-size: 0.6rem;
}

.hero-headline {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 22px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.hero-headline span { color: var(--gold-light); }

.hero-subheadline {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.82);
  margin-bottom: 42px;
  line-height: 1.7;
}

.hero-subheadline .perk-pill {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 2px 8px;
  margin: 2px;
  font-size: 0.9em;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

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

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  font-family: var(--font-accent);
  font-weight: 500;
}

.trust-item .trust-icon {
  width: 32px;
  height: 32px;
  background: rgba(201,168,76,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: 6px;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: var(--navy);
  box-shadow: 0 4px 24px rgba(201,168,76,0.4);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.55);
  color: var(--navy);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}

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

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

.btn-navy:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  color: var(--gold-light);
}

/* ============================================================
   PERKS GRID
   ============================================================ */
#perks {
  background: var(--off-white);
  padding: 100px 0;
}

.perks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}

.perk-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.perk-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  transform: scaleX(0);
  transition: var(--transition);
}

.perk-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.perk-card:hover::before { transform: scaleX(1); }

.perk-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.8rem;
  transition: var(--transition);
}

.perk-card:hover .perk-icon {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
}

.perk-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--navy);
}

.perk-card p {
  font-size: 0.93rem;
  color: var(--gray-mid);
  line-height: 1.6;
  margin-bottom: 20px;
}

.perk-value-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--gold-light);
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.perk-learn-more {
  font-family: var(--font-accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.perk-learn-more:hover { color: var(--gold-dark); }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
#how-it-works {
  background: var(--navy);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

#how-it-works::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

#how-it-works .section-title { color: var(--white); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 48px;
  left: calc(16.666% + 24px);
  right: calc(16.666% + 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  opacity: 0.4;
}

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

.step-number {
  width: 96px;
  height: 96px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  box-shadow: 0 8px 24px rgba(201,168,76,0.3);
  position: relative;
  z-index: 1;
}

.step-item h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.step-item p {
  color: rgba(255,255,255,0.65);
  font-size: 0.93rem;
  line-height: 1.65;
}

/* ============================================================
   PRICING TABLE
   ============================================================ */
#pricing {
  background: var(--off-white);
  padding: 100px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative;
}

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

.pricing-card.featured {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
  transform: scale(1.04);
  box-shadow: 0 20px 60px rgba(13,27,42,0.35);
  z-index: 2;
}

.pricing-card.featured:hover { transform: scale(1.04) translateY(-6px); }

.featured-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--navy);
  font-family: var(--font-accent);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 24px;
  border-radius: 0 0 12px 12px;
}

.pricing-header {
  padding: 48px 32px 28px;
  text-align: center;
  border-bottom: 1px solid var(--gray-light);
}

.pricing-card.featured .pricing-header {
  border-bottom-color: rgba(255,255,255,0.12);
}

.plan-name {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.plan-price {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.pricing-card.featured .plan-price { color: var(--white); }

.plan-price sup {
  font-size: 1.4rem;
  vertical-align: top;
  margin-top: 0.5rem;
  display: inline-block;
}

.plan-period {
  font-size: 0.9rem;
  color: var(--gray-mid);
  margin-top: 6px;
  display: block;
}

.pricing-card.featured .plan-period { color: rgba(255,255,255,0.6); }

.plan-tagline {
  font-size: 0.9rem;
  color: var(--gray-mid);
  margin-top: 12px;
}

.pricing-card.featured .plan-tagline { color: rgba(255,255,255,0.7); }

.pricing-features {
  padding: 28px 32px;
  list-style: none;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 9px 0;
  font-size: 0.93rem;
  color: var(--text-body);
  border-bottom: 1px solid var(--gray-light);
}

.pricing-card.featured .pricing-features li {
  color: rgba(255,255,255,0.82);
  border-bottom-color: rgba(255,255,255,0.1);
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features .check {
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-features .cross {
  color: var(--gray-mid);
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-features .feature-val {
  margin-left: auto;
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}

.pricing-footer {
  padding: 20px 32px 36px;
  text-align: center;
}

.savings-tag {
  display: inline-block;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 4px;
  padding: 4px 12px;
  font-family: var(--font-accent);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
}

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

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}

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

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

.quote-mark {
  font-family: var(--font-heading);
  font-size: 5rem;
  line-height: 0.6;
  color: var(--gold-light);
  opacity: 0.4;
  margin-bottom: 16px;
  display: block;
}

.testimonial-text {
  font-size: 0.97rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

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

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

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.author-name {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.95rem;
  display: block;
}

.author-detail {
  font-size: 0.82rem;
  color: var(--gray-mid);
}

.savings-highlight {
  display: inline-block;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--gold-light);
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 12px;
}

/* ============================================================
   DESTINATIONS
   ============================================================ */
#destinations {
  background: var(--navy);
  padding: 100px 0;
}

#destinations .section-title { color: var(--white); }

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
  margin-top: 60px;
}

.dest-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 280px;
  cursor: pointer;
}

.dest-card:first-child {
  grid-column: 1 / 3;
  height: 360px;
}

.dest-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}

.dest-card:hover .dest-bg { transform: scale(1.08); }

.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.9) 0%, rgba(13,27,42,0.2) 60%, transparent 100%);
}

.dest-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
}

.dest-location {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}

.dest-name {
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 10px;
}

.dest-perks-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201,168,76,0.2);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 4px;
  padding: 5px 12px;
  font-size: 0.78rem;
  color: var(--gold-light);
  font-family: var(--font-accent);
  font-weight: 600;
}

/* ============================================================
   PERK CALCULATOR
   ============================================================ */
#calculator {
  background: linear-gradient(135deg, var(--navy-mid), var(--navy));
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

#calculator::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  border-radius: 50%;
}

#calculator .section-title { color: var(--white); }

.calculator-wrapper {
  max-width: 780px;
  margin: 60px auto 0;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 20px;
  padding: 48px;
  backdrop-filter: blur(12px);
}

.calc-row {
  margin-bottom: 32px;
}

.calc-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-family: var(--font-accent);
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
}

.calc-value-display {
  color: var(--gold);
  font-weight: 700;
}

.calc-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: rgba(255,255,255,0.15);
  border-radius: 3px;
  outline: none;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(201,168,76,0.4);
}

.calc-result {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  margin-top: 8px;
}

.calc-result-label {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(13,27,42,0.7);
  display: block;
  margin-bottom: 8px;
}

.calc-result-amount {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}

.calc-result-sub {
  font-size: 0.9rem;
  color: rgba(13,27,42,0.75);
}

/* ============================================================
   BLOG / TIPS
   ============================================================ */
#blog {
  background: var(--off-white);
  padding: 100px 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

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

.blog-img {
  height: 200px;
  background: linear-gradient(135deg, var(--navy-light), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}

.blog-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.5), transparent);
}

.blog-body {
  padding: 28px;
}

.blog-category {
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}

.blog-card h3 {
  font-size: 1.08rem;
  margin-bottom: 10px;
  color: var(--navy);
  line-height: 1.4;
}

.blog-card p {
  font-size: 0.88rem;
  color: var(--gray-mid);
  line-height: 1.6;
  margin-bottom: 18px;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--gray-mid);
}

.blog-meta .dot { color: var(--gold); }

/* ============================================================
   CTA BANNER
   ============================================================ */
#cta-banner {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#cta-banner::before {
  content: '✦';
  position: absolute;
  font-size: 300px;
  color: rgba(255,255,255,0.06);
  top: -80px;
  left: -60px;
  font-family: serif;
}

#cta-banner h2 {
  color: var(--navy);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}

#cta-banner p {
  color: rgba(13,27,42,0.75);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: var(--navy);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 14px;
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 280px;
}

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

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--gold);
  color: var(--navy);
}

.footer-col h4 {
  font-family: var(--font-accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; }

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

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

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

.footer-newsletter {
  display: flex;
  gap: 0;
  margin-top: 8px;
}

.footer-newsletter input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-right: none;
  border-radius: 6px 0 0 6px;
  color: var(--white);
  font-size: 0.88rem;
  outline: none;
}

.footer-newsletter input::placeholder { color: rgba(255,255,255,0.4); }

.footer-newsletter button {
  padding: 12px 18px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border: none;
  border-radius: 0 6px 6px 0;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
}

.footer-newsletter button:hover { opacity: 0.9; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

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

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

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

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

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .perks-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .destinations-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-card:first-child { grid-column: 1 / 3; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .section-padding { padding: 72px 0; }
  .perks-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .destinations-grid { grid-template-columns: 1fr; }
  .dest-card { height: 240px; }
  .dest-card:first-child { grid-column: 1; height: 300px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-cta-group { flex-direction: column; align-items: center; }
  .calculator-wrapper { padding: 28px 20px; }
}

/* ============================================================
   ELEMENTOR OVERRIDES
   ============================================================ */
.elementor-section { position: relative; }
.elementor-widget-wrap { z-index: 1; }

/* Smooth scroll offset for sticky nav */
[id] { scroll-margin-top: 80px; }

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

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

.animate-fade-up { animation: fadeInUp 0.7s ease forwards; }

.gold-shimmer {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s linear infinite;
}

/* ============================================================
   STICKY NAV
   ============================================================ */
#site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

#site-nav.scrolled {
  background: rgba(13,27,42,0.97);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 700;
}

.nav-logo span { color: var(--white); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-accent);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}

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

.nav-cta {
  font-family: var(--font-accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--navy) !important;
  padding: 10px 24px;
  border-radius: 6px;
}

.nav-cta:hover { opacity: 0.9; transform: translateY(-1px); }
