/*
Theme Name: Flights Spot
Theme URI: https://flightsspot.co.uk
Author: Flights Spot
Author URI: https://flightsspot.co.uk
Description: Modern Flight Search & Booking Interface - A high-conversion, trust-building landing page for Flights Spot featuring Midnight Blue, Bright Aqua, and Vibrant Orange branding.
Version: 1.0.0
Requires at least: 6.7
Tested up to: 6.8
Requires PHP: 7.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: flightsspot
Template: twentytwentyfive
Tags: flight-booking, travel, one-column, custom-colors, custom-menu, custom-logo, editor-style, featured-images, full-site-editing, block-patterns, wide-blocks

Flights Spot - Modern Flight Search & Booking Interface
Brand Colors:
- Midnight Blue: #1D2A6B (Headers, body text, trust)
- Bright Aqua: #37B9C4 (Action items - Search, Book, Submit)
- Vibrant Orange: #F1912E (Attention items - Sales, Urgent alerts)
- Background: #F7F9FB (Light grey/off-white)
*/

/* ==========================================================================
   Flights Spot Custom Styles
   ========================================================================== */

:root {
  /* Brand Colors */
  --fs-midnight-blue: #1d2a6b;
  --fs-bright-aqua: #37b9c4;
  --fs-vibrant-orange: #f1912e;
  --fs-background: #f7f9fb;
  --fs-white: #ffffff;
  --fs-light-gray: #e8eaef;
  --fs-dark-gray: #4a5568;

  /* Typography */
  --fs-font-primary: "Inter", "Montserrat", system-ui, -apple-system, sans-serif;
  --fs-font-heading: "Montserrat", "Inter", system-ui, -apple-system, sans-serif;

  /* Spacing */
  --fs-radius-sm: 8px;
  --fs-radius-md: 12px;
  --fs-radius-lg: 16px;
  --fs-radius-xl: 24px;

  /* Shadows */
  --fs-shadow-sm: 0 2px 4px rgba(29, 42, 107, 0.08);
  --fs-shadow-md: 0 4px 12px rgba(29, 42, 107, 0.12);
  --fs-shadow-lg: 0 8px 24px rgba(29, 42, 107, 0.16);
  --fs-shadow-xl: 0 12px 40px rgba(29, 42, 107, 0.2);

  /* Transitions */
  --fs-transition-fast: 0.15s ease;
  --fs-transition-normal: 0.3s ease;
  --fs-transition-slow: 0.5s ease;
}

/* ==========================================================================
   Base Styles
   ========================================================================== */

body {
  font-family: var(--fs-font-primary);
  background-color: var(--fs-background);
  color: var(--fs-midnight-blue);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--fs-font-heading);
  color: var(--fs-midnight-blue);
  font-weight: 700;
  line-height: 1.2;
}

/* ==========================================================================
   Header Styles
   ========================================================================== */

.fs-header {
  position: sticky;
  top: 0;
  z-index: 100000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(29, 42, 107, 0.08);
  transition: var(--fs-transition-normal);
}

/* When mobile menu is open, ensure header stays below */
.fs-mobile-menu.is-open ~ *,
.fs-mobile-menu.is-open + * {
  z-index: auto;
}

.fs-header.scrolled {
  background: var(--fs-white);
  box-shadow: var(--fs-shadow-md);
}

/* Logo Styles */
.fs-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.fs-header-logo {
  height: 70px;
  width: auto;
  object-fit: contain;
}

.fs-footer-logo {
  height: 70px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .fs-header-logo {
    height: 55px;
  }

  .fs-footer-logo {
    height: 55px;
  }
}

@media (max-width: 480px) {
  .fs-header-logo {
    height: 45px;
  }

  .fs-footer-logo {
    height: 45px;
  }
}

/* ==========================================================================
   Custom Navigation Styles
   ========================================================================== */

.fs-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

/* Ensure nav and button are clickable */
.fs-nav,
.fs-nav * {
  pointer-events: auto;
}

.fs-nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.fs-nav-link {
  color: var(--fs-midnight-blue);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: var(--fs-radius-sm);
  transition: var(--fs-transition-fast);
  font-size: 0.95rem;
}

.fs-nav-link:hover {
  color: var(--fs-bright-aqua);
  background: rgba(55, 185, 196, 0.08);
}

/* Hamburger Menu Toggle */
.fs-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--fs-midnight-blue);
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.2s ease;
  position: relative;
  z-index: 1000000 !important; /* Above mobile menu */
  pointer-events: auto !important; /* Ensure clickable */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1); /* Mobile tap feedback */
}

.fs-menu-toggle:hover {
  background: rgba(29, 42, 107, 0.08);
}

.fs-menu-toggle .fs-close-icon {
  display: none;
  position: absolute;
  pointer-events: none; /* Don't block clicks */
}

.fs-menu-toggle .fs-menu-icon {
  display: block;
  position: absolute;
  pointer-events: none; /* Don't block clicks */
}

.fs-menu-toggle[aria-expanded="true"] {
  color: #fff; /* White when menu is open */
  background: rgba(255, 255, 255, 0.15);
}

.fs-menu-toggle[aria-expanded="true"]:hover {
  background: rgba(255, 255, 255, 0.25);
}

.fs-menu-toggle[aria-expanded="true"] .fs-menu-icon {
  display: none;
}

.fs-menu-toggle[aria-expanded="true"] .fs-close-icon {
  display: block;
}

/* Mobile Menu Overlay */
.fs-mobile-menu {
  display: none;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background: var(--fs-midnight-blue) !important;
  z-index: 999999 !important; /* Highest z-index to be above everything */
  padding-top: 80px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  isolation: isolate; /* Create new stacking context */
}

.fs-mobile-menu.is-open {
  display: block !important;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fs-mobile-menu-content {
  padding: 1.5rem;
  max-width: 400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.fs-mobile-nav-links {
  list-style: none;
  margin: 0 0 2rem 0;
  padding: 0;
}

.fs-mobile-nav-links li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.fs-mobile-nav-links a {
  display: block;
  padding: 1rem 0;
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.fs-mobile-nav-links a:hover {
  color: var(--fs-bright-aqua);
  padding-left: 0.5rem;
}

/* Mobile Menu CTA Buttons */
.fs-mobile-menu-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.fs-mobile-cta-whatsapp,
.fs-mobile-cta-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fs-mobile-cta-whatsapp {
  background: #25D366;
  color: #fff;
}

.fs-mobile-cta-call {
  background: var(--fs-vibrant-orange);
  color: #fff;
}

.fs-mobile-cta-whatsapp:hover,
.fs-mobile-cta-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Responsive Navigation */
@media screen and (max-width: 991px) {
  .fs-nav-links {
    display: none;
  }

  .fs-menu-toggle {
    display: flex;
  }
}

.fs-call-btn {
  background: var(--fs-vibrant-orange);
  color: var(--fs-white);
  border-radius: var(--fs-radius-md);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--fs-transition-fast);
  box-shadow: 0 4px 12px rgba(241, 145, 46, 0.3);
}

.fs-call-btn:hover {
  background: #e07a1d;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(241, 145, 46, 0.4);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.fs-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--fs-midnight-blue) 0%, #2a3b8c 100%);
  overflow: hidden;
  margin-top: 0 !important;
}

/* Remove gap between header and hero */
.fs-header + .wp-block-group,
header + main,
header + .wp-block-group {
  margin-top: 0 !important;
}

main > .wp-block-cover:first-child,
main > .fs-hero:first-child,
.wp-block-cover.fs-hero {
  margin-top: 0 !important;
}

/* Fix block gap for front page */
body:has(.fs-hero) main.wp-block-group {
  gap: 0 !important;
}

body:has(.fs-hero) main.wp-block-group > *:not(:first-child) {
  margin-top: 0;
}

.fs-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/images/hero-bg.jpg") center/cover no-repeat;
  opacity: 0.15;
}

.fs-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--fs-background), transparent);
}

.fs-hero .wp-block-cover__inner-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.fs-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 2rem;
}

.fs-hero-title {
  color: var(--fs-white);
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.fs-hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 2rem;
}

/* ==========================================================================
   Flight Search Widget
   ========================================================================== */

.fs-search-widget {
  background: var(--fs-midnight-blue);
  border-radius: var(--fs-radius-xl);
  padding: 2rem;
  box-shadow: var(--fs-shadow-xl);
  max-width: 1000px;
  margin: 0 auto;
}

.fs-trip-type {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.fs-trip-type label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--fs-white);
  cursor: pointer;
  padding: 0.5rem 1rem;
  border-radius: var(--fs-radius-sm);
  transition: var(--fs-transition-fast);
}

.fs-trip-type input[type="radio"] {
  accent-color: var(--fs-bright-aqua);
}

.fs-trip-type input[type="radio"]:checked + span {
  color: var(--fs-bright-aqua);
}

.fs-search-fields {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.fs-field {
  position: relative;
}

.fs-field label {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.fs-field input,
.fs-field select {
  width: 100%;
  padding: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--fs-radius-md);
  background: rgba(255, 255, 255, 0.08);
  color: var(--fs-white);
  font-size: 1rem;
  transition: var(--fs-transition-fast);
}

.fs-field input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.fs-field input:focus,
.fs-field select:focus {
  outline: none;
  border-color: var(--fs-bright-aqua);
  background: rgba(255, 255, 255, 0.12);
}

.fs-search-btn {
  background: var(--fs-bright-aqua);
  color: var(--fs-white);
  border: none;
  padding: 1rem 2.5rem;
  border-radius: var(--fs-radius-md);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: var(--fs-transition-fast);
  box-shadow: 0 4px 16px rgba(55, 185, 196, 0.4);
  margin-top: 1.5rem;
}

.fs-search-btn:hover {
  background: #2ca5af;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(55, 185, 196, 0.5);
}

/* ==========================================================================
   USP Section (Why Choose Us)
   ========================================================================== */

.fs-usp-section {
  padding: 5rem 2rem;
  background: var(--fs-white);
}

.fs-usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.fs-usp-card {
  text-align: center;
  padding: 2.5rem 2rem;
  border-radius: var(--fs-radius-lg);
  background: var(--fs-background);
  border: 1px solid var(--fs-light-gray);
  transition: var(--fs-transition-normal);
}

.fs-usp-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--fs-shadow-lg);
  border-color: transparent;
}

.fs-usp-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(
    135deg,
    var(--fs-bright-aqua),
    var(--fs-midnight-blue)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.fs-usp-icon::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px dashed var(--fs-vibrant-orange);
  opacity: 0;
  transition: var(--fs-transition-normal);
}

.fs-usp-card:hover .fs-usp-icon::after {
  opacity: 1;
  animation: spin 10s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.fs-usp-icon svg {
  width: 36px;
  height: 36px;
  color: var(--fs-white);
}

.fs-usp-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--fs-midnight-blue);
}

.fs-usp-desc {
  color: var(--fs-dark-gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Orange accent for special offers */
.fs-usp-card.highlight .fs-usp-icon {
  background: linear-gradient(135deg, var(--fs-vibrant-orange), #e07a1d);
}

/* ==========================================================================
   Destinations Section
   ========================================================================== */

.fs-destinations-section {
  padding: 5rem 2rem;
  background: var(--fs-background);
}

.fs-section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.fs-section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.fs-section-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--fs-bright-aqua);
  border-radius: 2px;
}

.fs-destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.fs-destination-card {
  position: relative;
  border-radius: var(--fs-radius-lg);
  overflow: hidden;
  background: var(--fs-white);
  box-shadow: var(--fs-shadow-md);
  transition: var(--fs-transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Ensure card content doesn't overflow */
.fs-destination-card .wp-block-group {
  overflow: visible;
}

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

.fs-destination-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.fs-destination-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--fs-transition-slow);
}

.fs-destination-card:hover .fs-destination-image img {
  transform: scale(1.08);
}

/* Circular "Spot" frame overlay - reinforces brand */
.fs-destination-spot {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 60px;
  height: 60px;
  background: var(--fs-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--fs-shadow-md);
}

.fs-destination-spot svg {
  width: 28px;
  height: 28px;
  color: var(--fs-midnight-blue);
}

.fs-destination-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--fs-vibrant-orange);
  color: var(--fs-white);
  padding: 0.35rem 0.75rem;
  border-radius: var(--fs-radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.fs-destination-content {
  padding: 1.5rem;
  box-sizing: border-box;
  width: 100%;
  position: relative;
}

/* Ensure button stays within content container */
.fs-destination-content .fs-destination-book-btn {
  box-sizing: border-box;
  max-width: 100%;
}

.fs-destination-name {
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
}

.fs-destination-route {
  color: var(--fs-dark-gray);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.fs-destination-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.fs-price-from {
  color: var(--fs-dark-gray);
  font-size: 0.85rem;
}

.fs-price-amount {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--fs-midnight-blue);
}

.fs-destination-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--fs-bright-aqua);
  color: var(--fs-white);
  padding: 0.875rem;
  border-radius: var(--fs-radius-md);
  text-decoration: none;
  font-weight: 600;
  transition: var(--fs-transition-fast);
}

.fs-destination-btn:hover {
  background: #2ca5af;
}

/* New destination book button */
.fs-destination-book-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--fs-bright-aqua);
  color: var(--fs-white) !important;
  padding: 0.875rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 8px rgba(55, 185, 196, 0.2);
  position: relative;
  overflow: hidden;
  box-sizing: border-box; /* Ensure padding is included in width */
  margin: 0; /* Remove any default margins */
}

.fs-destination-book-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.fs-destination-book-btn:hover {
  background: #2ca5af;
  transform: translateY(-2px);
  color: var(--fs-white) !important;
  box-shadow: 0 4px 12px rgba(55, 185, 196, 0.35);
}

.fs-destination-book-btn:hover::before {
  left: 100%;
}

.fs-destination-book-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(55, 185, 196, 0.25);
}

/* ==========================================================================
   Contact & Callback Widgets
   ========================================================================== */

.fs-callback-section {
  padding: 6rem 2rem;
  background: linear-gradient(
      135deg,
      rgba(19, 36, 83, 0.97) 0%,
      rgba(42, 59, 140, 0.95) 100%
    ),
    url("https://images.unsplash.com/photo-1436491865332-7a61a109cc05?q=80&w=2074&auto=format&fit=crop")
      center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

.fs-callback-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -25%;
  width: 60%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(55, 185, 196, 0.2) 0%,
    transparent 60%
  );
  pointer-events: none;
  animation: callbackFloat 20s ease-in-out infinite;
}

.fs-callback-section::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -20%;
  width: 50%;
  height: 150%;
  background: radial-gradient(
    circle,
    rgba(241, 145, 46, 0.1) 0%,
    transparent 60%
  );
  pointer-events: none;
  animation: callbackFloat 25s ease-in-out infinite reverse;
}

@keyframes callbackFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(20px, -20px) scale(1.05);
  }
}

.fs-callback-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.fs-callback-title {
  color: var(--fs-white);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.fs-callback-subtitle {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
  font-size: 1.15rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.fs-callback-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 700px;
  margin: 0 auto;
}

.fs-callback-form input,
.fs-callback-form select {
  padding: 1.1rem 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  color: var(--fs-white);
  font-size: 1rem;
  transition: all 0.25s ease;
}

.fs-callback-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.6)' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

.fs-callback-form select option {
  background: var(--fs-midnight-blue);
  color: var(--fs-white);
}

.fs-callback-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.fs-callback-form input:focus,
.fs-callback-form select:focus {
  outline: none;
  border-color: var(--fs-bright-aqua);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 4px rgba(55, 185, 196, 0.15);
}

.fs-callback-submit {
  background: linear-gradient(
    135deg,
    var(--fs-vibrant-orange) 0%,
    #e07a1d 100%
  );
  color: var(--fs-white);
  border: none;
  padding: 1.15rem 2.5rem;
  border-radius: 14px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 20px rgba(241, 145, 46, 0.35);
}

.fs-callback-submit:hover {
  background: linear-gradient(135deg, #e07a1d 0%, #c96915 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(241, 145, 46, 0.45);
}

.fs-callback-submit:active {
  transform: translateY(-1px);
}

/* Callback Contact Info */
.fs-callback-section .wp-block-group[style*="margin-top:2.5rem"] {
  margin-top: 3rem !important;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.fs-callback-section
  .wp-block-group[style*="margin-top:2.5rem"]
  > .wp-block-group {
  background: rgba(255, 255, 255, 0.05);
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  transition: all 0.25s ease;
}

.fs-callback-section
  .wp-block-group[style*="margin-top:2.5rem"]
  > .wp-block-group:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.fs-callback-section
  .wp-block-group[style*="margin-top:2.5rem"]
  p[style*="font-weight:600"] {
  font-size: 1.1rem !important;
}

/* Floating WhatsApp Button */
.fs-whatsapp-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fs-white);
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: var(--fs-transition-fast);
}

.fs-whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

.fs-whatsapp-btn svg {
  width: 32px;
  height: 32px;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.fs-footer {
  background: linear-gradient(180deg, #0d1b3e 0%, var(--fs-midnight-blue) 100%);
  color: var(--fs-white);
  padding: 5rem 2rem 2rem;
  position: relative;
  overflow: hidden;
}

.fs-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(55, 185, 196, 0.3),
    transparent
  );
}

.fs-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.fs-footer-logo img {
  height: 50px;
  margin-bottom: 1rem;
}

.fs-footer-desc {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.fs-footer-title {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--fs-white);
  position: relative;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.fs-footer-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 35px;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--fs-bright-aqua),
    rgba(55, 185, 196, 0.3)
  );
  border-radius: 2px;
}

.fs-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fs-footer-links li {
  margin-bottom: 0.85rem;
}

.fs-footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  position: relative;
}

.fs-footer-links a::before {
  content: "";
  width: 0;
  height: 1px;
  background: var(--fs-bright-aqua);
  position: absolute;
  bottom: -2px;
  left: 0;
  transition: width 0.25s ease;
}

.fs-footer-links a:hover {
  color: var(--fs-bright-aqua);
  transform: translateX(6px);
}

.fs-footer-links a:hover::before {
  width: 100%;
}

.fs-footer-badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

.fs-footer-badge {
  background: linear-gradient(
    135deg,
    rgba(55, 185, 196, 0.15) 0%,
    rgba(55, 185, 196, 0.05) 100%
  );
  border: 1px solid rgba(55, 185, 196, 0.2);
  padding: 0.6rem 1.1rem;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.03em;
  transition: all 0.25s ease;
}

.fs-footer-badge:hover {
  background: linear-gradient(
    135deg,
    rgba(55, 185, 196, 0.25) 0%,
    rgba(55, 185, 196, 0.1) 100%
  );
  border-color: rgba(55, 185, 196, 0.4);
  transform: translateY(-2px);
}

.fs-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.fs-footer-copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

/* Footer Contact Info Styling */
.fs-footer-contact p {
  display: flex;
  align-items: center;
  transition: all 0.25s ease;
  padding: 0.5rem 0;
}

.fs-footer-contact p:hover {
  color: rgba(255, 255, 255, 0.95) !important;
  transform: translateX(4px);
}

.fs-footer-contact svg {
  flex-shrink: 0;
}

/* ==========================================================================
   Animations
   ========================================================================== */

/* Soaring bird animation - curved upward motion */
@keyframes soar {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(2deg);
  }
}

.fs-soar {
  animation: soar 3s ease-in-out infinite;
}

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

.fs-float {
  animation: float 4s ease-in-out infinite;
}

/* Fade in up animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fs-fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}

/* Pulse animation for CTAs */
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 4px 16px rgba(55, 185, 196, 0.4);
  }
  50% {
    box-shadow: 0 4px 24px rgba(55, 185, 196, 0.6);
  }
}

.fs-pulse {
  animation: pulse 2s ease-in-out infinite;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */

.fs-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.fs-text-center {
  text-align: center;
}
.fs-text-white {
  color: var(--fs-white);
}
.fs-text-aqua {
  color: var(--fs-bright-aqua);
}
.fs-text-orange {
  color: var(--fs-vibrant-orange);
}
.fs-text-midnight {
  color: var(--fs-midnight-blue);
}

.fs-bg-midnight {
  background-color: var(--fs-midnight-blue);
}
.fs-bg-aqua {
  background-color: var(--fs-bright-aqua);
}
.fs-bg-orange {
  background-color: var(--fs-vibrant-orange);
}
.fs-bg-light {
  background-color: var(--fs-background);
}

.fs-rounded-sm {
  border-radius: var(--fs-radius-sm);
}
.fs-rounded-md {
  border-radius: var(--fs-radius-md);
}
.fs-rounded-lg {
  border-radius: var(--fs-radius-lg);
}
.fs-rounded-xl {
  border-radius: var(--fs-radius-xl);
}

/* ==========================================================================
   Flight Search Widget V2 - Refined Design
   ========================================================================== */

/* Glassmorphism Container */
.fs-search-widget-v2 {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(55, 185, 196, 0.25);
  border-radius: 20px;
  padding: 2rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.fs-search-form-v2 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fs-search-row-wrapper {
  width: 100%;
}

/* Trip Type Pill Buttons */
.fs-trip-pills {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}

.fs-pill {
  position: relative;
  cursor: pointer;
  user-select: none;
}

.fs-pill input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.fs-pill span {
  display: inline-block;
  padding: 0.65rem 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.fs-pill:hover span {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(55, 185, 196, 0.4);
}

.fs-pill input[type="radio"]:checked + span,
.fs-pill.active span {
  background: var(--fs-bright-aqua);
  border-color: var(--fs-bright-aqua);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(55, 185, 196, 0.35);
}

/* Search Row Wrapper - Contains grid + swap button */
.fs-search-row-wrapper {
  position: relative;
}

/* Search Row Layout - Single Row Grid */
.fs-search-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 0;
  background: #fff;
  border-radius: 12px;
  overflow: visible;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* First and last field border radius for clean corners - desktop 6-column layout */
.fs-search-row.fs-flight-row .fs-field-v2:first-child {
  border-radius: 12px 0 0 12px;
}

.fs-search-row.fs-flight-row .fs-field-v2:last-child {
  border-radius: 0 12px 12px 0;
}

/* Field V2 Styles - Clean Grid Items */
.fs-field-v2 {
  display: flex;
  flex-direction: column;
  padding: 0.75rem 1rem;
  border-right: 1px solid #e8eaef;
  background: #fff;
  min-width: 0; /* Prevent overflow */
  position: relative;
}

.fs-field-v2:last-child {
  border-right: none;
}

.fs-field-v2 label {
  display: block;
  color: #6b7280;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
}

.fs-field-v2 input,
.fs-field-v2 select {
  width: 100%;
  padding: 0.5rem 0;
  border: none;
  border-radius: 0;
  background: transparent;
  color: var(--fs-midnight-blue);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--fs-font-primary);
  transition: all 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
}

.fs-field-v2 input::placeholder {
  color: #9ca3af;
  font-weight: 400;
}

.fs-field-v2 input:focus,
.fs-field-v2 select:focus {
  outline: none;
}

.fs-field-v2:focus-within {
  background: rgba(55, 185, 196, 0.05);
}

/* Select dropdown arrow */
.fs-field-v2 select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231D2A6B' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 1.5rem;
  cursor: pointer;
}

/* Date input styling */
.fs-field-v2 input[type="date"] {
  cursor: pointer;
}

.fs-field-v2 input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0.5;
  cursor: pointer;
}

.fs-field-v2 input {
  padding: 0.5rem 2rem;
}

/* Swap Button - Positioned between FROM and TO */
.fs-swap-btn {
  position: absolute;
  left: 0;
  top: 60%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--fs-bright-aqua);
  border: 3px solid #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  color: #fff;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.fs-swap-btn:hover {
  background: #2ca5af;
  transform: translate(-50%, -50%) rotate(180deg);
}

/* Contact Details Row */
.fs-contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
  width: 100%;
}

.fs-contact-row .fs-field-v2 {
  background: #fff;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: relative;
}

.fs-contact-row .fs-field-v2 input {
  width: 100%;
  border: none;
  background: transparent;
  font-size: 1rem;
  font-family: var(--fs-font-primary);
  color: var(--fs-midnight-blue);
  padding: 0.5rem 0;
  outline: none;
}

.fs-contact-row .fs-field-v2 input::placeholder {
  color: #9ca3af;
}

/* Field Error States */
.fs-field-v2.has-error {
  border-color: var(--fs-vibrant-orange) !important;
}

.fs-field-v2.has-error input {
  border-color: var(--fs-vibrant-orange) !important;
}

.fs-field-error {
  display: block;
  font-size: 0.75rem;
  color: var(--fs-vibrant-orange);
  margin-top: 0.25rem;
  line-height: 1.3;
}

/* Flatpickr Custom Styles */
.flatpickr-calendar {
  font-family: var(--fs-font-primary);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  border: none;
}

.flatpickr-day.selected,
.flatpickr-day.selected:hover {
  background: var(--fs-bright-aqua);
  border-color: var(--fs-bright-aqua);
}

.flatpickr-day:hover {
  background: rgba(55, 185, 196, 0.1);
  border-color: rgba(55, 185, 196, 0.2);
}

.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year {
  font-family: var(--fs-font-heading);
  font-weight: 600;
}

.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg {
  fill: var(--fs-bright-aqua);
}

/* Airport Autocomplete Dropdown */
.fs-autocomplete-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 320px;
  width: max-content;
  max-width: 420px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  max-height: 320px;
  overflow-y: auto;
  margin-top: 4px;
}

.fs-autocomplete-item {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.15s ease;
  gap: 0.75rem;
}

.fs-autocomplete-item:last-child {
  border-bottom: none;
}

.fs-autocomplete-item:hover,
.fs-autocomplete-item.selected {
  background: rgba(55, 185, 196, 0.08);
}

.fs-autocomplete-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.fs-autocomplete-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.fs-autocomplete-name {
  font-weight: 600;
  color: var(--fs-midnight-blue);
  font-size: 0.95rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fs-autocomplete-detail {
  font-size: 0.8rem;
  color: #6b7280;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fs-autocomplete-code {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--fs-bright-aqua);
  background: rgba(55, 185, 196, 0.1);
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  flex-shrink: 0;
}

.fs-autocomplete-empty {
  padding: 1rem;
  text-align: center;
  color: #6b7280;
  font-size: 0.9rem;
}

.fs-autocomplete-loading {
  padding: 1rem;
  text-align: center;
  color: var(--fs-bright-aqua);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Search Button V2 */
.fs-search-btn-v2 {
  margin-top: 1.5rem;
  padding: 1.1rem 3rem;
  background: var(--fs-bright-aqua);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: var(--fs-font-primary);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: all 0.2s ease;
  box-shadow: 0 4px 16px rgba(55, 185, 196, 0.4),
    0 0 0 0 rgba(55, 185, 196, 0.4);
}

.fs-search-btn-v2:hover {
  background: #2ca5af;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(55, 185, 196, 0.5),
    0 0 20px rgba(55, 185, 196, 0.3);
}

.fs-search-btn-v2:active {
  transform: translateY(0);
}

/* Trust Signals */
.fs-trust-signals {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
}

.fs-trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.fs-trust-item svg {
  flex-shrink: 0;
}

.fs-trust-item span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  font-weight: 500;
}

/* ==========================================================================
   Search Widget V2 - Responsive
   ========================================================================== */

@media (max-width: 1200px) {
  .fs-search-row {
    grid-template-columns: 1fr 1fr 1fr;
  }

  /* 3-column layout: Row 1 (1,2,3), Row 2 (4,5,6) - fix corner radius */
  .fs-search-row.fs-flight-row .fs-field-v2:first-child {
    border-radius: 12px 0 0 0;
  }

  .fs-search-row.fs-flight-row .fs-field-v2:nth-child(3) {
    border-radius: 0 12px 0 0;
  }

  .fs-search-row.fs-flight-row .fs-field-v2:nth-child(4) {
    border-radius: 0 0 0 12px;
  }

  .fs-search-row.fs-flight-row .fs-field-v2:last-child {
    border-radius: 0 0 12px 0;
  }

  .fs-swap-btn {
    left: 0;
  }
}

@media (max-width: 900px) {
  .fs-search-row {
    grid-template-columns: 1fr 1fr;
  }

  .fs-swap-btn {
    display: none;
  }

  .fs-field-v2 {
    border-right: none;
    border-bottom: 1px solid #e8eaef;
  }

  .fs-field-v2:nth-child(even) {
    border-left: 1px solid #e8eaef;
  }

  /* 2-column layout: Row 1 (1,2), Row 2 (3,4), Row 3 (5,6) - fix corner radius */
  .fs-search-row.fs-flight-row .fs-field-v2:first-child {
    border-radius: 12px 0 0 0;
  }

  .fs-search-row.fs-flight-row .fs-field-v2:nth-child(2) {
    border-radius: 0 12px 0 0;
  }

  .fs-search-row.fs-flight-row .fs-field-v2:nth-child(5) {
    border-radius: 0 0 0 12px;
  }

  .fs-search-row.fs-flight-row .fs-field-v2:last-child {
    border-radius: 0 0 12px 0;
  }
}

/* Mobile Sticky CTA Bar */
.fs-mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #fff;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  padding: 0;
}

.fs-mobile-cta-bar .fs-cta-buttons {
  display: flex;
  width: 100%;
}

.fs-mobile-cta-bar .fs-cta-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.fs-mobile-cta-bar .fs-cta-call {
  background: #fff;
  color: #1d2a6b;
  border-right: 1px solid #e8eaef;
}

.fs-mobile-cta-bar .fs-cta-whatsapp {
  background: #25d366;
  color: #fff;
}

/* Tablet styles - collapse navigation */
@media screen and (max-width: 991px) {
  /* Hide inline navigation links on tablet */
  .fs-header .wp-block-navigation:not(.is-menu-open) .wp-block-navigation__container {
    display: none !important;
  }

  /* Ensure hamburger menu button shows */
  .fs-header .wp-block-navigation__responsive-container-open {
    display: flex !important;
  }

  /* Header buttons - smaller on tablet */
  .fs-header .wp-block-button__link {
    padding: 0.5rem 0.75rem !important;
    font-size: 0.8rem !important;
  }
}

/* Small tablet/large mobile (767px to 600px) - fix header overflow */
@media screen and (max-width: 767px) and (min-width: 600px) {
  .fs-header {
    padding: 0.5rem 0.75rem !important;
  }

  /* Force flex row and prevent wrapping */
  .fs-header > .wp-block-group {
    flex-wrap: nowrap !important;
    gap: 0.5rem !important;
    align-items: center !important;
  }

  .fs-header .wp-block-group {
    flex-wrap: nowrap !important;
  }

  /* Smaller logo */
  .fs-header-logo {
    height: 45px !important;
  }

  /* Compact button group */
  .fs-header .wp-block-buttons,
  .fs-header-buttons {
    gap: 0.35rem !important;
    flex-wrap: nowrap !important;
  }

  /* Buttons - icon only with compact size */
  .fs-header .wp-block-button__link {
    padding: 0.5rem !important;
    min-width: 36px;
    min-height: 36px;
    font-size: 0 !important; /* Hide text */
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 10px !important;
  }

  .fs-header .wp-block-button__link svg {
    margin: 0 !important;
    width: 18px;
    height: 18px;
  }
}

/* Hide WordPress block navigation - we use custom nav instead */
@media screen and (max-width: 991px) {
  .fs-header .wp-block-navigation {
    display: none !important;
  }
}

/* Mobile styles - using multiple breakpoints for real devices */
@media screen and (max-width: 767px) {
  /* Show mobile CTA bar */
  .fs-mobile-cta-bar {
    display: block;
  }

  /* Header buttons - icon only on mobile */
  .fs-header .wp-block-buttons {
    gap: 0.5rem !important;
  }

  .fs-header .wp-block-button__link {
    padding: 0.5rem !important;
    min-width: 40px;
    min-height: 40px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 0 !important; /* Hide text */
  }

  .fs-header .wp-block-button__link svg {
    margin: 0 !important;
    width: 20px;
    height: 20px;
  }

  /* Reduce header padding */
  .fs-header {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  /* Smaller logo on mobile */
  .fs-header-logo {
    height: 40px !important;
  }

  /* FORCE hide hero title and subtitle on mobile */
  .fs-hero-title,
  .fs-hero-subtitle,
  .wp-block-heading.fs-hero-title,
  h1.fs-hero-title,
  p.fs-hero-subtitle,
  .fs-hero-content > .wp-block-group:first-child {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Reduce hero height and padding on mobile - FULL WIDTH */
  .fs-hero,
  .wp-block-cover.fs-hero {
    min-height: auto !important;
    padding: 0.5rem 0 !important;
  }

  .fs-hero .wp-block-cover__inner-container {
    padding: 0 0.5rem !important;
    max-width: 100% !important;
  }

  .fs-hero-content {
    padding: 0 !important;
    gap: 0 !important;
    width: 100% !important;
  }

  /* Mobile menu - additional small screen refinements (handled by 991px breakpoint) */

  /* Add bottom padding to body for sticky CTA */
  body {
    padding-bottom: 44px;
  }

  /* Trust signals hidden on mobile */
  .fs-trust-signals {
    display: none !important;
  }

  /* Hide non-essential fields on mobile */
  .fs-field-v2:nth-child(5), /* PASSENGERS */
  .fs-field-v2:nth-child(6) {
    /* CLASS */
    display: none !important;
  }

  /* Fix border-radius for last visible field (RETURN) when fields 5 & 6 are hidden */
  .fs-search-row.fs-flight-row .fs-field-v2:nth-child(4) {
    border-radius: 0 0 10px 10px !important;
  }

  /* First field gets top corners on mobile stacked layout */
  .fs-search-row.fs-flight-row .fs-field-v2:first-child {
    border-radius: 10px 10px 0 0 !important;
  }

  /* Hide Multi-City pill on mobile */
  .fs-pill:nth-child(3) {
    display: none;
  }

  /* Compact search widget - full width */
  .fs-search-widget-v2 {
    padding: 0.75rem;
    border-radius: 0;
    margin: 0 !important;
    overflow: visible !important;
  }

  .fs-search-row-wrapper {
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Fix airport dropdown on mobile */
  .fs-autocomplete-dropdown {
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    width: calc(100vw - 1rem) !important;
    min-width: unset !important;
    max-width: unset !important;
    z-index: 99999 !important;
    max-height: 40vh !important;
    border-radius: 10px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
    margin-left: -0.25rem;
  }

  .fs-autocomplete-item {
    padding: 0.5rem 0.6rem;
  }

  .fs-autocomplete-name {
    font-size: 0.85rem;
  }

  .fs-autocomplete-detail {
    font-size: 0.7rem;
  }

  .fs-autocomplete-code {
    font-size: 0.75rem;
    padding: 0.15rem 0.35rem;
  }

  /* Smaller bottom CTA bar */
  .fs-mobile-cta-bar .fs-cta-btn {
    padding: 0.6rem 0.5rem;
    font-size: 0.8rem;
    gap: 0.35rem;
  }

  .fs-mobile-cta-bar .fs-cta-btn svg {
    width: 16px;
    height: 16px;
  }

  /* Trip pills styling - smaller */
  .fs-trip-pills {
    gap: 0.35rem;
    margin-bottom: 0.6rem;
    justify-content: flex-start;
  }

  .fs-pill span {
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
  }

  /* Form fields - compact stacked layout */
  .fs-search-row {
    background: #fff;
    border-radius: 10px !important;
    overflow: visible !important;
    margin: 0 !important;
  }

  .fs-search-row-wrapper {
    border-radius: 10px !important;
    overflow: visible !important;
  }

  .fs-field-v2 {
    padding: 0.5rem 0.75rem;
    border-bottom: 1px solid #e8eaef;
    overflow: visible !important;
    position: relative;
  }

  .fs-field-v2:last-child {
    border-bottom: none;
  }

  .fs-field-v2 label {
    font-size: 0.6rem;
    color: #f1912e;
    font-weight: 600;
    margin-bottom: 0.15rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
  }

  .fs-field-v2 input,
  .fs-field-v2 select {
    font-size: 0.85rem;
    padding: 0.15rem 0;
    color: #1d2a6b;
  }

  .fs-field-v2 input::placeholder {
    color: #999;
    font-size: 0.8rem;
  }

  /* Contact row - keep but compact */
  .fs-contact-row {
    gap: 0;
    margin-top: 0.5rem;
    background: #fff;
    border-radius: 10px !important;
    overflow: hidden;
  }

  .fs-contact-row .fs-field-v2 {
    padding: 0.5rem 0.75rem;
    border-bottom: 1px solid #e8eaef;
  }

  .fs-contact-row .fs-field-v2:last-child {
    border-bottom: none;
  }

  /* Search button - compact */
  .fs-search-btn-v2 {
    width: 100%;
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
    margin-top: 0.6rem;
    border-radius: 8px;
  }

  .fs-search-btn-v2 svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 640px) {
  .fs-search-widget-v2 {
    padding: 1rem 0.75rem;
    border-radius: 12px;
  }

  .fs-search-row {
    grid-template-columns: 1fr;
    border-radius: 12px;
  }

  .fs-trip-pills {
    gap: 0.35rem;
    margin-bottom: 1.25rem;
  }

  .fs-pill span {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }

  .fs-field-v2 {
    padding: 0.875rem 1rem;
    border-right: none;
    border-left: none;
    border-bottom: 1px solid #e8eaef;
  }

  .fs-field-v2:last-child {
    border-bottom: none;
  }

  .fs-field-v2 input,
  .fs-field-v2 select {
    font-size: 1rem;
    padding: 0.5rem 0;
  }

  .fs-swap-btn {
    display: none;
  }

  .fs-contact-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .fs-contact-row .fs-field-v2 {
    padding: 0.75rem 1rem;
  }

  .fs-search-btn-v2 {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
  }

  .fs-trust-signals {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

/* Responsive helpers */
@media (max-width: 768px) {
  .fs-hero {
    min-height: 85vh;
  }

  .fs-search-widget {
    padding: 1.5rem;
  }

  .fs-search-fields {
    grid-template-columns: 1fr;
  }

  .fs-trip-type {
    flex-direction: column;
    gap: 0.5rem;
  }

  .fs-usp-grid,
  .fs-destinations-grid {
    grid-template-columns: 1fr;
  }

  .fs-callback-section {
    padding: 4rem 1.5rem;
  }

  .fs-callback-form {
    grid-template-columns: 1fr;
    gap: 0.875rem;
  }

  .fs-callback-form input,
  .fs-callback-form select {
    padding: 1rem 1.25rem;
  }

  .fs-callback-submit {
    padding: 1rem 1.5rem;
  }

  .fs-callback-section .wp-block-group[style*="margin-top:2.5rem"] {
    flex-direction: column !important;
    gap: 1rem !important;
  }

  .fs-footer {
    padding: 4rem 1.5rem 2rem;
  }

  .fs-footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }

  .fs-footer-badges {
    justify-content: center;
  }

  .fs-footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .fs-footer-links a:hover {
    transform: none;
  }

  .fs-whatsapp-btn {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 54px;
    height: 54px;
  }
}

/* Print styles */
@media print {
  .fs-whatsapp-btn,
  .fs-search-widget {
    display: none;
  }
}

/* ==========================================================================
   Flight Search Results
   ========================================================================== */

.fs-results-container {
  margin-top: -3rem;
  position: relative;
  z-index: 10;
}

.fs-results-header {
  margin-bottom: 2rem;
  text-align: center;
}

.fs-results-header h2 {
  font-family: var(--fs-font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--fs-midnight-blue);
  margin-bottom: 0.5rem;
}

.fs-results-summary {
  color: #6b7280;
  font-size: 1rem;
}

.fs-demo-notice {
  background: rgba(241, 145, 46, 0.1);
  color: var(--fs-vibrant-orange);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.875rem;
  display: inline-block;
  margin-top: 0.5rem;
}

/* Flight List */
.fs-flight-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.fs-flight-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr auto;
  align-items: center;
  gap: 1.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.2s ease;
}

.fs-flight-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.fs-flight-airline {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.fs-airline-code {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--fs-bright-aqua);
  background: rgba(55, 185, 196, 0.1);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  display: inline-block;
  width: fit-content;
}

.fs-airline-name {
  font-weight: 600;
  color: var(--fs-midnight-blue);
  font-size: 0.95rem;
}

.fs-flight-times {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--fs-midnight-blue);
}

.fs-time-arrow {
  color: #9ca3af;
  font-size: 1rem;
}

.fs-flight-details {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-align: center;
}

.fs-flight-duration {
  font-weight: 600;
  color: var(--fs-midnight-blue);
}

.fs-flight-stops {
  font-size: 0.85rem;
  color: #6b7280;
}

.fs-flight-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.15rem;
}

.fs-price-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fs-midnight-blue);
}

.fs-price-label {
  font-size: 0.8rem;
  color: #6b7280;
}

.fs-select-flight {
  background: var(--fs-bright-aqua);
  color: #fff;
  border: none;
  padding: 0.875rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.fs-select-flight:hover {
  background: #2ca5af;
  transform: translateY(-1px);
}

/* Destination Results */
.fs-destination-results {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.fs-dest-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.2s ease;
}

.fs-dest-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.fs-dest-info {
  flex: 1;
}

.fs-dest-name {
  font-family: var(--fs-font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--fs-midnight-blue);
  margin-bottom: 0.25rem;
}

.fs-dest-code {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fs-bright-aqua);
  background: rgba(55, 185, 196, 0.1);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.fs-dest-dates {
  font-size: 0.9rem;
  color: #6b7280;
}

.fs-dest-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.fs-price-from {
  font-size: 0.85rem;
  color: #6b7280;
}

.fs-dest-price .fs-price-amount {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--fs-vibrant-orange);
}

.fs-dest-book {
  display: block;
  text-align: center;
  background: var(--fs-bright-aqua);
  color: #fff;
  padding: 0.875rem;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.fs-dest-book:hover {
  background: #2ca5af;
  color: #fff;
}

/* No Results / Error States */
.fs-no-results,
.fs-error-message {
  text-align: center;
  padding: 3rem 2rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.fs-no-results h3,
.fs-error-message h3 {
  font-family: var(--fs-font-heading);
  font-size: 1.5rem;
  color: var(--fs-midnight-blue);
  margin-bottom: 0.5rem;
}

.fs-no-results p,
.fs-error-message p {
  color: #6b7280;
}

.fs-error-detail {
  font-size: 0.85rem;
  color: var(--fs-vibrant-orange);
  margin-top: 0.5rem;
}

/* Responsive Flight Results */
@media (max-width: 1024px) {
  .fs-flight-card {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .fs-flight-airline {
    grid-column: 1 / 2;
  }

  .fs-flight-times {
    grid-column: 2 / 3;
    justify-content: flex-end;
  }

  .fs-flight-details {
    grid-column: 1 / 2;
    text-align: left;
  }

  .fs-flight-price {
    grid-column: 2 / 3;
  }

  .fs-select-flight {
    grid-column: 1 / -1;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .fs-flight-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .fs-flight-airline,
  .fs-flight-times,
  .fs-flight-details,
  .fs-flight-price {
    grid-column: 1;
    align-items: center;
    text-align: center;
  }

  .fs-flight-times {
    justify-content: center;
  }

  .fs-destination-results {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Trips Page - Search Results with Sidebar
   ========================================================================== */

.fs-trips-page {
  padding-top: 0 !important;
}

/* Fix WordPress shortcode wrapper - make the trips-layout wrapper work */
.fs-trips-page .wp-block-shortcode {
  display: contents;
}

/* Trips Header */
.fs-trips-header {
  background: linear-gradient(
      135deg,
      rgba(19, 36, 83, 0.9) 0%,
      rgba(42, 59, 140, 0.85) 100%
    ),
    url("https://images.unsplash.com/photo-1421789497144-f50500b5fcf0?q=80&w=2671&auto=format&fit=crop")
      center/cover no-repeat;
  padding: 2.5rem 1.5rem;
  margin: 0 -1.5rem;
}

.fs-trips-header-content {
  max-width: 1200px;
  margin: 0 auto;
}

.fs-trips-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #fff;
  font-family: var(--fs-font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 0.75rem 0;
  flex-wrap: wrap;
}

.fs-trips-title svg {
  color: var(--fs-bright-aqua);
}

.fs-trips-meta {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin: 0 0 1rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.fs-meta-separator {
  color: rgba(255, 255, 255, 0.4);
}

.fs-modify-search {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--fs-bright-aqua);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.fs-modify-search:hover {
  color: #fff;
}

/* Trips Layout - Sidebar + Results */
.fs-trips-layout {
  display: flex !important;
  flex-direction: row !important;
  gap: 2rem;
  padding: 2rem 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
  align-items: flex-start;
}

/* Filters Sidebar */
.fs-filters-sidebar {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  height: fit-content;
  position: sticky;
  top: 100px;
  width: 280px !important;
  min-width: 280px !important;
  max-width: 280px !important;
  flex-shrink: 0 !important;
}

/* Results Main */
.fs-results-main {
  flex: 1 !important;
  min-width: 0;
}

.fs-filter-section {
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid #e8eaef;
}

.fs-filter-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.fs-filter-title {
  font-family: var(--fs-font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--fs-midnight-blue);
  margin: 0 0 1rem 0;
}

.fs-filter-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  cursor: pointer;
  font-size: 0.9rem;
  color: #4a5568;
}

.fs-filter-option input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--fs-bright-aqua);
  cursor: pointer;
}

.fs-filter-option:hover span {
  color: var(--fs-midnight-blue);
}

/* Price Range Slider */
.fs-price-range {
  padding: 0.5rem 0;
}

.fs-range-slider {
  width: 100%;
  height: 6px;
  -webkit-appearance: none;
  background: #e8eaef;
  border-radius: 3px;
  outline: none;
}

.fs-range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  background: var(--fs-bright-aqua);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(55, 185, 196, 0.4);
}

.fs-range-values {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #6b7280;
}

/* Results Main Area */
.fs-results-main {
  min-width: 0;
}

.fs-results-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.fs-results-count {
  font-size: 1rem;
  color: #6b7280;
  margin: 0;
}

.fs-sort-options {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.fs-sort-options label {
  font-size: 0.9rem;
  color: #6b7280;
}

.fs-sort-options select {
  padding: 0.5rem 1rem;
  border: 1px solid #e8eaef;
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--fs-midnight-blue);
  background: #fff;
  cursor: pointer;
}

.fs-section-title {
  font-family: var(--fs-font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--fs-midnight-blue);
  margin: 0 0 1.5rem 0;
}

/* ==========================================================================
   Flight Card V2 - Like FlightsCheck
   ========================================================================== */

.fs-flight-card-v2 {
  background: #fff;
  border-radius: 16px;
  display: flex;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.2s ease;
  overflow: hidden;
  margin-bottom: 1rem;
}

.fs-flight-card-v2:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.fs-card-main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 1.5rem;
  gap: 1.5rem;
}

.fs-flight-icon {
  color: #9ca3af;
  flex-shrink: 0;
}

.fs-flight-icon svg {
  transform: rotate(45deg);
}

.fs-flight-segment {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 120px;
}

.fs-flight-date {
  font-size: 0.8rem;
  color: #9ca3af;
  font-weight: 500;
}

.fs-flight-time {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--fs-midnight-blue);
}

.fs-flight-city {
  font-size: 0.85rem;
  color: #6b7280;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 140px;
}

.fs-flight-duration-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  min-width: 140px;
}

.fs-duration-line {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 160px;
}

.fs-duration-line .fs-line {
  flex: 1;
  height: 2px;
  background: #e8eaef;
  border-radius: 1px;
}

.fs-duration-line svg {
  color: #9ca3af;
  flex-shrink: 0;
}

.fs-duration-text {
  font-size: 0.85rem;
  color: #6b7280;
}

.fs-duration-text strong {
  color: var(--fs-midnight-blue);
}

.fs-flight-airline-v2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  min-width: 80px;
}

.fs-airline-logo {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.fs-airline-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.fs-airline-name-v2 {
  font-size: 0.8rem;
  color: #374151;
  text-align: center;
  max-width: 120px;
  line-height: 1.3;
}

/* Price Section */
.fs-card-price {
  background: #f8f9fa;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-width: 160px;
  border-left: 1px solid #e8eaef;
}

.fs-price-info {
  text-align: center;
}

.fs-price-amount-v2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--fs-midnight-blue);
  display: block;
}

.fs-price-label-v2 {
  font-size: 0.8rem;
  color: #6b7280;
}

.fs-continue-btn {
  background: var(--fs-vibrant-orange);
  color: #fff;
  border: none;
  padding: 0.875rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.fs-continue-btn:hover {
  background: #e07a1d;
  transform: translateY(-1px);
}

/* Demo Notice */
.fs-demo-notice {
  background: rgba(241, 145, 46, 0.1);
  color: var(--fs-vibrant-orange);
  padding: 0.75rem 1.25rem;
  border-radius: 10px;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Results Count Text */
.fs-results-count-text {
  color: #6b7280;
  font-size: 0.95rem;
  margin: 0 0 0.5rem 0;
}

/* Responsive Trips Page */
@media (max-width: 1024px) {
  .fs-trips-layout {
    flex-direction: column !important;
  }

  .fs-filters-sidebar {
    position: static;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .fs-filter-section {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .fs-card-main {
    flex-wrap: wrap;
  }

  .fs-flight-duration-block {
    order: 10;
    width: 100%;
    margin-top: 0.5rem;
  }
}

@media (max-width: 768px) {
  .fs-trips-header {
    padding: 1.5rem 1rem;
    margin: 0 -1rem;
  }

  .fs-trips-title {
    font-size: 1.25rem;
    gap: 0.5rem;
  }

  .fs-trips-layout {
    padding: 1.5rem 1rem;
  }

  .fs-filters-sidebar {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

  .fs-flight-card-v2 {
    flex-direction: column;
  }

  .fs-card-main {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas:
      "departure duration arrival"
      "airline airline airline";
    align-items: center;
    padding: 1.25rem;
    gap: 1rem;
    text-align: center;
  }

  .fs-flight-icon {
    display: none;
  }

  .fs-flight-segment.fs-departure {
    grid-area: departure;
    text-align: left;
  }

  .fs-flight-duration-block {
    grid-area: duration;
  }

  .fs-flight-segment.fs-arrival {
    grid-area: arrival;
    text-align: right;
  }

  .fs-flight-airline-v2 {
    grid-area: airline;
    flex-direction: row;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px dashed #e8eaef;
    width: 100%;
  }

  .fs-flight-segment {
    min-width: auto;
  }

  .fs-flight-city {
    max-width: none;
  }

  .fs-airline-logo {
    width: 36px;
    height: 36px;
  }

  .fs-airline-name-v2 {
    max-width: none;
    text-align: left;
  }

  .fs-card-price {
    border-left: none;
    border-top: 1px solid #e8eaef;
    flex-direction: row;
    justify-content: space-between;
    padding: 1rem 1.25rem;
  }

  .fs-price-info {
    text-align: left;
  }

  .fs-continue-btn {
    padding: 0.75rem 1.5rem;
  }
}

/* =========================================
   BOOKING PAGE STYLES
   ========================================= */

.fs-booking-page {
  min-height: 100vh;
  background: #f5f7fa;
}

/* Hidden fields container - prevents WordPress wpautop br tags from showing */
.fs-hidden-fields,
.fs-hidden-fields * {
  display: none !important;
  position: absolute !important;
  visibility: hidden !important;
  width: 0 !important;
  height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  overflow: hidden !important;
}

/* Booking Header */
.fs-booking-header {
  background: linear-gradient(135deg, #1d2a6b 0%, #2a3b8c 100%);
  padding: 2rem 0;
}

.fs-booking-header-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.fs-booking-header .fs-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  transition: color 0.2s;
}

.fs-booking-header .fs-back-link:hover {
  color: #fff;
}

.fs-booking-title {
  color: #fff;
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0;
}

/* Booking Container */
.fs-booking-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

/* Flight Summary Card */
.fs-booking-flight-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.fs-booking-route {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #e8eaef;
  margin-bottom: 1.25rem;
}

.fs-booking-airport {
  text-align: center;
}

.fs-booking-iata {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #1d2a6b;
  line-height: 1;
}

.fs-booking-city {
  display: block;
  font-size: 0.85rem;
  color: #666;
  margin-top: 0.25rem;
}

.fs-booking-route-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.fs-booking-route-line svg {
  color: #37b9c4;
}

.fs-booking-trip-type {
  font-size: 0.75rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Booking Details */
.fs-booking-details {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.fs-booking-detail-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #555;
}

.fs-booking-detail-item svg {
  color: #37b9c4;
  flex-shrink: 0;
}

/* Airline Info */
.fs-booking-airline {
  text-align: center;
  padding: 0.75rem 0;
  border-top: 1px dashed #e8eaef;
  margin-top: 1rem;
}

.fs-booking-airline-label {
  font-size: 0.8rem;
  color: #888;
  margin-right: 0.5rem;
}

.fs-booking-airline-name {
  font-weight: 600;
  color: #1d2a6b;
}

/* Flight Times */
.fs-booking-times {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 1rem 0;
  border-top: 1px solid #e8eaef;
  margin-top: 1rem;
}

.fs-booking-time {
  text-align: center;
}

.fs-time-label {
  display: block;
  font-size: 0.75rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
}

.fs-time-value {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1d2a6b;
}

.fs-booking-duration {
  text-align: center;
  color: #666;
  font-size: 0.85rem;
}

.fs-booking-duration .fs-stops {
  display: block;
  color: #37b9c4;
  font-weight: 600;
}

/* Price Section */
.fs-booking-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid #e8eaef;
  margin-top: 1rem;
}

.fs-price-label {
  font-size: 0.85rem;
  color: #888;
}

.fs-price-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: #f1912e;
}

.fs-price-note {
  font-size: 0.8rem;
  color: #888;
}

/* Booking Form Card */
.fs-booking-form-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  padding: 2rem;
}

.fs-booking-form-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1d2a6b;
  margin: 0 0 0.5rem 0;
}

.fs-booking-form-subtitle {
  font-size: 0.9rem;
  color: #666;
  margin: 0 0 1.5rem 0;
}

/* Form Styles */
.fs-booking-form .fs-form-group {
  margin-bottom: 1.25rem;
}

.fs-booking-form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}

.fs-booking-form label .required {
  color: #f1912e;
}

.fs-booking-form input[type="text"],
.fs-booking-form input[type="tel"],
.fs-booking-form input[type="email"] {
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  border: 2px solid #e0e3e8;
  border-radius: 8px;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #fff;
}

.fs-booking-form input:focus {
  outline: none;
  border-color: #37b9c4;
  box-shadow: 0 0 0 3px rgba(55, 185, 196, 0.15);
}

.fs-booking-form input.fs-field-invalid {
  border-color: #ef4444;
}

.fs-booking-form .fs-field-error {
  display: block;
  font-size: 0.8rem;
  color: #ef4444;
  margin-top: 0.35rem;
  min-height: 1rem;
}

/* Submit Button */
.fs-booking-submit {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #f1912e 0%, #e67e22 100%);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  margin-top: 0.5rem;
}

.fs-booking-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(241, 145, 46, 0.35);
}

.fs-booking-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.fs-booking-submit .fs-btn-loading {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.fs-spinner {
  width: 20px;
  height: 20px;
  animation: fs-spin 1s linear infinite;
}

@keyframes fs-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Success Message */
.fs-booking-success {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  padding: 3rem 2rem;
  text-align: center;
}

.fs-success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fs-success-icon svg {
  color: #fff;
}

.fs-success-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1d2a6b;
  margin: 0 0 1rem 0;
}

.fs-success-message {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin: 0 0 2rem 0;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.fs-success-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.fs-success-actions .fs-btn-primary {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #1d2a6b 0%, #2a3b8c 100%);
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.fs-success-actions .fs-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(29, 42, 107, 0.35);
}

.fs-success-actions .fs-btn-secondary {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: #1d2a6b;
  background: #fff;
  border: 2px solid #e0e3e8;
  border-radius: 8px;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}

.fs-success-actions .fs-btn-secondary:hover {
  border-color: #1d2a6b;
  background: #f8f9fa;
}

/* Responsive Booking Page */
@media (max-width: 600px) {
  .fs-booking-header {
    padding: 1.5rem 0;
  }

  .fs-booking-title {
    font-size: 1.35rem;
  }

  .fs-booking-container {
    padding: 1.25rem 1rem 3rem;
  }

  .fs-booking-flight-card,
  .fs-booking-form-card,
  .fs-booking-success {
    padding: 1.25rem;
    border-radius: 10px;
  }

  .fs-booking-route {
    gap: 1rem;
  }

  .fs-booking-iata {
    font-size: 1.5rem;
  }

  .fs-booking-details {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .fs-booking-times {
    gap: 1rem;
  }

  .fs-time-value {
    font-size: 1.1rem;
  }

  .fs-price-value {
    font-size: 1.5rem;
  }

  .fs-booking-form-card {
    padding: 1.5rem;
  }

  .fs-success-actions {
    flex-direction: column;
  }

  .fs-success-actions .fs-btn-primary,
  .fs-success-actions .fs-btn-secondary {
    width: 100%;
    text-align: center;
  }
}

/* Hide hidden inputs in booking form */
.fs-booking-form input[type="hidden"] {
  display: none !important;
  height: 0 !important;
  width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  position: absolute !important;
  visibility: hidden !important;
}

/* =========================================
   PAGE HERO STYLES (Shared)
   ========================================= */

.fs-page-hero {
  background: linear-gradient(135deg, #1d2a6b 0%, #2a3b8c 100%);
  padding: 4rem 1.5rem;
  text-align: center;
}

.fs-page-hero-compact {
  padding: 3rem 1.5rem;
}

.fs-page-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.fs-page-title {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
}

.fs-page-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  margin: 0;
  line-height: 1.6;
}

.fs-page-meta {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin: 0;
}

/* =========================================
   FAQ PAGE STYLES
   ========================================= */

.fs-faq-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.fs-faq-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.fs-faq-category-btn {
  background: #fff;
  border: 2px solid #e8eaef;
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #4a5568;
  cursor: pointer;
  transition: all 0.2s ease;
}

.fs-faq-category-btn:hover {
  border-color: #37b9c4;
  color: #37b9c4;
}

.fs-faq-category-btn.active {
  background: #37b9c4;
  border-color: #37b9c4;
  color: #fff;
}

.fs-faq-section {
  display: none;
}

.fs-faq-section.active {
  display: block;
}

.fs-faq-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 0.75rem;
  box-shadow: 0 2px 8px rgba(29, 42, 107, 0.06);
  overflow: hidden;
  border: 1px solid #e8eaef;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.fs-faq-item:hover {
  border-color: #d1d5db;
}

.fs-faq-item:has(.fs-faq-question[aria-expanded="true"]) {
  border-color: #37b9c4;
  box-shadow: 0 4px 16px rgba(55, 185, 196, 0.15);
}

.fs-faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1d2a6b;
  transition: background 0.2s;
}

.fs-faq-question:hover {
  background: #f7f9fb;
}

.fs-faq-question[aria-expanded="true"] {
  background: linear-gradient(
    135deg,
    rgba(55, 185, 196, 0.08) 0%,
    rgba(55, 185, 196, 0.03) 100%
  );
  color: #37b9c4;
}

.fs-faq-question span {
  flex: 1;
  padding-right: 1rem;
}

.fs-faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: #37b9c4;
  transition: transform 0.3s ease;
}

.fs-faq-question[aria-expanded="true"] .fs-faq-icon {
  transform: rotate(180deg);
}

.fs-faq-item .fs-faq-answer {
  display: none !important;
}

.fs-faq-item .fs-faq-answer.open {
  display: block !important;
}

.fs-faq-answer-content {
  padding: 1.25rem 1.5rem;
  color: #4a5568;
  font-size: 0.95rem;
  line-height: 1.7;
  background: #f8fafc;
  border-top: 1px solid rgba(55, 185, 196, 0.1);
}

.fs-faq-answer-content p {
  margin: 0;
}

.fs-faq-answer-content p + p {
  margin-top: 0.75rem;
}

.fs-faq-cta {
  background: linear-gradient(135deg, #37b9c4 0%, #2ca5af 100%);
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
  margin-top: 3rem;
}

.fs-faq-cta h3 {
  color: #fff;
  font-size: 1.5rem;
  margin: 0 0 0.75rem 0;
}

.fs-faq-cta p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 1.5rem 0;
}

.fs-faq-cta .fs-btn-primary {
  background: #fff;
  color: #1d2a6b;
}

.fs-faq-cta .fs-btn-primary:hover {
  background: #f7f9fb;
}

/* =========================================
   CONTACT PAGE STYLES
   ========================================= */

/* Contact Cards Section */
/* Contact Page - Modern Two Column Layout */
.fs-contact-page {
  background: #f8fafc;
}

/* Fix wpautop inserting p and br tags */
.fs-contact-page p:empty,
.fs-contact-page br,
.fs-contact-info-card > p,
.fs-contact-info-card > br,
.fs-contact-form-card > p:empty,
.fs-contact-form-card > br {
  display: none !important;
}

.fs-contact-hero {
  background: linear-gradient(135deg, #132453 0%, #1d2a6b 50%, #2a3b8c 100%);
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.fs-contact-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.fs-contact-hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.fs-contact-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.fs-contact-hero p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  margin: 0;
  line-height: 1.6;
}

.fs-contact-main {
  padding: 3rem 1.5rem 4rem;
}

.fs-contact-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 2rem;
  align-items: start;
}

/* Contact Info Sidebar */
.fs-contact-sidebar {
  position: sticky;
  top: 2rem;
}

.fs-contact-info-card {
  background: linear-gradient(145deg, #132453 0%, #1d2a6b 100%);
  border-radius: 24px;
  padding: 2.5rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.fs-contact-info-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(55, 185, 196, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.fs-contact-info-header {
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.fs-contact-info-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: #fff;
}

.fs-contact-info-header p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.5;
}

.fs-contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
  position: relative;
  z-index: 1;
}

.fs-contact-info-item:last-of-type {
  border-bottom: none;
}

a.fs-contact-info-item:hover {
  transform: translateX(4px);
}

a.fs-contact-info-item:hover .fs-contact-info-icon {
  background: rgba(55, 185, 196, 0.3);
}

.fs-contact-info-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(55, 185, 196, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #37b9c4;
  transition: background 0.2s ease;
}

.fs-contact-info-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.fs-contact-info-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.6);
}

.fs-contact-info-value {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}

.fs-contact-info-subtext {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Social Links */
.fs-contact-social {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}

.fs-contact-social-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.6);
  display: block;
  margin-bottom: 1rem;
}

.fs-contact-social-links {
  display: flex;
  gap: 0.75rem;
}

.fs-contact-social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.2s ease;
}

.fs-contact-social-link:hover {
  background: #37b9c4;
  transform: translateY(-2px);
}

/* Contact Form Card */
.fs-contact-form-wrapper {
  flex: 1;
}

.fs-contact-form-card {
  background: #fff;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 4px 32px rgba(29, 42, 107, 0.08);
}

.fs-contact-form-header {
  margin-bottom: 2rem;
}

.fs-contact-form-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #132453;
  margin: 0 0 0.5rem;
}

.fs-contact-form-header p {
  font-size: 0.95rem;
  color: #6b7280;
  margin: 0;
}

.fs-contact-form .fs-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.fs-contact-form .fs-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.fs-contact-form .fs-form-group-full {
  grid-column: 1 / -1;
  margin-top: 0.5rem;
}

.fs-contact-form label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
}

.fs-contact-form label .required {
  color: #ef4444;
}

.fs-contact-form input,
.fs-contact-form select,
.fs-contact-form textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 0.95rem;
  font-family: inherit;
  color: #1f2937;
  background: #fff;
  transition: all 0.2s ease;
}

.fs-contact-form input:focus,
.fs-contact-form select:focus,
.fs-contact-form textarea:focus {
  outline: none;
  border-color: #37b9c4;
  box-shadow: 0 0 0 4px rgba(55, 185, 196, 0.1);
}

.fs-contact-form input::placeholder,
.fs-contact-form textarea::placeholder {
  color: #9ca3af;
}

.fs-contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

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

.fs-contact-submit-btn {
  width: 100%;
  margin-top: 1.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #37b9c4 0%, #2ca5af 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(55, 185, 196, 0.3);
}

.fs-contact-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(55, 185, 196, 0.4);
}

.fs-contact-submit-btn:active {
  transform: translateY(0);
}

.fs-contact-submit-btn .fs-btn-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.fs-contact-submit-btn .fs-btn-loading {
  display: none;
}

/* Success Message */
.fs-contact-success {
  text-align: center;
  padding: 3rem 2rem;
}

.fs-contact-success .fs-success-icon {
  margin-bottom: 1.5rem;
}

.fs-contact-success h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #132453;
  margin: 0 0 0.75rem;
}

.fs-contact-success p {
  font-size: 1rem;
  color: #6b7280;
  margin: 0 0 1.5rem;
}

.fs-contact-success .fs-btn-outline {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: 2px solid #37b9c4;
  color: #37b9c4;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.fs-contact-success .fs-btn-outline:hover {
  background: #37b9c4;
  color: #fff;
}

.fs-contact-form-container {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(29, 42, 107, 0.08);
}

.fs-contact-form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.fs-contact-form-header h2 {
  font-size: 1.75rem;
  color: #1d2a6b;
  margin: 0 0 0.5rem 0;
}

.fs-contact-form-header p {
  color: #4a5568;
  margin: 0;
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.fs-contact-form .fs-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.fs-contact-form .fs-form-group {
  margin-bottom: 0;
}

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

.fs-contact-form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1d2a6b;
  margin-bottom: 0.5rem;
}

.fs-contact-form label .required {
  color: #f1912e;
  margin-left: 2px;
}

.fs-input-wrapper {
  position: relative;
}

.fs-input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #a0aec0;
  pointer-events: none;
  transition: color 0.2s;
}

.fs-textarea-wrapper .fs-input-icon {
  top: 1.1rem;
  transform: none;
}

.fs-contact-form input,
.fs-contact-form select,
.fs-contact-form textarea {
  width: 100%;
  padding: 0.9rem 1rem 0.9rem 3rem;
  border: 2px solid #e8eaef;
  border-radius: 12px;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  color: #1d2a6b;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  box-sizing: border-box;
}

.fs-contact-form input::placeholder,
.fs-contact-form textarea::placeholder {
  color: #a0aec0;
}

.fs-contact-form input:hover,
.fs-contact-form select:hover,
.fs-contact-form textarea:hover {
  border-color: #d1d5db;
}

.fs-contact-form input:focus,
.fs-contact-form select:focus,
.fs-contact-form textarea:focus {
  outline: none;
  border-color: #37b9c4;
  box-shadow: 0 0 0 4px rgba(55, 185, 196, 0.12);
  background: #fff;
}

.fs-input-wrapper:focus-within .fs-input-icon {
  color: #37b9c4;
}

.fs-contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23718096' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.fs-contact-form textarea {
  resize: vertical;
  min-height: 140px;
  padding-top: 1rem;
}

.fs-contact-submit {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 12px;
  background: linear-gradient(135deg, #37b9c4 0%, #2ca5af 100%);
  border: none;
  color: #fff;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(55, 185, 196, 0.3);
}

.fs-contact-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(55, 185, 196, 0.4);
}

.fs-contact-submit .fs-btn-text,
.fs-contact-submit .fs-btn-loading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.fs-contact-success {
  text-align: center;
  padding: 3rem 2rem;
}

.fs-contact-success .fs-success-icon {
  margin-bottom: 1.5rem;
}

.fs-contact-success h3 {
  color: #1d2a6b;
  font-size: 1.5rem;
  margin: 0 0 0.75rem 0;
}

.fs-contact-success p {
  color: #4a5568;
  margin: 0 0 1.5rem 0;
  font-size: 1rem;
}

.fs-contact-success .fs-btn-outline {
  display: inline-flex;
  padding: 0.75rem 1.5rem;
  border: 2px solid #37b9c4;
  border-radius: 10px;
  color: #37b9c4;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}

.fs-contact-success .fs-btn-outline:hover {
  background: #37b9c4;
  color: #fff;
}

/* =========================================
   LEGAL PAGES STYLES (Terms, Privacy, Data Protection)
   ========================================= */

.fs-legal-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 3rem;
}

.fs-legal-nav {
  position: sticky;
  top: 100px;
  align-self: start;
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(29, 42, 107, 0.06);
}

.fs-legal-nav h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: #4a5568;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 1rem 0;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #e8eaef;
}

.fs-legal-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fs-legal-nav li {
  margin-bottom: 0.5rem;
}

.fs-legal-nav a {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 0.9rem;
  color: #4a5568;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.2s;
}

.fs-legal-nav a:hover {
  background: #f7f9fb;
  color: #1d2a6b;
}

.fs-legal-content {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(29, 42, 107, 0.08);
}

.fs-legal-content section {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #e8eaef;
}

.fs-legal-content section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.fs-legal-content h2 {
  font-size: 1.35rem;
  color: #1d2a6b;
  margin: 0 0 1rem 0;
}

.fs-legal-content h3 {
  font-size: 1.1rem;
  color: #1d2a6b;
  margin: 1.5rem 0 0.75rem 0;
}

.fs-legal-content p {
  color: #4a5568;
  line-height: 1.7;
  margin: 0 0 1rem 0;
}

.fs-legal-content ul,
.fs-legal-content ol {
  color: #4a5568;
  line-height: 1.7;
  margin: 0 0 1rem 0;
  padding-left: 1.5rem;
}

.fs-legal-content li {
  margin-bottom: 0.5rem;
}

.fs-legal-content strong {
  color: #1d2a6b;
}

.fs-legal-content a {
  color: #37b9c4;
  text-decoration: none;
}

.fs-legal-content a:hover {
  text-decoration: underline;
}

/* Rights Table (Data Protection Page) */
.fs-rights-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}

.fs-rights-table th,
.fs-rights-table td {
  text-align: left;
  padding: 0.875rem 1rem;
  border-bottom: 1px solid #e8eaef;
}

.fs-rights-table th {
  background: #f7f9fb;
  font-weight: 600;
  color: #1d2a6b;
}

.fs-rights-table td {
  color: #4a5568;
}

.fs-rights-table tr:last-child td {
  border-bottom: none;
}

/* Shared Button Styles */
.fs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 12px;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.fs-btn-primary {
  background: #37b9c4;
  color: #fff;
}

.fs-btn-primary:hover {
  background: #2ca5af;
}

/* =========================================
   RESPONSIVE - Static Pages
   ========================================= */

@media (max-width: 900px) {
  .fs-contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .fs-contact-sidebar {
    position: static;
  }

  .fs-contact-info-card {
    padding: 2rem;
  }

  .fs-contact-form-card {
    padding: 2rem;
  }

  .fs-legal-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .fs-legal-nav {
    position: static;
    display: none;
  }
}

@media (max-width: 640px) {
  .fs-page-hero {
    padding: 3rem 1rem;
  }

  .fs-page-title {
    font-size: 1.75rem;
  }

  .fs-page-subtitle {
    font-size: 1rem;
  }

  .fs-faq-container,
  .fs-contact-container,
  .fs-legal-container {
    padding: 2rem 1rem;
  }

  .fs-faq-categories {
    gap: 0.5rem;
  }

  .fs-faq-category-btn {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }

  .fs-faq-question {
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
  }

  .fs-faq-answer-content {
    padding: 1rem 1.25rem;
    font-size: 0.9rem;
  }

  .fs-faq-item:has(.fs-faq-question[aria-expanded="true"]) {
    border-color: #37b9c4;
  }

  .fs-contact-hero {
    padding: 3rem 1.5rem;
  }

  .fs-contact-main {
    padding: 2rem 1rem 3rem;
  }

  .fs-contact-info-card {
    padding: 1.5rem;
    border-radius: 20px;
  }

  .fs-contact-info-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 10px;
  }

  .fs-contact-info-icon svg {
    width: 20px;
    height: 20px;
  }

  .fs-contact-form-card {
    padding: 1.5rem;
    border-radius: 20px;
  }

  .fs-contact-form-header h2 {
    font-size: 1.25rem;
  }

  .fs-contact-form .fs-form-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .fs-contact-submit-btn {
    padding: 0.875rem 1.5rem;
  }

  .fs-legal-content {
    padding: 1.5rem;
  }

  .fs-legal-content h2 {
    font-size: 1.2rem;
  }

  .fs-rights-table th,
  .fs-rights-table td {
    padding: 0.75rem;
    font-size: 0.9rem;
  }
}
