/*
Theme Name: WingsRoute
Theme URI: https://wingsroute.com
Author: WingsRoute Travel
Author URI: https://wingsroute.com
Description: A clean, elegant static travel website theme for WingsRoute. Features Home, About Us, Contact Us, Terms & Conditions, and Privacy Policy pages with no dynamic database content required.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wingsroute
Tags: travel, one-page, custom-colors, custom-logo, custom-menu, featured-images, footer-widgets, full-width-template, sticky-post, theme-options, threaded-comments, translation-ready
*/

/* ===================================================
   WINGSROUTE THEME — LIGHT & PROFESSIONAL
   =================================================== */

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

/* ---------- CSS VARIABLES (LIGHT THEME) ---------- */
:root {
  /* Light Color Palette */
  --primary:       #2563eb;
  --primary-dark:  #1e40af;
  --primary-light: #3b82f6;
  --accent:        #f59e0b;
  --accent-light:  #fbbf24;
  
  --white:         #ffffff;
  --gray-50:       #f9fafb;
  --gray-100:      #f3f4f6;
  --gray-200:      #e5e7eb;
  --gray-300:      #d1d5db;
  --gray-400:      #9ca3af;
  --gray-500:      #6b7280;
  --gray-600:      #4b5563;
  --gray-700:      #374151;
  --gray-800:      #1f2937;
  --gray-900:      #111827;
  
  --text:          #1f2937;
  --text-light:    #6b7280;
  
  --border:        #e5e7eb;
  --shadow-sm:     0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow:        0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg:     0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl:     0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  --radius:        8px;
  --radius-lg:     12px;
  --radius-xl:     16px;
  --transition:    0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

a:hover { 
  color: var(--primary-dark); 
}

ul { 
  list-style: none; 
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.875rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p { 
  margin-bottom: 1rem; 
  color: var(--text-light); 
  line-height: 1.7;
}

/* ---------- LAYOUT ---------- */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section {
  padding: 4rem 0;
}

.section--gray { background: var(--gray-50); }
.section--white { background: var(--white); }

.section__label {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
  display: inline-block;
}

.section__title {
  margin-bottom: 1rem;
}

.section__subtitle {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 600px;
  margin-bottom: 2.5rem;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  border-radius: var(--radius);
  text-decoration: none;
}

.btn--primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn--primary:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

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

.btn--accent {
  background: var(--accent);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn--accent:hover {
  background: #d97706;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ---------- HEADER / NAV ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  transition: transform var(--transition);
}

.site-logo:hover {
  transform: translateY(-1px);
}

.site-logo__icon {
  display: flex;
  align-items: center;
  color: var(--primary);
}

.site-logo__text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  letter-spacing: -0.02em;
}

.site-logo__text span {
  color: var(--primary);
}

.primary-nav ul {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.primary-nav a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gray-700);
  padding: 0.5rem 0;
  position: relative;
  transition: color var(--transition);
}

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

.primary-nav a:hover,
.primary-nav .current-menu-item a,
.primary-nav .active a {
  color: var(--primary);
}

.primary-nav a:hover::after,
.primary-nav .current-menu-item a::after,
.primary-nav .active a::after {
  width: 100%;
}

.nav-cta {
  background: var(--primary);
  color: var(--white) !important;
  padding: 0.625rem 1.25rem !important;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--primary-dark);
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-700);
  transition: all var(--transition);
  border-radius: 2px;
}

/* ---------- HERO ---------- */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 50%, #bfdbfe 100%);
  padding-top: 70px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1.5rem;
  padding: 0.5rem 1rem;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 50px;
}

.hero__title {
  color: var(--gray-900);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero__title em {
  color: var(--primary);
  font-style: normal;
}

.hero__desc {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}

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

/* ---------- FEATURES STRIP ---------- */
.features-strip {
  background: var(--white);
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
}

.features-strip .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.feature-item:hover {
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.feature-item__icon {
  flex-shrink: 0;
  color: var(--primary);
}

.feature-item__title {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}

.feature-item__text {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 0;
  line-height: 1.5;
}

/* ---------- DESTINATIONS GRID ---------- */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.dest-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

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

.dest-card__bg {
  position: absolute;
  inset: 0;
  transition: transform var(--transition);
}

.dest-card:hover .dest-card__bg {
  transform: scale(1.1);
}

.dest-card--bali .dest-card__bg { 
  background: linear-gradient(135deg, #10b981 0%, #059669 100%); 
}
.dest-card--paris .dest-card__bg { 
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%); 
}
.dest-card--dubai .dest-card__bg { 
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%); 
}
.dest-card--tokyo .dest-card__bg { 
  background: linear-gradient(135deg, #ec4899 0%, #db2777 100%); 
}

.dest-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
}

.dest-card__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  color: white;
  z-index: 1;
  text-align: center;
}

.dest-card__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.dest-card__tag {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
}

/* ---------- WHY US ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.why-card {
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  text-align: center;
}

.why-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: var(--primary);
}

.why-card__icon {
  display: inline-flex;
  margin-bottom: 1.25rem;
  color: var(--primary);
}

.why-card__title {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

.why-card__text {
  font-size: 0.9375rem;
  color: var(--text-light);
  margin-bottom: 0;
  line-height: 1.6;
}

/* ---------- STATS BAR ---------- */
.stats-bar {
  background: var(--primary);
  padding: 3rem 0;
  color: white;
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stats-bar__number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: white;
  margin: 0;
  line-height: 1;
}

.stats-bar__label {
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  margin: 0.5rem 0 0;
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 5rem 0;
  text-align: center;
  color: white;
}

.cta-banner h2 { 
  color: white; 
  margin-bottom: 1rem; 
}

.cta-banner p { 
  color: rgba(255,255,255,0.9); 
  margin-bottom: 2rem; 
  font-size: 1.125rem; 
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--gray-900);
  color: rgba(255,255,255,0.7);
  padding-top: 4rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand__logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-brand__logo span { 
  color: var(--accent); 
}

.footer-brand__desc { 
  font-size: 0.9375rem; 
  line-height: 1.7; 
  margin-bottom: 1rem; 
}

.footer-col h5 {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 1rem;
}

.footer-col ul li { 
  margin-bottom: 0.625rem; 
}

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

.footer-col ul li a:hover { 
  color: var(--accent); 
}

.footer-newsletter p { 
  font-size: 0.9375rem; 
  margin-bottom: 1rem; 
}

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

.footer-newsletter__form input {
  flex: 1;
  padding: 0.75rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  color: white;
  outline: none;
  transition: all var(--transition);
}

.footer-newsletter__form input:focus {
  border-color: var(--accent);
  background: rgba(255,255,255,0.15);
}

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

.footer-newsletter__form button {
  padding: 0.75rem 1rem;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-newsletter__form button:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  font-size: 0.875rem;
}

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

.footer-bottom__links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  transition: color var(--transition);
}

.footer-bottom__links a:hover { 
  color: var(--accent); 
}

/* ---------- POPUP MODAL ---------- */
.wr-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  overflow-y: auto;
}

.wr-popup-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.wr-popup {
  background: white;
  border-radius: var(--radius-lg);
  max-width: 420px;
  width: 100%;
  box-shadow: var(--shadow-xl);
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
  margin: auto;
}

.wr-popup-overlay.is-visible .wr-popup {
  transform: scale(1);
}

.wr-popup__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  color: var(--gray-700);
  z-index: 10;
  box-shadow: var(--shadow);
}

.wr-popup__close:hover {
  background: white;
  color: var(--gray-900);
  transform: rotate(90deg) scale(1.1);
}

.wr-popup__header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 2rem 1.5rem 1.5rem;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  text-align: center;
  color: white;
  position: relative;
}

.wr-popup__plane {
  display: inline-flex;
  margin-bottom: 0.75rem;
  color: rgba(255,255,255,0.9);
  animation: float 3s ease-in-out infinite;
}

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

.wr-popup__badge {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  background: var(--accent);
  color: white;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}

.wr-popup__title {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 0.5rem;
}

.wr-popup__subtitle {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 0;
  line-height: 1.5;
}

.wr-popup__deals {
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.wr-popup__deal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem;
  background: var(--gray-50);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.wr-popup__deal:hover {
  background: var(--gray-100);
  transform: translateX(4px);
}

.wr-popup__deal-route {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
  font-size: 0.875rem;
}

.wr-popup__deal-city {
  font-weight: 600;
  color: var(--gray-900);
  font-size: 0.875rem;
}

.wr-popup__deal-price {
  font-size: 0.8125rem;
  color: var(--text-light);
  white-space: nowrap;
}

.wr-popup__deal-price strong {
  font-size: 1.125rem;
  color: var(--primary);
  font-weight: 700;
}

.wr-popup__cta {
  padding: 1.25rem 1.5rem 1.5rem;
  text-align: center;
  border-top: 1px solid var(--border);
}

.wr-popup__cta-label {
  font-size: 0.8125rem;
  color: var(--text-light);
  margin-bottom: 0.875rem;
}

.wr-popup__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 1.5rem;
  background: var(--accent);
  color: white;
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all var(--transition);
  box-shadow: var(--shadow);
}

.wr-popup__phone:hover {
  background: var(--accent-light);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.wr-popup__hours {
  font-size: 0.75rem;
  color: var(--text-light);
  margin: 0.625rem 0 0;
}

.wr-popup__dismiss {
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 0.8125rem;
  cursor: pointer;
  padding: 0.5rem 0.75rem;
  margin-top: 0.375rem;
  transition: color var(--transition);
  white-space: normal;
  line-height: 1.4;
  max-width: 100%;
}

.wr-popup__dismiss:hover {
  color: var(--gray-900);
  text-decoration: underline;
}

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  padding: 140px 0 80px;
  text-align: center;
}

.page-hero__label {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
  display: block;
}

.page-hero h1 {
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.page-hero__desc {
  color: var(--text-light);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- BREADCRUMB ---------- */
.breadcrumb {
  padding: 1rem 0;
  background: var(--gray-50);
  border-bottom: 1px solid var(--border);
}

.breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.breadcrumb a { 
  color: var(--text-light); 
}

.breadcrumb a:hover { 
  color: var(--primary); 
}

.breadcrumb__sep { 
  color: var(--gray-400); 
}

.breadcrumb__current { 
  color: var(--gray-900); 
  font-weight: 500; 
}

/* ---------- ABOUT PAGE ---------- */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.about-intro__visual {
  position: relative;
}

.about-visual-box {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  color: rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-visual-box::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -20%;
  width: 60%;
  height: 60%;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
}

.about-stat-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--accent);
  color: white;
  padding: 1.5rem 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-xl);
}

.about-stat-badge__number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  display: block;
  margin-bottom: 0.25rem;
}

.about-stat-badge__label {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.95;
}

.about-intro__text p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-light);
}

.about-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.value-card {
  padding: 2rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition);
}

.value-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--primary);
}

.value-card__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.value-card__title {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-900);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0;
}

/* ---------- TEAM ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.team-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.team-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--primary);
}

.team-card__avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 1.5rem;
  border: 3px solid var(--border);
}

.team-card__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.team-card__role {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--primary);
}

/* ---------- CONTACT PAGE ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-form {
  background: var(--white);
  padding: 2.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  outline: none;
  transition: all var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

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

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.contact-info__item:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  border-color: var(--primary);
}

.contact-info__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: white;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.contact-info__value {
  font-size: 0.9375rem;
  color: var(--text);
  margin-bottom: 0;
  line-height: 1.6;
}

.contact-info__value a {
  color: var(--primary);
  font-weight: 500;
}

.contact-info__value a:hover { 
  color: var(--primary-dark); 
}

/* ---------- LEGAL PAGES ---------- */
.legal-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 3rem;
  align-items: start;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.legal-content h2:first-child { 
  margin-top: 0; 
}

.legal-content p { 
  font-size: 0.9375rem; 
  line-height: 1.7; 
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content ul li {
  font-size: 0.9375rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.legal-sidebar {
  position: sticky;
  top: 100px;
}

.legal-sidebar__box {
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.legal-sidebar__box h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.legal-sidebar__box ul { 
  padding-left: 0; 
}

.legal-sidebar__box ul li { 
  margin-bottom: 0.5rem; 
}

.legal-sidebar__box ul li a {
  font-size: 0.875rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition);
  padding: 0.375rem 0;
  position: relative;
  padding-left: 1.25rem;
}

.legal-sidebar__box ul li a:hover { 
  color: var(--primary); 
  padding-left: 1.5rem;
}

.legal-sidebar__box ul li a::before { 
  content: '→'; 
  color: var(--primary);
  font-weight: bold;
  flex-shrink: 0;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* ---------- REFUND TABLE ---------- */
.refund-table-wrapper {
  overflow-x: auto;
  margin: 1.5rem 0 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.refund-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.refund-table thead tr {
  background: var(--primary);
  color: white;
}

.refund-table thead th {
  padding: 1rem 1.25rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.refund-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.refund-table tbody tr:last-child { 
  border-bottom: none; 
}

.refund-table tbody tr:nth-child(even) { 
  background: var(--gray-50); 
}

.refund-table tbody tr:hover { 
  background: var(--gray-100); 
}

.refund-table td {
  padding: 1rem 1.25rem;
  color: var(--text);
}

.refund-table__highlight {
  font-weight: 600;
  color: #059669;
}

.refund-table__no-refund {
  font-weight: 600;
  color: #dc2626;
}

/* ---------- UTILITIES ---------- */
.text-center { text-align: center; }
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary);
  color: white;
  padding: 0.5rem 1rem;
  z-index: 9999;
  border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { 
  top: 0; 
  color: white; 
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .footer-top { 
    grid-template-columns: 1fr 1fr; 
  }
  .legal-layout { 
    grid-template-columns: 1fr; 
  }
  .legal-sidebar { 
    position: static; 
  }
  .about-intro {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-values {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .section { 
    padding: 3rem 0; 
  }

  /* Mobile Nav */
  .primary-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    padding: 1.5rem;
    border-top: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }

  .primary-nav.is-open { 
    display: block; 
  }

  .primary-nav ul { 
    flex-direction: column; 
    gap: 0; 
  }

  .primary-nav ul li a {
    display: block;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
  }

  .primary-nav ul li:last-child a { 
    border-bottom: none; 
  }

  .nav-cta {
    margin-top: 1rem;
    display: block;
    text-align: center;
  }

  .nav-toggle { 
    display: flex; 
  }

  /* Hero */
  .hero { 
    min-height: 100svh; 
    padding: 2rem 0; 
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .btn { 
    width: 100%; 
  }

  /* Features */
  .features-strip .container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* Destinations */
  .dest-grid { 
    grid-template-columns: 1fr; 
  }

  /* Why Grid */
  .why-grid { 
    grid-template-columns: 1fr; 
  }

  /* Stats */
  .stats-bar__grid { 
    grid-template-columns: repeat(2, 1fr); 
    gap: 1.5rem;
  }

  /* Contact */
  .contact-layout { 
    grid-template-columns: 1fr; 
  }

  .form-row { 
    grid-template-columns: 1fr; 
  }

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

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

  .footer-bottom__links { 
    justify-content: center; 
    flex-wrap: wrap; 
  }

  /* About page */
  .about-values {
    grid-template-columns: repeat(2, 1fr);
  }

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

  /* Popup */
  .wr-popup {
    max-width: calc(100% - 2rem);
    margin: 1rem;
  }

  .wr-popup__header {
    padding: 1.75rem 1.25rem 1.25rem;
  }

  .wr-popup__title {
    font-size: 1.25rem;
  }

  .wr-popup__subtitle {
    font-size: 0.875rem;
  }

  .wr-popup__deals {
    padding: 1rem 1.25rem;
  }

  .wr-popup__deal {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.75rem;
  }

  .wr-popup__deal-route {
    width: 100%;
  }

  .wr-popup__deal-price {
    align-self: flex-end;
  }

  .wr-popup__cta {
    padding: 1rem 1.25rem 1.25rem;
  }

  .wr-popup__phone {
    font-size: 1rem;
    padding: 0.75rem 1.25rem;
    width: 100%;
    justify-content: center;
  }

  .wr-popup__close {
    width: 28px;
    height: 28px;
    top: 0.625rem;
    right: 0.625rem;
  }

  .wr-popup__close svg {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 480px) {
  .container { 
    width: 95%; 
  }

  .hero__title { 
    font-size: 2rem; 
  }

  .stats-bar__grid { 
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .stats-bar__number {
    font-size: 2rem;
  }

  .stats-bar__label {
    font-size: 0.75rem;
  }

  /* About page mobile */
  .about-values {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .about-stat-badge {
    position: static;
    margin-top: 1.5rem;
  }

  /* Popup - Extra small screens */
  .wr-popup {
    max-width: calc(100% - 1rem);
    margin: 0.5rem;
  }

  .wr-popup__header {
    padding: 1.5rem 1rem 1rem;
  }

  .wr-popup__plane svg {
    width: 32px;
    height: 32px;
  }

  .wr-popup__title {
    font-size: 1.125rem;
  }

  .wr-popup__subtitle {
    font-size: 0.8125rem;
  }

  .wr-popup__deals {
    padding: 0.875rem 1rem;
  }

  .wr-popup__deal {
    padding: 0.625rem;
  }

  .wr-popup__deal-city {
    font-size: 0.8125rem;
  }

  .wr-popup__deal-route svg {
    width: 14px;
    height: 14px;
  }

  .wr-popup__deal-price {
    font-size: 0.75rem;
  }

  .wr-popup__deal-price strong {
    font-size: 1rem;
  }

  .wr-popup__cta {
    padding: 0.875rem 1rem 1rem;
  }

  .wr-popup__phone {
    font-size: 0.9375rem;
    padding: 0.75rem 1rem;
    gap: 0.5rem;
  }

  .wr-popup__phone svg {
    width: 18px;
    height: 18px;
  }

  .wr-popup__hours {
    font-size: 0.6875rem;
  }

  .wr-popup__dismiss {
    font-size: 0.75rem;
    padding: 0.5rem;
    line-height: 1.3;
  }

  /* Refund Table */
  .refund-table-wrapper {
    border: none;
  }

  .refund-table thead { 
    display: none; 
  }

  .refund-table,
  .refund-table tbody,
  .refund-table tr,
  .refund-table td { 
    display: block; 
    width: 100%; 
  }

  .refund-table tbody tr {
    background: white !important;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 1rem;
    padding: 0;
  }

  .refund-table td {
    padding: 0.75rem 1rem;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
  }

  .refund-table td:last-child { 
    border-bottom: none; 
  }

  .refund-table td::before {
    content: attr(data-label);
    font-weight: 600;
    color: var(--gray-900);
  }
}
