/*
 * Khushi Cyber Cafe & Tours - Premium UI/UX Redesign
 * Professional Designer-Grade Stylesheet
 */

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

:root {
  /* HSL Tailored Color Palette */
  --primary-blue: #0B5EA8;
  --primary-blue-hsl: 207, 88%, 35%;
  --light-blue: #33B5E5;
  --light-blue-hsl: 196, 78%, 55%;
  --accent-cyan: #0EA5E9;
  --accent-cyan-hsl: 199, 89%, 48%;
  --accent-cyan-hover: #0284C7;
  --white: #FFFFFF;

  /* Neutral Color Palette */
  --bg-light: #F8FAFC;
  --bg-white: #FFFFFF;
  --border-color: #E2E8F0;
  --border-color-hover: #CBD5E1;
  --text-dark: #0F172A;
  --text-muted: #475569;
  --text-light: #94A3B8;

  /* Typography */
  --font-family: 'Outfit', sans-serif;

  /* Layout Dimensions */
  --header-height: 80px;
  --border-radius-sm: 8px;
  --border-radius-md: 12px;
  --border-radius-lg: 20px;
  --border-radius-xl: 28px;

  /* High-End Shadows */
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.03), 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.05), 0 10px 15px -3px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 10px 25px -5px rgba(15, 23, 42, 0.05), 0 20px 40px -10px rgba(15, 23, 42, 0.08);
  --shadow-xl: 0 20px 50px -12px rgba(15, 23, 42, 0.12);
  --shadow-glow-cyan: 0 4px 14px rgba(14, 165, 233, 0.25);
  --shadow-glow-blue: 0 4px 14px rgba(11, 94, 168, 0.2);

  /* Designer Spring-like Transitions */
  --transition-spring: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}

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

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

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

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

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

ul {
  list-style: none;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

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

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

.text-center {
  text-align: center;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Section Header styling */
.section-header {
  max-width: 650px;
  margin: 0 auto 60px auto;
}

.section-header h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.5;
}

/* Buttons (Professional UX) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 6px 6px 6px 24px;
  height: 48px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 9999px;
  /* pill shape */
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  letter-spacing: 0.2px;
  white-space: nowrap;
}

/* Flex order layout to ensure text stays on left, icon goes to right */
.btn span {
  order: 1;
}

.btn svg {
  order: 2;
  background-color: var(--white);
  color: inherit;
  border-radius: 50%;
  width: 36px !important;
  height: 36px !important;
  padding: 9px;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn:hover svg,
.btn:hover:not(:has(svg))::after {
  transform: translate(2px, -2px) scale(1.05);
}

.btn:active {
  transform: translateY(1px) scale(0.97);
}

/* Pseudo-element diagonal arrow for buttons without SVGs */
.btn:not(:has(svg))::after {
  content: "";
  order: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--white);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px 16px;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-primary {
  background: linear-gradient(135deg, #1D7DFC 0%, #0A4CBE 100%);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 20px -5px rgba(29, 125, 252, 0.35), 0 4px 6px -2px rgba(29, 125, 252, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary svg {
  color: #0A4CBE;
}

.btn-primary:not(:has(svg))::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230A4CBE' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='7' y1='17' x2='17' y2='7'%3E%3C/line%3E%3Cpolyline points='7 7 17 7 17 17'%3E%3C/polyline%3E%3C/svg%3E");
  background-color: var(--white);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #2F89FF 0%, #0843AB 100%);
  box-shadow: 0 14px 28px -4px rgba(29, 125, 252, 0.45), 0 8px 10px -2px rgba(29, 125, 252, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-accent {
  background: linear-gradient(135deg, #0EA5E9 0%, #0284C7 100%);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 20px -5px rgba(14, 165, 233, 0.35), 0 4px 6px -2px rgba(14, 165, 233, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-accent svg {
  color: #0284C7;
}

.btn-accent:not(:has(svg))::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230284C7' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='7' y1='17' x2='17' y2='7'%3E%3C/line%3E%3Cpolyline points='7 7 17 7 17 17'%3E%3C/polyline%3E%3C/svg%3E");
  background-color: var(--white);
}

.btn-accent:hover {
  background: linear-gradient(135deg, #38BDF8 0%, #0369A1 100%);
  box-shadow: 0 14px 28px -4px rgba(14, 165, 233, 0.45), 0 8px 10px -2px rgba(14, 165, 233, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-white {
  background-color: var(--white);
  color: #0A4CBE;
  border: 1px solid rgba(10, 76, 190, 0.15);
  box-shadow: 0 4px 10px rgba(10, 76, 190, 0.04);
}

.btn-white svg {
  background-color: #0A4CBE;
  color: var(--white);
}

.btn-white:not(:has(svg))::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='7' y1='17' x2='17' y2='7'%3E%3C/line%3E%3Cpolyline points='7 7 17 7 17 17'%3E%3C/polyline%3E%3C/svg%3E");
  background-color: #0A4CBE;
}

.btn-white:hover {
  background-color: var(--bg-light);
  border-color: #0A4CBE;
  color: #0843AB;
  box-shadow: 0 8px 16px rgba(10, 76, 190, 0.1);
}

.btn-white:hover svg {
  background-color: #0843AB;
}

.btn-white:hover:not(:has(svg))::after {
  background-color: #0843AB;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 20px -5px rgba(37, 99, 235, 0.3), 0 4px 6px -2px rgba(37, 99, 235, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-whatsapp svg {
  color: #25D366;
}

.btn-whatsapp:not(:has(svg))::after {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='%23FFFFFF'%3E%3Cpath%20d='M12.012%202c-5.506%200-9.988%204.47-9.988%209.952%200%201.764.459%203.486%201.336%205.005l-1.42%205.187%205.316-1.389c1.468.8%203.113%201.22%204.757%201.22%205.505%200%209.988-4.47%209.988-9.953%200-5.482-4.483-9.952-9.988-9.952zm0%2018.256c-1.488%200-2.94-.396-4.212-1.144l-.303-.18-3.133.818.835-3.047-.198-.314c-.818-1.303-1.25-2.812-1.25-4.383%200-4.542%203.708-8.227%208.261-8.227%204.553%200%208.261%203.685%208.261%208.227%200%204.543-3.708%208.227-8.261%208.227zm4.53-6.166c-.249-.125-1.472-.724-1.699-.807-.226-.083-.391-.125-.555%20.125-.164%20.249-.638.807-.784.974-.146.167-.291.187-.54.062-.249-.125-1.048-.385-1.996-1.227-.738-.655-1.236-1.465-1.381-1.714-.145-.249-.015-.384.11-.508.112-.111.248-.29.373-.436.125-.145.166-.249.249-.415.083-.166.042-.311-.02-.436-.063-.125-.555-1.328-.761-1.827-.201-.484-.403-.418-.555-.426-.143-.008-.308-.01-.472-.01-.165%200-.432.062-.658.311-.227.249-.865.842-.865%202.052%200%201.21.886%202.378%201.009%202.544.125.166%201.744%202.648%204.225%203.714.59.254%201.05.405%201.41.518.593.189%201.133.162%201.558.099.475-.072%201.472-.601%201.678-1.183.206-.581.206-1.079.144-1.183-.061-.105-.226-.167-.475-.292z'/%3E%3C/svg%3E");
  background-color: #25D366;
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #3B82F6 0%, #1E40AF 100%);
  box-shadow: 0 14px 28px -4px rgba(37, 99, 235, 0.4), 0 8px 10px -2px rgba(37, 99, 235, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-sm {
  height: 38px;
  padding: 4px 4px 4px 18px;
  font-size: 0.88rem;
  gap: 10px;
}

.btn-sm svg {
  width: 30px !important;
  height: 30px !important;
  padding: 7px;
}

.btn-sm:not(:has(svg))::after {
  width: 30px;
  height: 30px;
  background-size: 13px 13px;
}

/* Page Headers (for MPA Subpages) */
.page-header-banner {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.88) 0%, rgba(241, 245, 249, 0.90) 100%),
    url('./assets/images/ambient_bg.png') no-repeat center center;
  background-size: cover;
  padding: 60px 0;
  border-bottom: 1px solid var(--border-color);
  position: relative;
}

.page-header-content h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-blue);
  letter-spacing: -1px;
  margin-bottom: 8px;
}

.page-header-content p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.breadcrumbs a {
  color: var(--text-muted);
}

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

.breadcrumbs-separator {
  color: var(--text-light);
}


/* Segmented Language switch */
.lang-toggle {
  display: flex;
  background-color: rgba(15, 23, 42, 0.05);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 8px;
  padding: 2px;
}

.lang-btn {
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 6px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-btn:hover:not(.active) {
  color: var(--primary-blue);
  background-color: rgba(11, 94, 168, 0.05);
}

.lang-btn.active {
  background-color: var(--white);
  color: var(--primary-blue);
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.08);
}

/* STICKY HEADER */
.header {
  height: var(--header-height);
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: none;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition-spring);
}

.header.scrolled {
  height: 70px;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-spring);
}

.header.scrolled .logo-img {
  height: 40px;
}

.brand-details {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-blue);
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.brand-tagline {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent-cyan);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Clean minimalistic navigation */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 6px 0;
  transition: var(--transition-fast);
}

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

.nav-link.active {
  color: var(--primary-blue);
  font-weight: 700;
}

.header-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Hamburger button */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 16px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1010;
}

.hamburger span {
  width: 100%;
  height: 2.5px;
  background-color: var(--primary-blue);
  border-radius: 2px;
  transition: var(--transition-spring);
}

/* Mobile Nav Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: var(--bg-white);
  box-shadow: var(--shadow-xl);
  z-index: 1009;
  padding: 80px 24px 30px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: var(--transition-spring);
}

.mobile-drawer.open {
  right: 0;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-link {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  padding: 10px 16px;
  border-radius: 8px;
  transition: var(--transition-fast);
}

.mobile-link:hover,
.mobile-link.active {
  background-color: rgba(11, 94, 168, 0.05);
  color: var(--primary-blue);
}

.mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(15, 23, 42, 0.3);
  backdrop-filter: blur(4px);
  z-index: 1008;
  display: none;
  opacity: 0;
  transition: var(--transition-spring);
}

.mobile-drawer-overlay.open {
  display: block;
  opacity: 1;
}

.hero {
  background: radial-gradient(circle at 85% 30%, rgba(14, 165, 233, 0.12) 0%, rgba(11, 94, 168, 0.04) 50%, rgba(255, 255, 255, 0) 80%),
    linear-gradient(180deg, #FFFFFF 0%, #F0F9FF 100%);
  padding: 100px 0 80px 0;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
}

/* Minimalist Tagline Pill */
.hero-slogan-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 6px;
  border: 1px solid var(--border-color);
  background-color: var(--white);
  color: var(--text-muted);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.75px;
}

.hero-slogan-badge span {
  color: var(--accent-cyan);
  border-left: 1px solid var(--border-color);
  padding-left: 6px;
}

.hero h1 {
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--primary-blue);
  margin-bottom: 18px;
  letter-spacing: -1.5px;
}

.hero h1 span {
  color: var(--primary-blue);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.5;
}

/* Integrated Hero Search form */
.hero-search-form {
  max-width: 500px;
  margin-bottom: 40px;
}

.hero-search-container {
  display: flex;
  background-color: var(--white);
  border-radius: 9999px;
  /* modern search pill shape */
  padding: 4px 6px;
  border: 1.5px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.hero-search-container:focus-within {
  border-color: var(--accent-cyan);
  box-shadow: var(--shadow-glow-cyan);
}

.hero-search-input {
  flex-grow: 1;
  border: none;
  background: transparent;
  padding: 10px 18px;
  font-size: 0.95rem;
  outline: none;
  color: var(--text-dark);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-shadow: none;
}

.hero-search-btn {
  padding: 10px 26px;
  background: linear-gradient(135deg, var(--accent-cyan) 0%, #38bdf8 100%);
  color: var(--white);
  border: none;
  border-radius: 9999px;
  /* search button pill shape */
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 2px 8px rgba(14, 165, 233, 0.2);
}

.hero-search-btn:hover {
  background: linear-gradient(135deg, var(--accent-cyan-hover) 0%, var(--accent-cyan) 100%);
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 6px 14px rgba(14, 165, 233, 0.35);
}

.hero-search-btn:active {
  transform: scale(0.96);
}

.hero-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

.hero-badges-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
}

.hero-badge-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--primary-blue);
}

/* UI Hero Image Wrapper & Blending */
.hero-image-area {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-merged-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 20px 40px rgba(14, 165, 233, 0.08));
  z-index: 2;
  position: relative;
}

/* Background glow behind the vector image to integrate it */
.hero-glow-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, rgba(11, 94, 168, 0.05) 50%, rgba(255, 255, 255, 0) 70%);
  filter: blur(20px);
  z-index: 1;
  pointer-events: none;
}

@keyframes floatImage {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-12px) scale(1.02);
  }
}

/* STATS SECTION */
.stats {
  background: linear-gradient(135deg, rgba(240, 249, 255, 0.85) 0%, rgba(224, 242, 254, 0.87) 100%),
    url('./assets/images/ambient_bg.png') no-repeat center center;
  background-size: cover;
  padding: 50px 0;
  border-top: 1px solid rgba(14, 165, 233, 0.1);
  border-bottom: 1px solid rgba(14, 165, 233, 0.1);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-right: 1px solid var(--border-color);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-blue);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}

.stat-number.accent {
  color: var(--accent-cyan);
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* ABOUT SECTION / CREDENTIALS */
.about {
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.about-left {
  display: flex;
  flex-direction: column;
}

.about-left h2 {
  font-size: 2.6rem;
  line-height: 1.25;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  font-weight: 800;
  color: var(--primary-blue);
}

.about-left p {
  color: var(--text-muted);
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.about-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.about-feature-card {
  background: var(--white);
  padding: 28px 24px;
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(14, 165, 233, 0.12);
  box-shadow: 0 4px 20px -2px rgba(11, 94, 168, 0.03), 0 2px 6px -1px rgba(11, 94, 168, 0.02);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  display: flex;
  flex-direction: column;
}

.about-feature-card:hover {
  border-color: rgba(14, 165, 233, 0.3);
  box-shadow: 0 20px 40px -15px rgba(11, 94, 168, 0.12);
  transform: translateY(-6px);
}

.about-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.about-feature-card:hover .about-icon {
  transform: scale(1.1);
}

.about-icon svg {
  width: 24px;
  height: 24px;
}

/* Custom color themes for feature card icons and gradient soft backgrounds */
.icon-support {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(29, 78, 216, 0.08) 100%);
  color: #2563EB;
}

.icon-processing {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.08) 0%, rgba(2, 132, 199, 0.08) 100%);
  color: #0EA5E9;
}

.icon-charges {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(79, 70, 229, 0.08) 100%);
  color: #6366F1;
}

.icon-whatsapp {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(5, 150, 105, 0.08) 100%);
  color: #10B981;
}

.about-feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}

.about-feature-card p {
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0;
}

/* SERVICES SECTION (SERVICES.HTML) */
.services {
  background: radial-gradient(circle at 10% 10%, rgba(14, 165, 233, 0.03) 0%, rgba(255, 255, 255, 0) 60%),
    radial-gradient(rgba(14, 165, 233, 0.08) 1.5px, transparent 1.5px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.90) 100%),
    url('./assets/images/ambient_bg.png') no-repeat center center;
  background-size: auto, 24px 24px, cover, cover;
  position: relative;
  overflow: hidden;
}

.services-page-body {
  background-color: var(--bg-light);
}

/* Interactive Search Bar wrapper */
.services-search-wrapper {
  max-width: 600px;
  margin: 0 auto 40px auto;
}

.search-input-container {
  display: flex;
  background-color: var(--white);
  border-radius: 9999px;
  /* modern pill shape */
  padding: 4px;
  border: 1.5px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.search-input-container:focus-within {
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-glow-blue);
}

.search-input-container svg {
  width: 20px;
  height: 20px;
  stroke: var(--text-muted);
  margin-left: 16px;
  margin-top: 12px;
}

.services-search-bar {
  flex-grow: 1;
  border: none;
  background: transparent;
  padding: 10px 14px;
  font-size: 0.95rem;
  outline: none;
  color: var(--text-dark);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-shadow: none;
}

.services-search-clear {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-fast);
}

.services-search-clear.visible {
  opacity: 1;
  pointer-events: auto;
}

.services-search-clear svg {
  width: 18px;
  height: 18px;
  stroke: var(--text-light);
}

/* Segmented Category tabs selector */
.category-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 4px 14px 4px;
  margin-bottom: 40px;
  scrollbar-width: none;
}

.category-tabs::-webkit-scrollbar {
  display: none;
}

.category-tab-btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background-color: var(--white);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 4px rgba(15, 23, 42, 0.02);
}

.category-tab-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}

.category-tab-btn:hover:not(.active) {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
  background-color: rgba(11, 94, 168, 0.02);
  transform: translateY(-1px);
}

.category-tab-btn.active {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #1e70bb 100%);
  color: var(--white);
  border-color: var(--primary-blue);
  box-shadow: 0 4px 12px rgba(11, 94, 168, 0.25);
}

.category-tab-btn:active {
  transform: scale(0.97);
}

/* Services Categories layout Blocks */
.service-category-block {
  background-color: var(--white);
  padding: 36px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  margin-bottom: 40px;
}

.category-block-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 12px;
}

.category-block-icon {
  width: 36px;
  height: 36px;
  background-color: rgba(11, 94, 168, 0.06);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
}

.category-block-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

.category-block-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-blue);
}

/* Flat Grid & Designer Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.service-card {
  background-color: var(--bg-light);
  border-radius: var(--border-radius-md);
  padding: 24px;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 170px;
  transition: var(--transition-spring);
}

.service-card:hover {
  background-color: var(--white);
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.service-card.highlight {
  border-color: var(--accent-cyan);
  background-color: rgba(14, 165, 233, 0.02);
}

.service-card-top {
  margin-bottom: 16px;
}

.service-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border: 1px solid var(--border-color);
  color: var(--primary-blue);
  transition: var(--transition-fast);
}

.service-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
}

.service-card:hover .service-card-icon {
  background-color: var(--primary-blue);
  color: var(--white);
  border-color: var(--primary-blue);
}

.service-card-action {
  align-self: flex-start;
}

.service-no-results {
  background-color: var(--white);
  padding: 60px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  display: none;
  flex-direction: column;
  align-items: center;
}

.service-no-results svg {
  width: 48px;
  height: 48px;
  stroke: var(--text-light);
  margin-bottom: 12px;
}

/* Home Section Shortcut blocks */
.home-services-shortcuts {
  background: linear-gradient(135deg, #091D30 0%, #030E1A 100%);
  position: relative;
  overflow: hidden;
}

.home-services-shortcuts .section-header h2 {
  color: var(--white);
}

.home-services-shortcuts .section-header p {
  color: #94A3B8;
}

.home-services-shortcuts .shortcut-card {
  background-color: var(--white);
  border-color: rgba(255, 255, 255, 0.1);
}

.home-services-shortcuts .shortcut-card:hover {
  background-color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.shortcut-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.shortcut-card {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  padding: 32px;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-color);
  border-top: 4px solid var(--primary-blue);
  display: flex;
  flex-direction: column;
  transition: var(--transition-spring);
}

.shortcut-card:nth-child(even) {
  border-top-color: var(--accent-cyan);
}

.shortcut-card:hover {
  background-color: var(--white);
  border-color: var(--border-color-hover);
  box-shadow: 0 20px 40px rgba(11, 94, 168, 0.1);
  transform: translateY(-6px);
}

.shortcut-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.shortcut-icon.icon-blue {
  background-color: rgba(11, 94, 168, 0.08);
  color: var(--primary-blue);
}

.shortcut-icon.icon-cyan {
  background-color: rgba(14, 165, 233, 0.08);
  color: var(--accent-cyan);
}

.shortcut-icon svg {
  width: 24px;
  height: 24px;
}

.shortcut-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 12px;
}

.shortcut-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.shortcut-card .btn-white {
  align-self: flex-start;
  margin-top: auto;
}

/* TOUR PACKAGES PAGE (TOURS.HTML) */
.tours-page-content {
  background: radial-gradient(circle at 10% 20%, rgba(56, 189, 248, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 90% 80%, rgba(11, 94, 168, 0.06) 0%, transparent 50%),
              linear-gradient(135deg, #F8FAFC 0%, #EFF6FF 100%);
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.tours-page-content::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('./assets/images/travel_bg.png') no-repeat center center;
  background-size: cover;
  opacity: 0.35; /* Medium visible background pattern */
  mix-blend-mode: multiply;
  z-index: 0;
  pointer-events: none;
}

.bg-glow-blob {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}

.tours-page-body {
  background-color: var(--white);
}

.tours-tabs {
  display: flex;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 4px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  max-width: 420px;
  margin: 0 auto 40px auto;
  position: relative;
  z-index: 5;
}

.tours-tab-btn {
  flex: 1;
  padding: 10px 20px;
  border: none;
  background-color: transparent;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.tours-tab-btn:hover:not(.active) {
  color: var(--primary-blue);
  background-color: rgba(255, 255, 255, 0.35);
}

.tours-tab-btn.active {
  background-color: var(--white);
  color: var(--primary-blue);
  box-shadow: 0 4px 12px rgba(11, 94, 168, 0.08);
}

/* Grid layout for tours */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
  margin-bottom: 40px;
}

.tour-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.8);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.tour-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.45) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  transition: 0.75s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 5; /* Sit on top of image and content */
  pointer-events: none;
}

.tour-card:hover::before {
  left: 125%;
}

.tour-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 40px rgba(11, 94, 168, 0.12);
  border-color: rgba(255, 255, 255, 0.95);
}

.tour-image-area {
  height: 220px;
  position: relative;
  overflow: hidden;
  background-color: #E2E8F0;
}

.tour-image-area::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.4), transparent);
  pointer-events: none;
}

.tour-image-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-spring);
}

.tour-card:hover .tour-image-area img {
  transform: scale(1.06);
}

.tour-badge-duration {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background-color: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(8px);
  color: var(--white);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}

.tour-badge-duration svg {
  width: 12px;
  height: 12px;
  stroke: var(--white);
}

.tour-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.tour-card-body h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 8px;
}

.tour-card-body p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
  flex-grow: 1;
  line-height: 1.45;
}

.tour-card-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
  margin-top: auto;
}

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

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

.tour-price-label {
  font-size: 0.7rem;
  color: var(--text-light);
  text-transform: uppercase;
  font-weight: 700;
}

.tour-price-amount {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--accent-cyan);
}

/* Featured tours slider carousel on Home page */
.carousel-wrapper {
  position: relative;
  max-width: 100%;
}

.carousel-container {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 10px 4px 30px 4px;
  scrollbar-width: none;
}

.carousel-container::-webkit-scrollbar {
  display: none;
}

.carousel-card {
  flex: 0 0 calc(33.333% - 14px);
  scroll-snap-align: start;
}

.carousel-nav-btn {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 50%;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.carousel-nav-btn:hover {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #1e70bb 100%);
  border-color: var(--primary-blue);
  color: var(--white);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 16px rgba(11, 94, 168, 0.3);
}

.carousel-nav-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.carousel-nav-btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  transition: transform 0.2s ease;
}

.carousel-nav-left {
  left: -23px;
}

.carousel-nav-right {
  right: -23px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  background-color: var(--border-color);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition-fast);
}

.carousel-dot.active {
  background-color: var(--primary-blue);
  width: 20px;
  border-radius: 4px;
}

/* Section Backgrounds */
.how {
  background: radial-gradient(circle at 85% 85%, rgba(14, 165, 233, 0.04) 0%, rgba(255, 255, 255, 0) 65%),
    radial-gradient(rgba(14, 165, 233, 0.08) 1.5px, transparent 1.5px),
    #FFFFFF;
  background-size: auto, 24px 24px, cover;
  position: relative;
  overflow: hidden;
}

.tours {
  background: radial-gradient(circle at 10% 20%, rgba(56, 189, 248, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 90% 80%, rgba(11, 94, 168, 0.06) 0%, transparent 50%),
              linear-gradient(135deg, #F8FAFC 0%, #EFF6FF 100%);
  background-size: cover;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.tours::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('./assets/images/travel_bg.png') no-repeat center center;
  background-size: cover;
  opacity: 0.35; /* Medium visible background pattern */
  mix-blend-mode: multiply;
  z-index: 0;
  pointer-events: none;
}

/* tours-glass-container for glassmorphic display board */
.tours-glass-container {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--border-radius-xl);
  padding: 48px 36px;
  box-shadow: 0 20px 50px -12px rgba(15, 23, 42, 0.03);
  margin-top: 40px;
  position: relative;
  z-index: 2;
}

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

/* ABOUT US TIMELINE (ABOUT.HTML) */
.about-history-section {
  background-color: var(--bg-light);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: linear-gradient(to right, var(--primary-blue), var(--accent-cyan));
  z-index: 0;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.timeline-number {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-cyan) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  box-shadow: var(--shadow-glow-blue);
  margin-bottom: 20px;
  transition: var(--transition-spring);
}

.timeline-step:hover .timeline-number {
  transform: scale(1.08);
  box-shadow: 0 0 20px rgba(14, 165, 233, 0.4);
}

.timeline-step h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.timeline-step p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

/* CUSTOMER REVIEWS SLIDER */
.reviews-slider-wrapper {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.reviews-container {
  overflow: hidden;
}

.reviews-track {
  display: flex;
  transition: var(--transition-spring);
}

.review-slide {
  flex: 0 0 100%;
}

.review-card {
  background-color: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  border: 1px solid var(--border-color);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: '“';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 8rem;
  font-family: serif;
  color: rgba(14, 165, 233, 0.06);
  line-height: 1;
  font-weight: 900;
  pointer-events: none;
}

.review-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 20px;
}

.review-stars svg {
  width: 18px;
  height: 18px;
  fill: #F59E0B;
  stroke: none;
}

.review-text {
  font-size: 1.2rem;
  font-weight: 500;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 24px;
  line-height: 1.5;
}

.review-author {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-blue);
}

.review-author-title {
  font-size: 0.8rem;
  color: var(--text-light);
}

.reviews-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 50%;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.reviews-nav-btn:hover {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #1e70bb 100%);
  color: var(--white);
  border-color: var(--primary-blue);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 16px rgba(11, 94, 168, 0.3);
}

.reviews-nav-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.reviews-nav-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  transition: transform 0.2s ease;
}

.reviews-nav-left {
  left: -22px;
}

.reviews-nav-right {
  right: -22px;
}

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 24px;
}

.reviews-dot {
  width: 8px;
  height: 8px;
  background-color: var(--border-color);
  border-radius: 50%;
  cursor: pointer;
}

.reviews-dot.active {
  background-color: var(--primary-blue);
  width: 16px;
  border-radius: 4px;
}.reviews {
  background-color: var(--white);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.reviews::after {
  display: none;
}

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


.reviews .section-header h2 {
  color: var(--text-dark);
}

.reviews .section-header p {
  color: var(--text-muted);
}

.reviews .review-card {
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 40px;
  text-align: left;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: grid;
  grid-template-areas:
    "stars stars"
    "text text"
    "avatar author"
    "avatar title";
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto auto auto;
  column-gap: 16px;
  row-gap: 4px;
  align-items: center;
}

.reviews .review-card:hover {
  transform: translateY(-4px);
  background-color: var(--white);
  border-color: var(--border-color-hover);
  box-shadow: var(--shadow-lg);
}

.reviews .review-card::before {
  content: '“';
  position: absolute;
  top: 10px;
  right: 35px;
  font-size: 7rem;
  font-family: Georgia, serif;
  color: rgba(11, 94, 168, 0.06);
  pointer-events: none;
  font-weight: 900;
  line-height: 1;
}

.reviews .review-stars svg {
  fill: #F59E0B;
  filter: none;
  width: 18px;
  height: 18px;
  margin: 0 2px;
}

.reviews .review-stars {
  grid-area: stars;
  display: flex;
  justify-content: flex-start;
  margin-bottom: 12px;
}

.reviews .review-text {
  grid-area: text;
  color: var(--text-dark);
  font-size: 1.15rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 24px;
  text-shadow: none;
}

.reviews .review-author {
  grid-area: author;
  color: var(--primary-blue);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0;
  letter-spacing: normal;
  align-self: end;
}

.reviews .review-author-title {
  grid-area: title;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
  align-self: start;
}

.reviews .reviews-nav-btn {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  color: var(--text-dark);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.reviews .reviews-nav-btn:hover {
  background: var(--accent-cyan);
  color: var(--white);
  border-color: var(--accent-cyan);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 16px rgba(14, 165, 233, 0.35);
}

.reviews .reviews-nav-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.reviews .reviews-dots {
  gap: 8px;
}

.reviews .reviews-dot {
  background-color: rgba(11, 94, 168, 0.2);
  transition: all 0.3s ease;
  width: 8px;
  height: 8px;
}

.reviews .reviews-dot.active {
  background-color: var(--primary-blue);
  box-shadow: none;
  width: 16px;
}

.reviews .review-avatar {
  grid-area: avatar;
  margin: 0;
}

/* Avatar Badge Styles */
.review-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 auto 16px auto;
  border: 2px solid var(--white);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
  text-shadow: none;
  letter-spacing: normal;
  transition: transform 0.3s ease;
}

.review-card:hover .review-avatar {
  transform: scale(1.05);
}

.review-avatar.avatar-1 {
  background: var(--primary-blue);
}

.review-avatar.avatar-2 {
  background: #0F172A;
}

.review-avatar.avatar-3 {
  background: #0EA5E9;
}

.review-avatar.avatar-4 {
  background: #475569;
}

.faq {
  background: radial-gradient(circle at 80% 20%, rgba(14, 165, 233, 0.03) 0%, rgba(255, 255, 255, 0) 60%),
    radial-gradient(rgba(14, 165, 233, 0.08) 1.5px, transparent 1.5px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.90) 100%),
    url('./assets/images/ambient_bg.png') no-repeat center center;
  background-size: auto, 24px 24px, cover, cover;
  border-top: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

/* FAQ SECTION */
.faq-grid {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background-color: var(--white);
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--border-color);
  overflow: hidden;
  transition: var(--transition-spring);
}

.faq-item:hover {
  border-color: var(--border-color-hover);
  border-left-color: var(--primary-blue);
}

.faq-item[open] {
  border-color: var(--primary-blue);
  border-left-color: var(--accent-cyan);
  box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.05);
}

.faq-item summary {
  padding: 20px 24px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-blue);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-icon-toggle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--bg-light);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-spring);
}

.faq-icon-toggle svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  stroke-width: 3;
}

.faq-item[open] .faq-icon-toggle {
  transform: rotate(180deg);
  background-color: var(--primary-blue);
  color: var(--white);
}

.faq-content {
  padding: 0 24px 20px 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
  border-top: 1px solid var(--border-color);
  margin-top: -1px;
}

/* CONTACT PAGE (CONTACT.HTML) */
.contact {
  background: radial-gradient(circle at 10% 10%, rgba(14, 165, 233, 0.03) 0%, rgba(255, 255, 255, 0) 60%),
    radial-gradient(rgba(14, 165, 233, 0.08) 1.5px, transparent 1.5px),
    #FFFFFF;
  background-size: auto, 24px 24px, cover;
  position: relative;
  overflow: hidden;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
}

.contact-card-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-info-card {
  display: flex;
  gap: 16px;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  padding: 20px;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--primary-blue);
  transition: var(--transition-spring);
}

.contact-info-card:nth-child(even) {
  border-left-color: var(--accent-cyan);
}

.contact-info-card:hover {
  border-color: var(--border-color-hover);
  box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.05);
  transform: translateX(4px);
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background-color: rgba(11, 94, 168, 0.06);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.contact-info-details h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.contact-info-details p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.contact-map-frame {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  height: 240px;
}

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

/* Contact Form */
.contact-form-panel {
  background-color: var(--white);
  padding: 36px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.contact-form-panel h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  padding: 10px 16px;
  border-radius: var(--border-radius-sm);
  border: 1.5px solid var(--border-color);
  font-size: 0.9rem;
  background-color: var(--white);
  color: var(--text-dark);
  outline: none;
  transition: var(--transition-fast);
}

.form-input:focus {
  border-color: var(--primary-blue);
}

textarea.form-input {
  height: 100px;
  resize: none;
}

.form-alert {
  padding: 10px 16px;
  border-radius: var(--border-radius-sm);
  margin-bottom: 16px;
  font-size: 0.9rem;
  font-weight: 600;
  display: none;
}

.form-alert-success {
  background-color: rgba(34, 197, 94, 0.1);
  color: #15803d;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.form-alert-error {
  background-color: rgba(239, 68, 68, 0.1);
  color: #b91c1c;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

/* FOOTER */
.footer {
  background-color: #0F172A;
  color: var(--white);
  padding: 60px 0 30px 0;
  font-size: 0.9rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr 1.25fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.footer-brand-content {
  display: flex;
  flex-direction: column;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
  margin-bottom: 8px;
}

.footer-logo-title {
  font-family: var(--font-family);
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--white);
  line-height: 1;
}

.footer-logo-subtitle {
  font-family: var(--font-family);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--light-blue);
  margin-top: 4px;
}

.footer-brand p {
  color: #94A3B8;
  margin-bottom: 18px;
  font-size: 0.85rem;
}

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

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #1E293B;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.social-link svg {
  width: 18px;
  height: 18px;
  stroke: var(--white);
}

.social-link:hover {
  background-color: var(--accent-cyan);
  transform: translateY(-2px);
}

.footer-column h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--white);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #94A3B8;
  font-size: 0.85rem;
}

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

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  font-size: 0.85rem;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--light-blue);
  flex-shrink: 0;
}

.footer-contact-item span {
  color: #94A3B8;
}

.footer-bottom {
  border-top: 1px solid #1E293B;
  padding-top: 24px;
  text-align: center;
  color: #64748B;
  font-size: 0.8rem;
}

/* FLOATING WIDGETS (UX Optimized) */

/* Pinned mobile call trigger */
.call-float-mobile {
  display: none;
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary-blue) 0%, #1e70bb 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(11, 94, 168, 0.3);
  z-index: 999;
  cursor: pointer;
  color: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.call-float-mobile:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 24px rgba(11, 94, 168, 0.45);
}

.call-float-mobile:active {
  transform: scale(0.95);
}

.call-float-mobile svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2.5;
}

/* DOCUMENT CHECKLIST MODAL */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(15, 23, 42, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal.open {
  display: flex;
}

.modal-content {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  max-width: 800px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  animation: scaleUp 0.3s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes scaleUp {
  from {
    opacity: 0;
    transform: scale(0.96) translateY(8px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 28px;
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  background-color: var(--white);
  z-index: 10;
}

.modal-header h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-blue);
}

.modal-close-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-close-btn:hover {
  background-color: rgba(15, 23, 42, 0.05);
  color: var(--text-dark);
  transform: rotate(90deg);
}

.modal-close-btn:active {
  transform: rotate(90deg) scale(0.9);
}

.modal-close-btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2.5;
}

.modal-body {
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.modal-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal-left h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
}

.modal-checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal-check-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
}

.modal-check-item svg {
  width: 18px;
  height: 18px;
  stroke: #22C55E;
  stroke-width: 3;
  margin-top: 2px;
  flex-shrink: 0;
}

.modal-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-right h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
}

.modal-poster-wrapper {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.modal-poster-wrapper img {
  width: 100%;
  display: block;
}

/* RESPONSIVE DESIGN - MEDIA QUERIES */

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-slogan-badge {
    align-self: center;
  }

  .hero h1 {
    font-size: 2.75rem;
  }

  .hero-search-form {
    margin: 0 auto 36px auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-badges-list {
    justify-content: center;
  }

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

  .stat-item {
    border-right: none;
  }

  .stat-item:nth-child(odd) {
    border-right: 1px solid var(--border-color);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .carousel-card {
    flex: 0 0 calc(50% - 10px);
  }

  .timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }

  .timeline::before {
    display: none;
  }

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

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

@media (max-width: 768px) {

  .nav-menu,
  .header-ctas .btn-primary {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .section-header h2 {
    font-size: 1.85rem;
  }

  .hero h1 {
    font-size: 2.15rem;
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }

  .carousel-card {
    flex: 0 0 100%;
  }

  .carousel-nav-btn {
    display: none;
  }

  .review-card {
    padding: 30px 20px;
  }

  .review-text {
    font-size: 1.05rem;
  }

  .modal-body {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-actions {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 12px;
    width: 100%;
  }

  .hero-actions .btn {
    flex: 1;
    max-width: 160px;
    font-size: 0.85rem;
    padding: 8px 12px 8px 16px;
    white-space: nowrap;
  }

  .call-float-mobile {
    display: flex;
    bottom: 32px;
    left: 20px;
  }


  .footer-brand {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }

  .footer-brand-content {
    align-items: center;
  }

  .footer-logo-text {
    align-items: center;
  }
}

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

  .logo-img {
    height: 36px;
  }

  .brand-name {
    font-size: 1.15rem;
  }

  .brand-tagline {
    font-size: 0.65rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stat-item {
    border-right: none !important;
  }

  .about-features-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-form-panel {
    padding: 24px;
  }
}

@media (max-width: 360px) {
  .hero-actions .btn {
    font-size: 0.8rem;
    padding: 8px 8px;
    gap: 6px;
  }

  .hero-actions .btn svg {
    width: 20px !important;
    height: 20px !important;
    padding: 3px;
  }
}

/* Decorative Background Glow Waves */
.about::before,
.home-services-shortcuts::before,
.tours::before,
.how::before,
.reviews::before,
.faq::before,
.contact::before,
.services::before,
.tours-page-content::before {
  content: '';
  position: absolute;
  z-index: -1;
  pointer-events: none;
  filter: blur(10px);
  /* slightly soft edge for anti-aliasing */
}

/* About Section Wave */
.about::before {
  top: 10%;
  right: -250px;
  width: 600px;
  height: 600px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.08) 0%, rgba(11, 94, 168, 0.03) 100%);
  border-radius: 50% 50% 30% 70% / 50% 60% 40% 60%;
  transform: rotate(-15deg);
}

.about::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, rgba(11, 94, 168, 0.05) 0%, rgba(14, 165, 233, 0.02) 100%);
  border-radius: 40% 60% 50% 50% / 40% 40% 60% 60%;
  filter: blur(15px);
  z-index: -1;
  pointer-events: none;
}

/* Services Shortcuts Wave */
.home-services-shortcuts::before {
  top: 10%;
  left: -200px;
  width: 550px;
  height: 550px;
  background: linear-gradient(135deg, rgba(11, 94, 168, 0.06) 0%, rgba(14, 165, 233, 0.02) 100%);
  border-radius: 30% 70% 40% 60% / 50% 30% 70% 50%;
  transform: rotate(20deg);
}

.home-services-shortcuts::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -150px;
  width: 450px;
  height: 450px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.08) 0%, rgba(11, 94, 168, 0.03) 100%);
  border-radius: 60% 40% 50% 50% / 50% 50% 40% 60%;
  filter: blur(12px);
  z-index: -1;
  pointer-events: none;
}

/* Tours Section Wave */
.tours::before {
  top: 30%;
  right: -250px;
  width: 650px;
  height: 650px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.07) 0%, rgba(11, 94, 168, 0.02) 100%);
  border-radius: 50% 50% 30% 70% / 50% 60% 40% 60%;
  transform: rotate(-10deg);
}

/* How Section Wave */
.how::before {
  top: 20%;
  right: -250px;
  width: 600px;
  height: 600px;
  background: linear-gradient(135deg, rgba(11, 94, 168, 0.06) 0%, rgba(14, 165, 233, 0.02) 100%);
  border-radius: 40% 60% 50% 50% / 40% 40% 60% 60%;
  transform: rotate(15deg);
}

.how::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.08) 0%, rgba(11, 94, 168, 0.03) 100%);
  border-radius: 30% 70% 40% 60% / 50% 30% 70% 50%;
  filter: blur(15px);
  z-index: -1;
  pointer-events: none;
}

/* Reviews Section Wave */
.reviews::before {
  display: none;
}

/* FAQ Section Wave */
.faq::before {
  bottom: -200px;
  right: -250px;
  width: 650px;
  height: 650px;
  background: linear-gradient(135deg, rgba(11, 94, 168, 0.06) 0%, rgba(14, 165, 233, 0.02) 100%);
  border-radius: 30% 70% 40% 60% / 50% 30% 70% 50%;
  transform: rotate(-25deg);
}

/* Contact Section Wave */
.contact::before {
  top: 10%;
  left: -200px;
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.08) 0%, rgba(11, 94, 168, 0.02) 100%);
  border-radius: 40% 60% 50% 50% / 40% 40% 60% 60%;
}

.contact::after {
  content: '';
  position: absolute;
  bottom: -150px;
  right: -200px;
  width: 550px;
  height: 550px;
  background: linear-gradient(135deg, rgba(11, 94, 168, 0.06) 0%, rgba(14, 165, 233, 0.02) 100%);
  border-radius: 50% 50% 30% 70% / 50% 60% 40% 60%;
  filter: blur(10px);
  z-index: -1;
  pointer-events: none;
}

/* Services Page Wave */
.services::before {
  top: 15%;
  right: -200px;
  width: 600px;
  height: 600px;
  background: linear-gradient(135deg, rgba(11, 94, 168, 0.06) 0%, rgba(14, 165, 233, 0.02) 100%);
  border-radius: 30% 70% 40% 60% / 50% 30% 70% 50%;
}

/* Tours Page Wave */
.tours-page-content::before {
  top: 20%;
  left: -200px;
  width: 600px;
  height: 600px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.08) 0%, rgba(11, 94, 168, 0.02) 100%);
  border-radius: 50% 50% 30% 70% / 50% 60% 40% 60%;
}

/* Reframed CTA Section & Card Styles */
.cta-section {
  background-color: var(--white);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-card {
  background: var(--primary-blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  border-radius: var(--border-radius-lg);
  padding: 48px 56px;
  gap: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(11, 94, 168, 0.08);
  max-width: 1000px;
  margin: 0 auto;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.cta-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px rgba(11, 94, 168, 0.15);
}

.cta-card-text {
  flex: 1;
}

.cta-card h2 {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  color: var(--white) !important;
  text-shadow: none;
}

.cta-card p {
  max-width: 650px;
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.cta-card .btn-accent {
  background: var(--white) !important;
  color: var(--primary-blue) !important;
  border: 1px solid var(--white) !important;
  padding: 14px 36px !important;
  font-weight: 700 !important;
  border-radius: 30px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important;
  transition: all 0.25s ease !important;
}

.cta-card .btn-accent:hover {
  background: #F0F5FA !important;
  color: #084882 !important;
  border-color: #F0F5FA !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1) !important;
}

.cta-card-bg-circle-1 {
  display: none;
}

.cta-card-bg-circle-2 {
  display: none;
}

@media (max-width: 768px) {
  .cta-card {
    flex-direction: column;
    text-align: center;
    padding: 40px 24px;
    gap: 24px;
    border-radius: var(--border-radius-md);
  }

  .cta-card h2 {
    font-size: 1.85rem;
  }
}

/* ==========================================================================
   AI CHATBOT WIDGET STYLES
   ========================================================================== */

/* Chatbot Launcher Button */
.chatbot-launcher {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.15);
  z-index: 1000;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.chatbot-launcher:hover {
  transform: scale(1.08) rotate(5deg);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.25);
  background-color: #f8fafc;
}

.chatbot-launcher:active {
  transform: scale(0.95);
}

/* Launcher Notification pulsing dot */
.chatbot-launcher::after {
  content: '';
  position: absolute;
  top: 2px;
  right: 2px;
  width: 12px;
  height: 12px;
  background-color: #22C55E;
  border: 2px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: pulse-dot 1.8s infinite;
}

@keyframes pulse-dot {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

.chatbot-launcher svg {
  width: 36px;
  height: 36px;
}

/* Chatbot Container Window */
.chatbot-window {
  position: fixed;
  bottom: 96px;
  right: 24px;
  width: 380px;
  height: 520px;
  max-height: calc(100vh - 120px);
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-xl);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.3s cubic-bezier(0.25, 1, 0.5, 1),
    transform 0.3s cubic-bezier(0.25, 1, 0.5, 1),
    visibility 0.3s;
}

.chatbot-window.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  visibility: visible;
}

/* Chat Header */
.chatbot-header {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #1e70bb 100%);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
}

.chatbot-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chatbot-avatar {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.chatbot-avatar svg {
  width: 24px;
  height: 24px;
}

.chatbot-avatar-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10px;
  height: 10px;
  background-color: #22C55E;
  border: 2px solid var(--white);
  border-radius: 50%;
}

.chatbot-details h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
}

.chatbot-details p {
  font-size: 0.75rem;
  opacity: 0.85;
  margin: 2px 0 0 0;
}

.chatbot-close-btn {
  background: transparent;
  border: none;
  color: var(--white);
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
}

.chatbot-close-btn:hover {
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.1);
}

.chatbot-close-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2.5;
}

/* Chat Messages Area */
.chatbot-messages {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  background-color: #F8FAFC;
  display: flex;
  flex-direction: column;
  gap: 16px;
  scroll-behavior: smooth;
}

/* Message Item styling */
.chat-msg {
  display: flex;
  gap: 10px;
  max-width: 85%;
  animation: message-fade-in 0.3s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes message-fade-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.chat-msg.bot {
  align-self: flex-start;
}

.chat-msg.user {
  align-self: flex-end;
  flex-direction: row-reverse;
  max-width: 80%;
}

.chat-msg-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary-blue);
}

.chat-msg-icon svg {
  width: 14px;
  height: 14px;
}

.chat-msg.user .chat-msg-icon {
  background-color: rgba(11, 94, 168, 0.1);
  color: var(--primary-blue);
}

.chat-msg-bubble {
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 0.9rem;
  line-height: 1.5;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
}

.chat-msg.bot .chat-msg-bubble {
  background-color: var(--white);
  color: var(--text-dark);
  border-top-left-radius: 4px;
  border: 1px solid var(--border-color);
}

.chat-msg.user .chat-msg-bubble {
  background-color: var(--primary-blue);
  color: var(--white);
  border-top-right-radius: 4px;
}

.chat-msg-bubble p {
  margin: 0 0 8px 0;
}

.chat-msg-bubble p:last-child {
  margin-bottom: 0;
}

.chat-msg-bubble ul,
.chat-msg-bubble ol {
  margin: 6px 0;
  padding-left: 20px;
}

.chat-msg-bubble li {
  margin-bottom: 4px;
}

.chat-msg-bubble strong {
  font-weight: 700;
}

.chat-msg-bubble a {
  color: #10B981;
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.chat-msg-bubble a:hover {
  color: #059669;
}

/* Suggestion Chips Container */
.chat-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
  align-self: flex-start;
  max-width: 100%;
}

.suggestion-chip {
  background-color: var(--white);
  border: 1.5px solid var(--border-color);
  border-radius: 16px;
  padding: 6px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-blue);
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.02);
}

.suggestion-chip:hover {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(11, 94, 168, 0.15);
}

/* Typing Indicator Animation */
.typing-indicator {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
}

.typing-dot {
  width: 6px;
  height: 6px;
  background-color: var(--text-muted);
  border-radius: 50%;
  opacity: 0.6;
  animation: bounce 1.4s infinite ease-in-out both;
}

.typing-dot:nth-child(1) {
  animation-delay: -0.32s;
}

.typing-dot:nth-child(2) {
  animation-delay: -0.16s;
}

@keyframes bounce {

  0%,
  80%,
  100% {
    transform: scale(0);
  }

  40% {
    transform: scale(1.0);
  }
}

/* Chat Input Form */
.chatbot-input-area {
  padding: 16px 20px;
  background-color: var(--white);
  border-top: 1px solid var(--border-color);
  display: flex;
  gap: 12px;
  align-items: center;
}

.chatbot-input {
  flex: 1;
  border: 1.5px solid var(--border-color);
  border-radius: 20px;
  padding: 10px 16px;
  font-size: 0.88rem;
  outline: none;
  background-color: #F8FAFC;
  transition: border-color 0.2s, background-color 0.2s;
}

.chatbot-input:focus {
  border-color: var(--primary-blue);
  background-color: var(--white);
}

.chatbot-send-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: var(--primary-blue);
  border: none;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s, transform 0.2s;
}

.chatbot-send-btn:hover {
  background-color: #1e70bb;
  transform: scale(1.05);
}

.chatbot-send-btn:active {
  transform: scale(0.95);
}

.chatbot-send-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  margin-left: 2px;
}

/* Mobile Media Queries for Chatbot */
@media (max-width: 768px) {
  .chatbot-launcher {
    bottom: 32px;
    right: 20px;
  }

  .chatbot-window {
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    max-height: 100%;
    border-radius: 0;
    border: none;
    z-index: 2005;
    /* Cover everything including floats on mobile */
  }

  .chatbot-window.open {
    transform: none;
  }

  /* Reviews Nav Buttons Safe Responsive Margins */
  .reviews-nav-left {
    left: 8px !important;
  }
  .reviews-nav-right {
    right: 8px !important;
  }
  .reviews-slider-wrapper {
    padding: 0 12px;
  }
}