/* ==========================================
   Vistaroam Premium Design System
   Core Stack: CSS Grid/Flexbox, Custom HSL Variables, Outfit & Inter fonts
   ========================================== */

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

:root {
  /* Color Palette - Premium Mediterranean Indigo, Cyan & Coral */
  --color-primary: #1e1b4b; /* Deep Indigo */
  --color-primary-light: #312e81; /* Royal Indigo */
  --color-secondary: #0891b2; /* Mediterranean Cyan */
  --color-secondary-hover: #0e7490;
  --color-accent: #f97316; /* Sunlit Coral/Orange */
  --color-accent-glow: rgba(249, 115, 22, 0.15);
  --color-gold: #f59e0b; /* Amber Gold */
  --color-gold-light: #fef3c7;
  --color-success: #10b981;
  --color-danger: #ef4444;

  /* Neutral Palette */
  --color-text-main: #334155; /* Slate 700 */
  --color-text-muted: #64748b; /* Slate 500 */
  --color-text-light: #94a3b8; /* Slate 400 */
  --color-bg-base: #f0f9ff; /* Soft Ice Blue Background */
  --color-bg-card: #ffffff;
  --color-border: #e2e8f0; /* Slate 200 */

  /* Glassmorphism & Visual Effects */
  --glass-header: rgba(30, 27, 75, 0.85); /* Deep Indigo glass */
  --glass-card: rgba(255, 255, 255, 0.7);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md:
    0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-lg:
    0 10px 25px -5px rgba(30, 27, 75, 0.08),
    0 8px 10px -6px rgba(30, 27, 75, 0.04);
  --shadow-xl: 0 20px 40px -10px rgba(30, 27, 75, 0.12);
  --shadow-glow: 0 0 25px rgba(8, 145, 178, 0.25);

  /* Typography Scale */
  --font-family-body: "Inter", sans-serif;
  --font-family-title: "Outfit", sans-serif;

  /* Border Radii */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --radius-full: 9999px;

  /* Transition Speeds */
  --transition-fast: 0.15s ease;
  --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

body {
  font-family: var(--font-family-body);
  color: var(--color-text-main);
  background-color: var(--color-bg-base);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-fast);
}

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

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg-base);
}
::-webkit-scrollbar-thumb {
  background: var(--color-text-light);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-text-muted);
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 6rem 0;
}

.bg-white-sec {
  background-color: var(--color-bg-card);
}

.text-center {
  text-align: center;
}
.text-gradient {
  background: linear-gradient(
    135deg,
    var(--color-secondary),
    var(--color-accent)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Header & Navigation Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all var(--transition-smooth);
  background: transparent;
}

.header.scrolled {
  padding: 0.85rem 0;
  background: var(--glass-header);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-lg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-family-title);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -0.5px;
}

.header.scrolled .logo {
  color: #ffffff;
}

.logo-img {
  height: 54px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform var(--transition-bounce);
}

.logo:hover .logo-img {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-main);
  padding: 0.5rem 0;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-secondary);
  transition: width var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--color-secondary);
}

.header.scrolled .nav-link {
  color: rgba(255, 255, 255, 0.8);
}

.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active {
  color: #ffffff;
}

.header.scrolled .nav-link::after {
  background-color: var(--color-accent);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Hamburger Menu button */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 1010;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-primary);
  margin: 5px auto;
  transition: all var(--transition-smooth);
}

.header.scrolled .hamburger span {
  background-color: #ffffff;
}

/* Buttons System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1.5px solid transparent;
  gap: 0.5rem;
  transition: all var(--transition-smooth);
}

.btn-primary {
  background-color: var(--color-secondary);
  color: #ffffff;
}

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

.btn-secondary {
  background-color: transparent;
  border-color: var(--color-border);
  color: var(--color-text-main);
}

.btn-secondary:hover {
  border-color: var(--color-secondary);
  color: var(--color-secondary);
  background-color: rgba(37, 99, 235, 0.03);
}

.header.scrolled .btn-secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
}

.header.scrolled .btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}

.btn-accent {
  background-color: var(--color-accent);
  color: #ffffff;
}

.btn-accent:hover {
  background-color: #0b7a70;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.2);
}

.btn-sm {
  padding: 0.5rem 1.2rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* Mobile Sidebar menu */
.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: var(--color-bg-card);
  z-index: 1005;
  padding: 6rem 2rem 2rem;
  box-shadow: var(--shadow-xl);
  transition: right var(--transition-smooth);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  border-left: 1px solid var(--color-border);
}

.mobile-sidebar.active {
  right: 0;
}

.mobile-nav-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav-link {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-primary);
  display: block;
  padding: 0.5rem 0;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--color-secondary);
}

/* Hero Section (Home Page) */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(244, 247, 246, 0.9) 0%,
      rgba(230, 237, 245, 0.6) 90.1%
    ),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1920&q=80")
      no-repeat center center/cover;
  padding-top: 8rem;
  padding-bottom: 5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-title {
  font-size: 3.8rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -1.5px;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
  max-width: 540px;
}

/* Search Lead Form in Hero */
.search-wrapper {
  background-color: var(--color-bg-card);
  border-radius: var(--radius-full);
  padding: 0.5rem;
  display: flex;
  align-items: center;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(226, 232, 240, 0.8);
  margin-bottom: 2rem;
  max-width: 580px;
}

.search-input-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  padding-left: 1.25rem;
}

.search-input-group svg {
  color: var(--color-text-muted);
  flex-shrink: 0;
}

.search-wrapper input {
  width: 100%;
  border: none;
  outline: none;
  font-size: 0.95rem;
  background-color: transparent;
}

.search-btn {
  background-color: var(--color-secondary);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: var(--color-accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  cursor: pointer;
  border-radius: var(--radius-full);
  transition: all var(--transition-smooth);
}

.search-btn:hover {
  background-color: var(--color-secondary-hover);
  transform: scale(1.05);
}

.hero-quick-keywords {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.hero-quick-keywords span {
  font-weight: 600;
  color: var(--color-secondary);
}

/* Hero Stats Card / Trust Strip */
.hero-image-area {
  position: relative;
}

.hero-image-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
  transform: rotate(-1.5deg);
  transition: transform var(--transition-smooth);
}

.hero-image-card:hover {
  transform: rotate(0) scale(1.02);
}

.hero-floating-card {
  position: absolute;
  bottom: 2rem;
  left: -2rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  animation: float 4s ease-in-out infinite;
}

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

.floating-icon {
  width: 40px;
  height: 40px;
  background-color: var(--color-gold-light);
  color: var(--color-gold);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-text h4 {
  font-size: 1.1rem;
  font-weight: 700;
}

.floating-text p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* Trust Strip Section */
.trust-strip {
  background-color: var(--color-primary);
  color: #ffffff;
  padding: 2rem 0;
  border-bottom: 2px solid var(--color-accent);
}

.trust-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

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

.trust-item svg {
  color: var(--color-accent);
}

.trust-text h3 {
  color: #ffffff;
  font-size: 1.2rem;
}

.trust-text p {
  color: var(--color-text-light);
  font-size: 0.8rem;
}

/* Benefit Cards / Why Choose Us */
.section-subtitle {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-secondary);
  letter-spacing: 1.5px;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2.25rem;
  margin-bottom: 3rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.grid-3-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.benefit-card {
  background-color: var(--color-bg-card);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background-color: var(--color-secondary);
  transition: height var(--transition-smooth);
}

.benefit-card:hover::before {
  height: 100%;
}

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

.benefit-icon-box {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  background-color: rgba(37, 99, 235, 0.08);
  color: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all var(--transition-smooth);
}

.benefit-card:hover .benefit-icon-box {
  background-color: var(--color-secondary);
  color: #ffffff;
  transform: rotateY(180deg);
}

.benefit-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.benefit-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* Services Preview Section */
.services-preview {
  background-color: var(--color-bg-base);
}

.grid-4-col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.service-card {
  background-color: var(--color-bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: all var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(37, 99, 235, 0.2);
}

.service-img {
  height: 180px;
  overflow: hidden;
  position: relative;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.service-card:hover .service-img img {
  transform: scale(1.1);
}

.service-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--color-primary);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
}

.service-body {
  padding: 1.5rem;
}

.service-body h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.service-body p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
}

.service-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-secondary);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.service-link svg {
  transition: transform var(--transition-fast);
}

.service-card:hover .service-link svg {
  transform: translateX(3px);
}

/* Testimonial Cards Layout */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background-color: var(--color-bg-card);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-rating {
  color: var(--color-gold);
  margin-bottom: 1rem;
  display: flex;
  gap: 0.2rem;
}

.testimonial-text {
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--color-text-main);
  line-height: 1.6;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-user img {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  object-fit: cover;
}

.user-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
}

.user-info p {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

/* About Preview Layout */
.about-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-preview-img-box {
  position: relative;
}

.about-preview-img-box img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.about-badge-floating {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  background-color: var(--color-accent);
  color: #ffffff;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.about-badge-floating span {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}

.about-badge-floating p {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.about-preview-content .section-subtitle {
  margin-bottom: 0.5rem;
}

.about-preview-content h2 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

.about-preview-content p {
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.about-checklist {
  list-style: none;
  margin-bottom: 2rem;
  display: grid;
  gap: 0.75rem;
}

.about-checklist li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.about-checklist li svg {
  color: var(--color-accent);
  flex-shrink: 0;
}

/* Call to Action Banner */
.cta-banner {
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-secondary-hover)
  );
  color: #ffffff;
  text-align: center;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin: 0 1.5rem 6rem;
}

.cta-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -30%;
  width: 80%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(13, 148, 136, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.cta-banner-content {
  max-width: 650px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

.cta-banner h2 {
  color: #ffffff;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

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

/* Page Hero layout (For subpages: About, FAQ, Visa, Contact) */
.page-hero {
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-primary-light) 100%
  );
  color: #ffffff;
  padding: 8rem 0 4rem;
  text-align: center;
}

.page-hero h1 {
  color: #ffffff;
  font-size: 3rem;
  margin-bottom: 0.75rem;
  letter-spacing: -1px;
}

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

/* About Page Specific Layouts */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-story-text h2 {
  font-size: 2rem;
  margin-bottom: 1.25rem;
}

.about-story-text p {
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.mission-vision-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 4rem;
}

.mission-card,
.vision-card {
  background-color: var(--color-bg-card);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.mission-card h3,
.vision-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mission-card h3 svg {
  color: var(--color-secondary);
}
.vision-card h3 svg {
  color: var(--color-accent);
}

.mission-card p,
.vision-card p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

/* FAQ Page Accordion Layout */
.faq-layout-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
}

.faq-wrapper {
  display: grid;
  gap: 1rem;
}

.faq-item {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: all var(--transition-smooth);
}

.faq-item:hover {
  border-color: var(--color-secondary);
}

.faq-question {
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 600;
  color: var(--color-primary);
  user-select: none;
}

.faq-chevron {
  transition: transform var(--transition-smooth);
  color: var(--color-text-muted);
}

.faq-item.active {
  box-shadow: var(--shadow-md);
  border-color: var(--color-secondary);
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: var(--color-secondary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-smooth);
}

.faq-answer-inner {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.faq-help-box {
  background-color: var(--color-primary);
  color: #ffffff;
  padding: 2.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  align-self: start;
}

.faq-help-box h3 {
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.faq-help-box p {
  color: var(--color-text-light);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.faq-help-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.faq-help-item svg {
  color: var(--color-accent);
  margin-top: 0.2rem;
}

.faq-help-item h4 {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
}

.faq-help-item p {
  color: var(--color-text-light);
  font-size: 0.85rem;
  margin-bottom: 0;
}

/* Visa Directory Page Layout */
.visa-filter-bar {
  background-color: var(--color-bg-card);
  padding: 1.25rem 2rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 3rem;
  border: 1px solid var(--color-border);
}

.visa-search-box {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--color-bg-base);
  border-radius: var(--radius-full);
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--color-border);
  flex: 1;
  max-width: 400px;
}

.visa-search-box input {
  border: none;
  outline: none;
  font-size: 0.9rem;
  background-color: transparent;
  width: 100%;
}

.visa-search-box svg {
  color: var(--color-text-muted);
}

.visa-tabs {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
}

.visa-tab-btn {
  background-color: transparent;
  border: none;
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  cursor: pointer;
  color: var(--color-text-muted);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.visa-tab-btn:hover {
  background-color: var(--color-bg-base);
  color: var(--color-primary);
}

.visa-tab-btn.active {
  background-color: var(--color-secondary);
  color: #ffffff;
}

/* Country Visa Grid Cards */
.visa-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

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

.visa-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(37, 99, 235, 0.25);
}

.visa-card-img-wrapper {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.visa-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.visa-card:hover .visa-card-img-wrapper img {
  transform: scale(1.1);
}

.visa-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--color-accent);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
}

.visa-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.visa-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.visa-card-title {
  font-size: 1.3rem;
}

.visa-card-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-secondary);
}

.visa-card-desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
  min-height: 48px;
}

.visa-details-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
  display: grid;
  gap: 0.5rem;
  font-size: 0.85rem;
  border-top: 1px solid var(--color-border);
  padding-top: 1rem;
}

.visa-details-list li {
  display: flex;
  justify-content: space-between;
  color: var(--color-text-muted);
}

.visa-details-list li span:last-child {
  font-weight: 600;
  color: var(--color-primary);
}

.visa-card-footer {
  margin-top: auto;
}

.visa-card-footer .btn {
  width: 100%;
}

/* Contact Page Grid Layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
}

.contact-card-box {
  background-color: var(--color-bg-card);
  padding: 3rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.contact-card-box h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.contact-card-box p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

/* Form Styles */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-primary);
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  background-color: var(--color-bg-base);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  outline: none;
  transition: all var(--transition-fast);
}

.form-control:focus {
  border-color: var(--color-secondary);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

/* Contact Info Sidebar */
.contact-info-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-card {
  background-color: var(--color-bg-card);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.contact-info-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-icon {
  width: 44px;
  height: 44px;
  background-color: rgba(13, 148, 136, 0.08);
  color: var(--color-accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-content h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.info-content p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* Embedded Map representation */
.map-placeholder {
  height: 250px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  position: relative;
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Social links icons */
.social-links-container {
  background-color: var(--color-bg-card);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  text-align: center;
}

.social-links-container h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.social-icons-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-icon-btn {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background-color: var(--color-bg-base);
  color: var(--color-text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  transition: all var(--transition-smooth);
}

.social-icon-btn:hover {
  background-color: var(--color-secondary);
  color: #ffffff;
  border-color: var(--color-secondary);
  transform: translateY(-3px);
}

/* Footer Section */
.footer {
  background-color: var(--color-primary);
  color: #ffffff;
  padding: 5rem 0 2rem;
  border-top: 4px solid var(--color-secondary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  color: var(--color-text-light);
  font-size: 0.9rem;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  max-width: 280px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
}

.footer-logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform var(--transition-bounce);
}

.footer-logo:hover .footer-logo-img {
  transform: scale(1.05);
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all var(--transition-smooth);
}

.footer-socials a:hover {
  background-color: var(--color-accent);
  transform: translateY(-2px);
}

.footer-col h3 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--color-accent);
}

.footer-links {
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--color-text-light);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-accent);
  padding-left: 4px;
}

.footer-contact-info {
  list-style: none;
  display: grid;
  gap: 1rem;
}

.footer-contact-info li {
  display: flex;
  gap: 0.75rem;
  color: var(--color-text-light);
  font-size: 0.9rem;
}

.footer-contact-info li svg {
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

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

.footer-bottom p {
  color: var(--color-text-light);
  font-size: 0.85rem;
}

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

.footer-legal-links a {
  color: var(--color-text-light);
  font-size: 0.85rem;
}

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

/* Success Modal & Toast System */
.toast-success {
  position: fixed;
  bottom: 2rem;
  right: -400px;
  background-color: var(--color-success);
  color: #ffffff;
  padding: 1rem 2rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 10000;
  font-weight: 600;
  transition: right 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast-success.active {
  right: 2rem;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }
  .grid-3-col {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-4-col {
    grid-template-columns: repeat(2, 1fr);
  }
  .visa-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 1rem 0;
  }
  .header.scrolled {
    padding: 0.6rem 0;
  }
  .nav-menu {
    display: none;
  }
  .nav-actions .btn {
    display: none;
  } /* Show in sidebar instead */
  .hamburger {
    display: block;
  }

  .hero {
    min-height: auto;
    padding-top: 7rem;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    max-width: 100%;
  }
  .search-wrapper {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-floating-card {
    left: 50%;
    transform: translateX(-50%);
    bottom: -1rem;
    width: max-content;
  }

  .trust-wrapper {
    justify-content: center;
  }

  .grid-3-col {
    grid-template-columns: 1fr;
  }
  .grid-4-col {
    grid-template-columns: 1fr;
  }
  .visa-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .about-preview-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .mission-vision-wrapper {
    grid-template-columns: 1fr;
  }
  .faq-layout-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .visa-filter-bar {
    border-radius: var(--radius-md);
    padding: 1.5rem;
    flex-direction: column;
    align-items: stretch;
  }
  .visa-search-box {
    max-width: 100%;
  }

  .cta-banner h2 {
    font-size: 2rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-brand p {
    max-width: 100%;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.1rem;
  }
  .search-wrapper {
    flex-direction: column;
    border-radius: var(--radius-md);
    padding: 1rem;
    gap: 1rem;
  }
  .search-input-group {
    padding-left: 0;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 0.5rem;
    width: 100%;
  }
  .search-btn {
    width: 100%;
    border-radius: var(--radius-sm);
  }
  .hero-floating-card {
    width: calc(100% - 2rem);
  }
}

/* ==========================================
   Auth / Login Page Specific Layout
   ========================================== */

.auth-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 1.5rem 4rem;
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(240, 249, 255, 0.95) 0%,
      rgba(224, 242, 254, 0.75) 100%
    ),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1920&q=80")
      no-repeat center center/cover;
}

.auth-card {
  width: 100%;
  max-width: 480px;
  background-color: var(--color-bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-border);
  overflow: hidden;
  position: relative;
  z-index: 10;
}

.auth-header {
  padding: 2.5rem 2.5rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}

.auth-tabs {
  display: flex;
  background-color: var(--color-bg-base);
  border-radius: var(--radius-sm);
  padding: 0.25rem;
  margin-top: 1.5rem;
}

.auth-tab-btn {
  flex: 1;
  border: none;
  background: none;
  padding: 0.6rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-muted);
  border-radius: var(--radius-xs);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.auth-tab-btn.active {
  background-color: #ffffff;
  color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.auth-body {
  padding: 2.5rem;
}

.auth-form {
  display: none;
}

.auth-form.active {
  display: block;
}

.auth-footer {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.auth-footer a {
  color: var(--color-secondary);
  font-weight: 600;
}

.social-auth-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.btn-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  background-color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-main);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-social:hover {
  background-color: var(--color-bg-base);
  border-color: var(--color-text-light);
}

.auth-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 1.5rem 0;
  color: var(--color-text-light);
  font-size: 0.8rem;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid var(--color-border);
}

.auth-divider:not(:empty)::before {
  margin-right: 0.5em;
}

.auth-divider:not(:empty)::after {
  margin-left: 0.5em;
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

/* ==========================================
   Tours & Packages Grid Layout Styles
   ========================================== */

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

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

.tour-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(8, 145, 178, 0.25);
}

.tour-img-box {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.tour-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.tour-card:hover .tour-img-box img {
  transform: scale(1.1);
}

.tour-includes-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(
    to top,
    rgba(30, 27, 75, 0.8) 0%,
    transparent 100%
  );
  padding: 1rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tour-include-badge {
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-xs);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.tour-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.tour-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.tour-desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.tour-features-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
  display: grid;
  gap: 0.5rem;
  font-size: 0.85rem;
}

.tour-features-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-main);
  font-weight: 500;
}

.tour-features-list li svg {
  color: var(--color-accent);
  flex-shrink: 0;
}

.tour-footer-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  border-top: 1px solid var(--color-border);
  padding-top: 1.25rem;
}

.tour-price-info {
  display: flex;
  flex-direction: column;
}

.tour-price-label {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  font-weight: 600;
}

.tour-price-val {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-secondary);
}

@media (max-width: 1024px) {
  .tours-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .tours-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   Visa Application Wizard & Checkout Styles
   ========================================== */

.wizard-layout {
  max-width: 900px;
  margin: 8rem auto 4rem;
  padding: 0 1.5rem;
}

.wizard-card {
  background-color: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-xl);
  padding: 3rem;
  text-align: center;
  transition: all var(--transition-smooth);
}

.wizard-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.wizard-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  margin-bottom: 3rem;
}

/* Purpose selection card in Step 1 */
.purpose-card {
  max-width: 480px;
  margin: 0 auto;
  background-color: var(--color-bg-base);
  border-radius: var(--radius-md);
  border: 2px solid var(--color-border);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all var(--transition-smooth);
}

.purpose-illust-wrapper {
  margin-bottom: 2rem;
}

.purpose-illust-wrapper img {
  max-width: 240px;
  height: auto;
  object-fit: contain;
}

.purpose-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.purpose-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Select Visa option card in Step 2 */
.visa-option-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.visa-option-card {
  background-color: #ffffff;
  border-radius: var(--radius-md);
  border: 2px solid var(--color-border);
  padding: 2rem;
  text-align: left;
  position: relative;
  cursor: pointer;
  transition: all var(--transition-smooth);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.visa-option-card:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
}

.visa-option-card.selected {
  border-color: var(--color-accent);
  background-color: #f0f9ff;
}

.visa-option-info {
  flex: 1;
}

.visa-option-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.visa-option-icon {
  color: var(--color-accent);
  flex-shrink: 0;
}

.visa-option-header h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-primary);
}

.visa-option-delivery {
  background-color: #e0f2fe;
  color: var(--color-accent);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-xs);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.visa-option-badges {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.visa-option-badge {
  background-color: var(--color-bg-base);
  border: 1px solid var(--color-border);
  color: var(--color-text-main);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-xs);
  text-transform: uppercase;
}

.visa-option-details {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: var(--color-text-main);
  margin-bottom: 1rem;
}

.visa-option-details li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.visa-option-details li svg {
  color: #10b981;
  flex-shrink: 0;
}

.visa-option-price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-secondary);
}

.visa-option-price span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

.visa-option-selector {
  width: 24px;
  height: 24px;
  border-radius: var(--radius-full);
  border: 2px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.visa-option-card:hover .visa-option-selector {
  border-color: var(--color-accent);
}

.visa-option-card.selected .visa-option-selector {
  border-color: var(--color-accent);
  background-color: var(--color-accent);
}

.visa-option-card.selected .visa-option-selector::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background-color: #ffffff;
}

/* Wizard back/next navigation footer */
.wizard-footer-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 3rem;
  border-top: 1px solid var(--color-border);
  padding-top: 2rem;
}

/* Checkout Page Grid Layout */
.checkout-layout {
  max-width: 1200px;
  margin: 8rem auto 4rem;
  padding: 0 1.5rem;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 2.5rem;
  align-items: flex-start;
}

.checkout-card {
  background-color: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  padding: 2.5rem;
}

.checkout-section-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 2px solid var(--color-border);
  padding-bottom: 0.75rem;
}

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

.form-group-full {
  margin-bottom: 1.25rem;
}

.upload-box {
  border: 2px dashed var(--color-border);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  background-color: var(--color-bg-base);
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.upload-box:hover {
  border-color: var(--color-accent);
  background-color: #f0f9ff;
}

.upload-box svg {
  color: var(--color-text-muted);
}

.upload-box span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-accent);
}

.upload-box p {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

/* Price sticky breakdown card */
.sticky-summary {
  position: sticky;
  top: 7rem;
}

.price-summary-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1.25rem;
}

.price-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--color-text-main);
  margin-bottom: 0.75rem;
}

.price-summary-divider {
  border-top: 1px solid var(--color-border);
  margin: 1.25rem 0;
}

.price-summary-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-secondary);
}

@media (max-width: 1024px) {
  .checkout-grid {
    grid-template-columns: 1fr;
  }
  .sticky-summary {
    position: static;
  }
}

@media (max-width: 768px) {
  .form-grid-2 {
    grid-template-columns: 1fr;
  }
  .wizard-card {
    padding: 2rem 1.5rem;
  }
}

/* =========================================================
   UI REFINEMENT - Header, Login, FAQ, Visa Filter & Footer
   ========================================================= */

/* Header: always readable over every page/hero */
.header {
  padding: 0.85rem 0;
  background: rgba(30, 27, 75, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header.scrolled {
  padding: 0.7rem 0;
  background: rgba(30, 27, 75, 0.98);
}

.logo-img {
  height: 48px;
}

.nav-link,
.header .nav-link,
.header.scrolled .nav-link {
  color: rgba(255, 255, 255, 0.84);
}

.header .nav-link:hover,
.header .nav-link.active,
.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active {
  color: #ffffff;
}

.header .nav-link::after,
.header.scrolled .nav-link::after {
  background-color: var(--color-secondary);
  height: 3px;
  border-radius: 999px;
}

.header .btn-secondary,
.header.scrolled .btn-secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.04);
}

.header .btn-secondary:hover,
.header.scrolled .btn-secondary:hover {
  color: #ffffff;
  background: var(--color-secondary);
  border-color: var(--color-secondary);
}

/* Keep fixed header from covering page content */
.page-hero {
  padding-top: 10rem;
}

.page-hero-kicker,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--color-secondary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}

.page-hero-kicker {
  color: rgba(255, 255, 255, 0.72);
}

/* Login */
.auth-wrapper {
  min-height: calc(100vh - 92px);
  padding: 8.5rem 1.5rem 5rem;
  background:
    radial-gradient(circle at 15% 20%, rgba(8, 145, 178, 0.1), transparent 32%),
    radial-gradient(
      circle at 85% 75%,
      rgba(249, 115, 22, 0.08),
      transparent 28%
    ),
    var(--color-bg-base);
}

.auth-card {
  max-width: 500px;
  border-radius: 28px;
  box-shadow: 0 25px 60px rgba(30, 27, 75, 0.14);
}

.auth-header {
  padding: 2.6rem 2.6rem 1.5rem;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.auth-kicker {
  display: block;
  color: var(--color-secondary);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-bottom: 0.65rem;
}

.auth-header h1 {
  font-size: 2rem;
  margin-bottom: 0.55rem;
}

.auth-header > p {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  max-width: 370px;
  margin: 0 auto;
}

.auth-tabs {
  margin-top: 1.7rem;
  padding: 0.3rem;
  border: 1px solid var(--color-border);
  border-radius: 13px;
  background: #eef7fb;
}

.auth-tab-btn {
  min-height: 44px;
  font-size: 0.88rem;
}

.auth-tab-btn.active {
  color: var(--color-primary);
  box-shadow: 0 3px 12px rgba(30, 27, 75, 0.1);
}

.auth-body {
  padding: 2rem 2.6rem 2.4rem;
}

.auth-form {
  animation: authFadeIn 0.2s ease;
}

@keyframes authFadeIn {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-field {
  margin-bottom: 1.15rem;
}

.form-field label {
  display: block;
  color: var(--color-primary);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.form-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.form-hint {
  color: var(--color-text-light);
  font-size: 0.72rem;
  font-weight: 500;
}

.auth-form input {
  width: 100%;
  height: 50px;
  padding: 0 1rem;
  border: 1px solid var(--color-border);
  border-radius: 11px;
  background: #f8fcff;
  outline: none;
  color: var(--color-primary);
  transition: all var(--transition-fast);
}

.auth-form input::placeholder {
  color: #94a3b8;
}

.auth-form input:focus {
  border-color: var(--color-secondary);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(8, 145, 178, 0.1);
}

.auth-submit {
  width: 100%;
  height: 50px;
  margin-top: 0.35rem;
  font-size: 0.95rem;
}

.auth-footer {
  margin-top: 1.35rem;
  font-size: 0.82rem;
}

.auth-inline-link {
  border: 0;
  background: transparent;
  padding: 0;
  color: var(--color-secondary);
  font-weight: 700;
  cursor: pointer;
}

.auth-inline-link:hover {
  color: var(--color-secondary-hover);
  text-decoration: underline;
}

/* FAQ */
.faq-section {
  background: var(--color-bg-base);
}

.faq-container {
  max-width: 920px;
}

.faq-intro {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 2.5rem;
}

.faq-intro h2 {
  font-size: 2rem;
  margin-bottom: 0.7rem;
}

.faq-intro p {
  color: var(--color-text-muted);
}

.faq-wrapper {
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 15px;
  box-shadow: 0 2px 8px rgba(30, 27, 75, 0.035);
  overflow: hidden;
}

.faq-item:hover,
.faq-item.active {
  border-color: rgba(8, 145, 178, 0.45);
}

.faq-item.active {
  box-shadow: 0 12px 28px rgba(30, 27, 75, 0.08);
}

.faq-question {
  width: 100%;
  min-height: 68px;
  padding: 1.1rem 1.35rem 1.1rem 1.5rem;
  border: 0;
  background: #ffffff;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 0.98rem;
}

.faq-question:hover {
  background: #fbfdff;
}

.faq-chevron {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #eef8fb;
  color: var(--color-secondary);
  transition:
    transform var(--transition-smooth),
    background var(--transition-smooth);
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  background: var(--color-secondary);
  color: #ffffff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.35rem;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.75;
  border-top: 1px solid rgba(226, 232, 240, 0.7);
  padding-top: 1rem;
}

.faq-empty,
.visa-empty {
  text-align: center;
  padding: 3rem 1.5rem;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.faq-empty p,
.visa-empty p {
  color: var(--color-text-muted);
  margin: 0.5rem 0 1.2rem;
}

/* Visa filter */
.visa-section {
  background: var(--color-bg-base);
}

.visa-filter-bar {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 230px auto;
  align-items: center;
  gap: 0.9rem;
  padding: 0.8rem;
  margin-bottom: 3rem;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid var(--color-border);
  box-shadow: 0 10px 30px rgba(30, 27, 75, 0.08);
}

.visa-filter-search,
.visa-filter-select {
  min-height: 54px;
  display: flex;
  align-items: center;
  border-radius: 12px;
  background: #f6fbfd;
  border: 1px solid #e0edf2;
}

.visa-filter-search {
  padding: 0 1rem;
  gap: 0.7rem;
  color: var(--color-text-muted);
}

.visa-filter-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--color-primary);
  font-size: 0.9rem;
}

.visa-filter-search input::placeholder {
  color: #94a3b8;
}

.visa-filter-select {
  position: relative;
  padding: 0 0.85rem;
}

.visa-filter-select label {
  position: absolute;
  top: 4px;
  left: 0.85rem;
  font-size: 0.63rem;
  color: var(--color-text-light);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.visa-filter-select select {
  width: 100%;
  height: 100%;
  padding: 0.75rem 1.5rem 0 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--color-primary);
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
}

.visa-filter-submit {
  min-height: 54px;
  padding-left: 1.45rem;
  padding-right: 1.45rem;
}

.visa-results-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.visa-results-heading h2 {
  font-size: 1.7rem;
  margin-top: 0.15rem;
}

.visa-result-count {
  color: var(--color-text-muted);
  font-size: 0.82rem;
  font-weight: 600;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
}

.visa-card-badge {
  text-transform: uppercase;
  letter-spacing: 0.4px;
  box-shadow: 0 4px 12px rgba(30, 27, 75, 0.12);
}

.visa-card-price {
  white-space: nowrap;
}

.visa-details-list li {
  gap: 1rem;
}

.visa-details-list li strong {
  font-weight: 700;
  color: var(--color-primary);
  text-align: right;
}

.visa-empty-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #eaf8fb;
  color: var(--color-secondary);
  font-size: 1.7rem;
}

/* Footer social icons */
.footer-brand {
  min-width: 0;
}

.footer-social-label {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.65rem;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.88);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.footer-socials a svg {
  width: 19px;
  height: 19px;
  display: block;
}

.footer-socials a:hover {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(8, 145, 178, 0.25);
}

.footer-contact-info li {
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .nav-menu {
    gap: 1rem;
  }
  .visa-filter-bar {
    grid-template-columns: 1fr 200px auto;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 0.7rem 0;
  }
  .logo-img {
    height: 44px;
  }
  .page-hero {
    padding-top: 8rem;
  }
  .page-hero h1 {
    font-size: 2.25rem;
  }

  .auth-wrapper {
    min-height: auto;
    padding: 7rem 1rem 4rem;
  }

  .auth-header,
  .auth-body {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .visa-filter-bar {
    grid-template-columns: 1fr;
    border-radius: 16px;
    padding: 0.75rem;
  }

  .visa-filter-submit {
    width: 100%;
  }

  .visa-results-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .faq-question {
    min-height: 62px;
    padding-left: 1.15rem;
  }

  .faq-answer-inner {
    padding-left: 1.15rem;
    padding-right: 1.15rem;
  }
}

@media (max-width: 480px) {
  .page-hero h1 {
    font-size: 1.9rem;
  }
  .auth-card {
    border-radius: 20px;
  }
  .auth-header h1 {
    font-size: 1.7rem;
  }
  .visa-results-heading h2 {
    font-size: 1.45rem;
  }
}

/* =========================================================
   LIQUID GLASS THEME - Vistaroam
   Soft translucent surfaces, ambient color and depth
========================================================= */
:root {
  --liquid-white: rgba(255, 255, 255, 0.62);
  --liquid-white-strong: rgba(255, 255, 255, 0.78);
  --liquid-border: rgba(255, 255, 255, 0.68);
  --liquid-shadow: 0 20px 60px rgba(30, 27, 75, 0.12);
  --liquid-blur: blur(24px) saturate(145%);
}

body {
  background:
    radial-gradient(
      900px 500px at 8% 8%,
      rgba(8, 145, 178, 0.12),
      transparent 60%
    ),
    radial-gradient(
      800px 520px at 92% 22%,
      rgba(99, 102, 241, 0.12),
      transparent 62%
    ),
    radial-gradient(
      900px 600px at 50% 92%,
      rgba(249, 115, 22, 0.07),
      transparent 62%
    ),
    #eef8ff;
}

/* Keep the glass navigation readable on every page */
.header,
.header.scrolled {
  padding: 0.72rem 0;
  background: linear-gradient(
    135deg,
    rgba(30, 27, 75, 0.82),
    rgba(49, 46, 129, 0.68)
  );
  backdrop-filter: var(--liquid-blur);
  -webkit-backdrop-filter: var(--liquid-blur);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.2);
}

.header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(34, 211, 238, 0.65),
    transparent
  );
  pointer-events: none;
}

.nav-link,
.header .nav-link,
.header.scrolled .nav-link {
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.12);
}

.header .nav-link:hover,
.header .nav-link.active,
.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active {
  color: #fff;
}

.header .nav-link::after,
.header.scrolled .nav-link::after {
  background: linear-gradient(90deg, #22d3ee, #67e8f9);
  box-shadow: 0 0 12px rgba(34, 211, 238, 0.55);
}

.header .btn-secondary,
.header.scrolled .btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.52);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.header .btn-secondary:hover,
.header.scrolled .btn-secondary:hover {
  background: rgba(34, 211, 238, 0.24);
  border-color: rgba(103, 232, 249, 0.8);
}

/* Hero glass depth */
.page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      500px 260px at 15% 20%,
      rgba(34, 211, 238, 0.16),
      transparent 70%
    ),
    radial-gradient(
      550px 300px at 85% 35%,
      rgba(129, 140, 248, 0.2),
      transparent 70%
    ),
    linear-gradient(135deg, #17154a 0%, #28236b 55%, #34318a 100%);
}

.page-hero::before,
.page-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(2px);
}

.page-hero::before {
  width: 220px;
  height: 220px;
  right: 9%;
  top: 12%;
  background: rgba(34, 211, 238, 0.1);
  box-shadow: 0 0 100px rgba(34, 211, 238, 0.16);
}

.page-hero::after {
  width: 180px;
  height: 180px;
  left: 8%;
  bottom: -80px;
  background: rgba(249, 115, 22, 0.1);
  box-shadow: 0 0 100px rgba(249, 115, 22, 0.12);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

/* Generic translucent cards */
.benefit-card,
.service-card,
.testimonial-card,
.blog-card,
.tour-card,
.visa-card,
.contact-card,
.faq-item,
.auth-card,
.visa-filter-bar,
.faq-empty,
.visa-empty {
  background: var(--liquid-white);
  border: 1px solid var(--liquid-border);
  backdrop-filter: var(--liquid-blur);
  -webkit-backdrop-filter: var(--liquid-blur);
  box-shadow:
    var(--liquid-shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.benefit-card:hover,
.service-card:hover,
.testimonial-card:hover,
.blog-card:hover,
.tour-card:hover,
.visa-card:hover,
.faq-item:hover,
.faq-item.active,
.auth-card:hover {
  border-color: rgba(255, 255, 255, 0.88);
  box-shadow:
    0 28px 70px rgba(30, 27, 75, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

/* Login - premium liquid glass card */
.auth-wrapper {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      600px 400px at 15% 20%,
      rgba(34, 211, 238, 0.13),
      transparent 65%
    ),
    radial-gradient(
      650px 420px at 85% 70%,
      rgba(99, 102, 241, 0.14),
      transparent 65%
    ),
    transparent;
}

.auth-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(30px) saturate(155%);
  -webkit-backdrop-filter: blur(30px) saturate(155%);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow:
    0 30px 90px rgba(30, 27, 75, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.auth-card::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  top: -130px;
  right: -80px;
  background: rgba(34, 211, 238, 0.12);
  filter: blur(8px);
  pointer-events: none;
}

.auth-header,
.auth-body {
  position: relative;
  z-index: 1;
}

.auth-header {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.72),
    rgba(255, 255, 255, 0.36)
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
}

.auth-tabs {
  background: rgba(224, 242, 254, 0.45);
  border-color: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.auth-tab-btn.active {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow:
    0 8px 22px rgba(30, 27, 75, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.auth-form input {
  background: rgba(248, 252, 255, 0.56);
  border-color: rgba(148, 163, 184, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.auth-form input:focus {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(8, 145, 178, 0.65);
  box-shadow:
    0 0 0 4px rgba(34, 211, 238, 0.1),
    0 10px 28px rgba(8, 145, 178, 0.08);
}

/* FAQ liquid accordion */
.faq-item {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.54);
}

.faq-question {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.48),
    rgba(255, 255, 255, 0.28)
  );
  color: var(--color-primary);
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.68);
}

.faq-chevron {
  background: rgba(8, 145, 178, 0.1);
  border: 1px solid rgba(8, 145, 178, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.faq-answer-inner {
  border-top-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.18);
}

/* Visa filter - glass search dock */
.visa-filter-bar {
  position: relative;
  padding: 0.7rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.48);
  backdrop-filter: blur(28px) saturate(150%);
  -webkit-backdrop-filter: blur(28px) saturate(150%);
  box-shadow:
    0 22px 60px rgba(30, 27, 75, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.visa-filter-search,
.visa-filter-select {
  background: rgba(255, 255, 255, 0.52);
  border-color: rgba(255, 255, 255, 0.75);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.visa-filter-search:focus-within,
.visa-filter-select:focus-within {
  border-color: rgba(34, 211, 238, 0.6);
  box-shadow:
    0 0 0 4px rgba(34, 211, 238, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.visa-filter-submit {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: linear-gradient(135deg, #0891b2, #0e7490);
  box-shadow:
    0 10px 26px rgba(8, 145, 178, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.visa-result-count {
  background: rgba(255, 255, 255, 0.52);
  border-color: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.visa-card {
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.66);
}

.visa-card-img-wrapper {
  position: relative;
}

.visa-card-img-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(15, 23, 42, 0.18));
  pointer-events: none;
}

.visa-card-badge {
  z-index: 2;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(249, 115, 22, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.42);
}

.visa-card-body {
  background: rgba(255, 255, 255, 0.42);
}

/* Footer - glass social buttons and cleaner hierarchy */
.footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      500px 300px at 12% 15%,
      rgba(34, 211, 238, 0.09),
      transparent 70%
    ),
    radial-gradient(
      500px 300px at 88% 85%,
      rgba(99, 102, 241, 0.11),
      transparent 70%
    ),
    #17154a;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(34, 211, 238, 0.75),
    transparent
  );
}

.footer-socials {
  gap: 0.7rem;
  margin-top: 0.25rem;
}

.footer-socials a {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 8px 24px rgba(0, 0, 0, 0.12);
}

.footer-socials a:hover {
  background: rgba(34, 211, 238, 0.18);
  border-color: rgba(103, 232, 249, 0.58);
  box-shadow:
    0 12px 30px rgba(34, 211, 238, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.footer-col h3,
.footer-social-label {
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.15);
}

/* Buttons share the glass/depth language */
.btn {
  border-radius: 999px;
  transition:
    transform var(--transition-smooth),
    box-shadow var(--transition-smooth),
    background var(--transition-smooth),
    border-color var(--transition-smooth);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #0891b2, #0e7490);
  border: 1px solid rgba(255, 255, 255, 0.26);
  box-shadow:
    0 10px 26px rgba(8, 145, 178, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0e7490, #155e75);
  box-shadow:
    0 14px 32px rgba(8, 145, 178, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Admin-managed custom page content */
.page-custom-content {
  position: relative;
}
.page-custom-content > .container > *:first-child {
  margin-top: 0;
}
.page-custom-content img {
  max-width: 100%;
  height: auto;
  border-radius: 18px;
}
.page-custom-content a {
  color: inherit;
}
/* Tours search bar */
.tours-section .visa-filter-bar {
  grid-template-columns: minmax(280px, 1fr) auto;
}
