/* ============================================
   LAHAK AVIATION - MODERN 2026 AEROSPACE DESIGN
   ============================================ */

/* ========== CSS VARIABLES ========== */
:root {
  --bg: #ffffff;
  --bg2: #f8f9fb;
  --panel: #ffffff;
  --primary: #0a1628;
  --accent: #c9a84c;
  --text: #1a1a2a;
  --muted: #6b7280;
  --text-muted: #6b7280;
  --gradient: linear-gradient(135deg, #0a1628, #1a2d4a);
  --gold: #c9a84c;

  --nav-height: 88px;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;

  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;

  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 4px 24px rgba(10, 22, 40, 0.08);
  --shadow-lg: 0 12px 48px rgba(10, 22, 40, 0.12);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

body.hebrew {
  font-family: 'Heebo', sans-serif;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  transition: var(--transition);
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-sm);
}

body.hebrew h1,
body.hebrew h2,
body.hebrew h3,
body.hebrew h4,
body.hebrew h5,
body.hebrew h6 {
  font-family: 'Heebo', sans-serif;
  font-weight: 700;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.1rem; }

p {
  margin-bottom: var(--spacing-sm);
  color: var(--text-muted);
}

/* ========== UTILITIES ========== */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.container-narrow {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary), #1a3a5c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title.gradient-text {
  margin-bottom: var(--spacing-lg);
}

.section {
  padding: var(--spacing-xl) 0;
}

.section-title {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  text-align: center;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: var(--primary);
  box-shadow: 0 4px 24px rgba(201, 168, 76, 0.35);
  letter-spacing: 0.04em;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: #d4b65a;
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.45);
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.85);
  color: #ffffff;
  background: transparent;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-color: #ffffff;
}

.section .btn-outline {
  border-color: var(--primary);
  color: var(--primary);
}

.section .btn-outline:hover {
  background: var(--primary);
  color: #ffffff;
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 2px solid var(--accent);
  z-index: 1000;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.99);
  box-shadow: var(--shadow);
}

.navbar .container,
.navbar-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.navbar-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
  max-width: min(480px, 44vw);
}

.navbar-logo-img {
  display: block;
  width: auto;
  height: 80px;
  max-width: 100%;
  object-fit: contain;
}

.navbar-menu,
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
}

.navbar-menu a,
.nav-links a {
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--muted);
  position: relative;
  padding: 0.5rem 0;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

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

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

.navbar-menu a:hover::after,
.navbar-menu a.active::after,
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Dropdown */
.navbar-menu li {
  position: relative;
}

.navbar-menu ul,
.nav-links ul,
.dropdown-menu,
.dropdown-menu ul {
  list-style: none;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.navbar-menu > li,
.nav-links > li,
.dropdown-menu li {
  list-style: none;
  list-style-type: none;
}

.navbar-menu li::marker,
.nav-links li::marker,
.dropdown-menu li::marker {
  content: none;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
  white-space: nowrap;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 1rem);
  left: 0;
  list-style: none;
  list-style-type: none;
  margin: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(10, 22, 40, 0.08);
  border-radius: var(--radius);
  padding: 0.5rem 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.navbar-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--text-muted);
}

.dropdown-menu a:hover {
  background: var(--panel);
  color: var(--text);
}

/* Language Toggle */
.lang-toggle {
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.lang-toggle:hover {
  transform: scale(1.1);
}

/* Mobile Menu Toggle */
.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 0.5rem;
}

.navbar-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(7px);
}

.navbar-toggle.active span:nth-child(2) {
  opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-7px);
}

/* ========== HERO SECTION ========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
  background-image: var(--page-hero-image, url('/uploads/galleries/2018/11/3.jpg'));
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 22, 40, 0.66) 0%,
    rgba(10, 22, 40, 0.39) 45%,
    rgba(10, 22, 40, 0.18) 100%
  );
  z-index: 1;
}

.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 920px;
  padding: var(--spacing-md);
}

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

.hidden {
  display: none !important;
}

.hero-logo-main {
  display: block;
  width: min(720px, 86vw);
  height: auto;
  margin: 0 auto var(--spacing-md);
  filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.45));
}

.hero h1 {
  margin-bottom: var(--spacing-md);
  animation: fadeInUp 0.8s ease;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.hero h1.gradient-text {
  background: none;
  -webkit-text-fill-color: #ffffff;
  color: #ffffff;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-lg);
  animation: fadeInUp 0.8s ease 0.2s backwards;
  color: rgba(255, 255, 255, 0.92);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.4s backwards;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-indicator svg {
  width: 30px;
  height: 30px;
  stroke: var(--gold);
}

/* ========== SERVICES SECTION ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-md);
}

.service-card {
  position: relative;
  display: block;
  min-height: 340px;
  background-color: var(--panel);
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  box-shadow: var(--shadow);
  text-decoration: none;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    to top,
    rgba(10, 22, 40, 0.92) 0%,
    rgba(10, 22, 40, 0.5) 55%,
    rgba(10, 22, 40, 0.2) 100%
  );
  transition: var(--transition);
  z-index: 0;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), inset 0 3px 0 var(--accent);
}

.service-card:hover::before {
  background: linear-gradient(
    to top,
    rgba(10, 22, 40, 0.88) 0%,
    rgba(10, 22, 40, 0.45) 55%,
    rgba(10, 22, 40, 0.15) 100%
  );
}

.service-card--medevac {
  background-image: url('/uploads/galleries/medical/13.jpeg');
}

.service-card--offshore {
  background-image: url('/uploads/galleries/offshore/Rig-w-heli-cropped.jpg');
}

.service-card--overview {
  background-image: url('/uploads/galleries/maintenance/DSC8675.jpg');
}

.service-card-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--spacing-lg);
}

.service-card h3 {
  color: #ffffff;
  margin-bottom: var(--spacing-sm);
  font-size: 1.5rem;
}

.service-card-title--single-line {
  white-space: nowrap;
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
}

.service-card p {
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: var(--spacing-md);
  font-size: 0.95rem;
  line-height: 1.6;
}

.service-card .read-more {
  color: var(--accent);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-card:hover .read-more {
  gap: 0.75rem;
}

/* ========== STATS SECTION ========== */
.stats-section {
  background: var(--primary);
  border: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-lg);
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
}

.stat-item {
  padding: var(--spacing-md);
  box-sizing: border-box;
  max-width: 100%;
}

.stat-number {
  font-size: clamp(2.1rem, 8.5vw, 3.5rem);
  font-weight: 700;
  color: var(--accent);
  font-family: 'Orbitron', sans-serif;
  margin-bottom: var(--spacing-sm);
  max-width: 100%;
  overflow-wrap: anywhere;
}

body.hebrew .stat-number {
  font-family: 'Heebo', sans-serif;
}

.stat-label {
  font-size: clamp(0.9rem, 3.6vw, 1rem);
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
  max-width: 100%;
  box-sizing: border-box;
  overflow-wrap: anywhere;
}

/* ========== GALLERY PREVIEW ========== */
.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-md);
}

.gallery-preview-card {
  position: relative;
  height: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-preview-card {
  background-size: cover;
  background-position: center;
}

.gallery-preview-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 22, 40, 0.88) 0%,
    rgba(10, 22, 40, 0.45) 100%
  );
  transition: var(--transition);
  z-index: 1;
}

.gallery-preview-card--medical {
  background-image: url('/uploads/galleries/medical/13.jpeg');
}

.gallery-preview-card--vip {
  background-image: url('/uploads/galleries/2018/11/spa1.jpg');
}

.gallery-preview-card--offshore {
  background-image: url('/uploads/galleries/offshore/Rig-w-heli-cropped.jpg');
}

.gallery-preview-card--maintenance {
  background-image: url('/uploads/galleries/maintenance/DSC8675.jpg');
}

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

.gallery-preview-card:hover::before {
  background: linear-gradient(
    to top,
    rgba(10, 22, 40, 0.82) 0%,
    rgba(10, 22, 40, 0.35) 100%
  );
}

.gallery-preview-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--spacing-md);
}

.gallery-preview-card h3 {
  color: #ffffff;
  font-size: 1.75rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

/* ========== CONTACT SECTION ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  align-items: start;
}

.contact-map-wrap,
.home-contact-map {
  display: flex;
  width: 100%;
  align-self: start;
}

.home-contact-map .contact-map {
  border: 0;
}

.contact-form {
  background: var(--panel);
  border: 1px solid rgba(10, 22, 40, 0.08);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: var(--spacing-md);
}

.form-group label {
  display: block;
  margin-bottom: var(--spacing-xs);
  color: var(--text);
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background: #ffffff;
  border: 1px solid rgba(10, 22, 40, 0.12);
  border-radius: var(--radius);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.contact-info-item {
  display: flex;
  align-items: start;
  gap: 1rem;
  padding: var(--spacing-md);
  background: var(--panel);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(10, 22, 40, 0.06);
}

.contact-info-item svg {
  width: 24px;
  height: 24px;
  fill: var(--accent);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.contact-info-content h4 {
  color: var(--text);
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}

.contact-info-content p {
  margin: 0;
  color: var(--text-muted);
}

.contact-map {
  width: 100%;
  height: 360px;
  border-radius: var(--radius);
  border: none;
  box-shadow: var(--shadow);
}

/* ========== FOOTER ========== */
.footer {
  background: var(--primary);
  border-top: 3px solid var(--accent);
  padding: var(--spacing-xl) 0 var(--spacing-md);
  color: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.footer-col h4 {
  margin-bottom: var(--spacing-md);
  color: var(--accent);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.footer-col ul li {
  margin-bottom: var(--spacing-sm);
}

.footer-col ul li,
.footer-col ul li a {
  color: rgba(255, 255, 255, 0.85);
}

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

.footer-phone {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: var(--spacing-sm);
  letter-spacing: 0.02em;
}

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

.footer-phone a:hover {
  color: #e0c06a;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: var(--spacing-md);
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--accent);
  letter-spacing: 0.06em;
}

body.hebrew .footer-logo {
  font-family: 'Heebo', sans-serif;
}

.footer-logo svg {
  width: 44px;
  height: 44px;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--spacing-md);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  transition: var(--transition);
  border: 1px solid rgba(201, 168, 76, 0.3);
}

.social-links a:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: #ffffff;
}

.social-links a:hover svg {
  fill: var(--primary);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
}

/* ========== FLOATING CTA ========== */
.floating-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  left: auto;
  z-index: 999;
  padding: 1rem 2rem;
  background: var(--accent);
  color: var(--primary);
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 4px 24px rgba(201, 168, 76, 0.45);
  animation: pulse 2s infinite;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.floating-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 48, 135, 0.6);
}

.floating-cta.hidden {
  opacity: 0;
  visibility: hidden;
}

.floating-cta-icon {
  color: #111;
  font-size: 1.35rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ========== PAGE HERO BANNER ========== */
.page-hero {
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg2);
  position: relative;
  overflow: hidden;
  margin-top: var(--nav-height);
}

.page-hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient);
}

.page-hero h1 {
  text-align: center;
  animation: fadeInUp 0.6s ease;
}

.inner-page-title-wrap {
  padding: var(--spacing-lg) 0 var(--spacing-md);
  background: var(--bg);
}

.inner-page-title {
  text-align: center;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
}

@media (max-width: 768px) {
  .inner-page-title-wrap {
    padding: var(--spacing-md) 0;
  }

  .inner-page-title {
    font-size: clamp(1.75rem, 5.5vw, 2.25rem);
  }
}

/* ========== ABOUT PAGE HERO ========== */
.about-hero {
  min-height: clamp(280px, 48vh, 520px);
  background-image: var(--page-hero-image, url('/uploads/galleries/offshore/-1-%D7%90%D7%95%D7%A4%D7%A9%D7%95%D7%A8.jpg'));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.about-hero::before {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: auto;
  background: linear-gradient(
    180deg,
    rgba(10, 22, 40, 0.32) 0%,
    rgba(10, 22, 40, 0.47) 45%,
    rgba(10, 22, 40, 0.59) 100%
  );
  z-index: 0;
}

.about-hero h1 {
  position: relative;
  z-index: 1;
  max-width: min(92vw, 900px);
  padding: 0 var(--spacing-md);
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  background: none;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.45);
}

.about-hero h1.gradient-text {
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
}

@media (max-width: 768px) {
  .about-hero {
    min-height: clamp(220px, 36vh, 320px);
  }

  .about-hero h1 {
    font-size: clamp(1.65rem, 6vw, 2.25rem);
    line-height: 1.25;
  }
}

/* ========== MEDEVAC PAGE HERO ========== */
.medevac-hero {
  min-height: clamp(280px, 50vh, 560px);
  background-image: var(--page-hero-image, url('/uploads/galleries/medical/IMG-3520.jpg'));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.medevac-hero::before {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: auto;
  background: linear-gradient(
    180deg,
    rgba(10, 22, 40, 0.32) 0%,
    rgba(10, 22, 40, 0.47) 45%,
    rgba(10, 22, 40, 0.59) 100%
  );
  z-index: 0;
}

.medevac-hero h1 {
  position: relative;
  z-index: 1;
  max-width: min(92vw, 900px);
  padding: 0 var(--spacing-md);
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  background: none;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.45);
}

.medevac-hero h1.gradient-text {
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
}

@media (max-width: 768px) {
  .medevac-hero {
    min-height: clamp(220px, 36vh, 320px);
  }

  .medevac-hero h1 {
    font-size: clamp(1.65rem, 6vw, 2.25rem);
    line-height: 1.25;
  }
}

/* ========== OFFSHORE PAGE HERO ========== */
.offshore-hero {
  min-height: clamp(280px, 50vh, 560px);
  background-image: var(--page-hero-image, url('/uploads/galleries/offshore/-2-%D7%90%D7%95%D7%A4%D7%A9%D7%95%D7%A8.jpg'));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.offshore-hero::before {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: auto;
  background: linear-gradient(
    180deg,
    rgba(10, 22, 40, 0.32) 0%,
    rgba(10, 22, 40, 0.47) 45%,
    rgba(10, 22, 40, 0.59) 100%
  );
  z-index: 0;
}

.offshore-hero h1 {
  position: relative;
  z-index: 1;
  max-width: min(92vw, 900px);
  padding: 0 var(--spacing-md);
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  background: none;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.45);
}

.offshore-hero h1.gradient-text {
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
}

@media (max-width: 768px) {
  .offshore-hero {
    min-height: clamp(220px, 36vh, 320px);
  }

  .offshore-hero h1 {
    font-size: clamp(1.65rem, 6vw, 2.25rem);
    line-height: 1.25;
  }
}

/* ========== GENERAL OVERVIEW PAGE HERO ========== */
.general-overview-hero {
  min-height: clamp(260px, 32vw, 430px);
  background-image: var(--page-hero-image, url('/uploads/galleries/2018/11/1-1-1024x576.jpg'));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.general-overview-hero::before {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: auto;
  background: linear-gradient(
    180deg,
    rgba(10, 22, 40, 0.32) 0%,
    rgba(10, 22, 40, 0.47) 45%,
    rgba(10, 22, 40, 0.59) 100%
  );
  z-index: 0;
}

.general-overview-hero h1 {
  position: relative;
  z-index: 1;
  max-width: min(92vw, 900px);
  padding: 0 var(--spacing-md);
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  background: none;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.45);
}

.general-overview-hero h1.gradient-text {
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
}

@media (max-width: 768px) {
  .general-overview-hero {
    min-height: clamp(220px, 28vw, 320px);
  }

  .general-overview-hero h1 {
    font-size: clamp(1.65rem, 6vw, 2.25rem);
    line-height: 1.25;
  }
}

/* ========== MAINTENANCE PAGE HERO ========== */
.maintenance-hero {
  min-height: clamp(260px, 32vw, 430px);
  background-image: var(--page-hero-image, url('/uploads/galleries/2018/11/-1.jpg'));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.maintenance-hero::before {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: auto;
  background: linear-gradient(
    180deg,
    rgba(10, 22, 40, 0.32) 0%,
    rgba(10, 22, 40, 0.47) 45%,
    rgba(10, 22, 40, 0.59) 100%
  );
  z-index: 0;
}

.maintenance-hero h1 {
  position: relative;
  z-index: 1;
  max-width: min(92vw, 900px);
  padding: 0 var(--spacing-md);
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  background: none;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.45);
}

.maintenance-hero h1.gradient-text {
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
}

@media (max-width: 768px) {
  .maintenance-hero {
    min-height: clamp(220px, 28vw, 320px);
  }

  .maintenance-hero h1 {
    font-size: clamp(1.65rem, 6vw, 2.25rem);
    line-height: 1.25;
  }
}

/* ========== VIDEO PAGE HERO ========== */
.video-hero {
  min-height: clamp(260px, 32vw, 430px);
  background-image: var(--page-hero-image, url('/uploads/galleries/medical/7.jpeg'));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.video-hero::before {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: auto;
  background: linear-gradient(
    180deg,
    rgba(10, 22, 40, 0.32) 0%,
    rgba(10, 22, 40, 0.47) 45%,
    rgba(10, 22, 40, 0.59) 100%
  );
  z-index: 0;
}

.video-hero h1 {
  position: relative;
  z-index: 1;
  max-width: min(92vw, 900px);
  padding: 0 var(--spacing-md);
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  background: none;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.45);
}

.video-hero h1.gradient-text {
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
}

@media (max-width: 768px) {
  .video-hero {
    min-height: clamp(220px, 28vw, 320px);
  }

  .video-hero h1 {
    font-size: clamp(1.65rem, 6vw, 2.25rem);
    line-height: 1.25;
  }
}

/* ========== GALLERY PAGE HERO ========== */
.gallery-hero {
  min-height: clamp(260px, 32vw, 430px);
  background-image: var(--page-hero-image, url('/uploads/galleries/offshore/-1-%D7%90%D7%95%D7%A4%D7%A9%D7%95%D7%A8.jpg'));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.gallery-hero::before {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: auto;
  background: linear-gradient(
    180deg,
    rgba(10, 22, 40, 0.32) 0%,
    rgba(10, 22, 40, 0.47) 45%,
    rgba(10, 22, 40, 0.59) 100%
  );
  z-index: 0;
}

.gallery-hero h1 {
  position: relative;
  z-index: 1;
  max-width: min(92vw, 900px);
  padding: 0 var(--spacing-md);
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  background: none;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.45);
}

.gallery-hero h1.gradient-text {
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
}

@media (max-width: 768px) {
  .gallery-hero {
    min-height: clamp(220px, 28vw, 320px);
  }

  .gallery-hero h1 {
    font-size: clamp(1.65rem, 6vw, 2.25rem);
    line-height: 1.25;
  }
}

/* ========== SEE ISRAEL PAGE HERO ========== */
.see-israel-hero {
  min-height: clamp(260px, 32vw, 430px);
  background-image: var(--page-hero-image, url('/uploads/galleries/2018/11/mg_5948.jpg'));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.see-israel-hero::before {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: auto;
  background: linear-gradient(
    180deg,
    rgba(10, 22, 40, 0.32) 0%,
    rgba(10, 22, 40, 0.47) 45%,
    rgba(10, 22, 40, 0.59) 100%
  );
  z-index: 0;
}

.see-israel-hero h1 {
  position: relative;
  z-index: 1;
  max-width: min(92vw, 900px);
  padding: 0 var(--spacing-md);
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  background: none;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.45);
}

.see-israel-hero h1.gradient-text {
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
}

@media (max-width: 768px) {
  .see-israel-hero {
    min-height: clamp(220px, 28vw, 320px);
  }

  .see-israel-hero h1 {
    font-size: clamp(1.65rem, 6vw, 2.25rem);
    line-height: 1.25;
  }
}

/* ========== CONTACT PAGE HERO ========== */
.contact-hero {
  display: block;
  min-height: 0;
  padding: 0;
  align-items: unset;
  justify-content: unset;
  overflow: hidden;
  height: clamp(260px, 32vw, 430px);
}

.contact-hero::before {
  display: none;
}

.contact-hero-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 22, 40, 0.10) 0%,
    rgba(10, 22, 40, 0.20) 50%,
    rgba(10, 22, 40, 0.30) 100%
  );
  pointer-events: none;
}

.contact-hero-title {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  padding: 0 var(--spacing-md);
}

.contact-hero-title h1 {
  margin: 0;
  text-align: center;
  max-width: min(92vw, 900px);
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  background: none;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.45);
}

.contact-hero-title h1.gradient-text {
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
}

@media (max-width: 768px) {
  .contact-hero-title h1 {
    font-size: clamp(1.65rem, 6vw, 2.25rem);
    line-height: 1.25;
  }
}

/* ========== PAGE CONTENT ========== */
.page-content {
  padding: var(--spacing-xl) 0;
}

.page-content--video {
  background: #ffffff;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2rem);
  max-width: 1120px;
  margin: 0 auto;
}

.video-card {
  background: #ffffff;
  border: 1px solid rgba(10, 22, 40, 0.08);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(10, 22, 40, 0.06);
}

.video-card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0a1628;
}

.video-card-media iframe,
.video-card-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  object-fit: cover;
}

.video-card-title {
  margin: 0;
  padding: 1rem 1.1rem 1.15rem;
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  font-weight: 600;
  color: var(--text, #0a1628);
  text-align: center;
}

.video-empty {
  text-align: center;
  color: #5c6b7a;
  margin-top: 1rem;
}

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

/* ========== GENERIC DB PAGE CONTENT ========== */
.db-page-content:empty {
  display: none;
}

.db-page-body {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 0 clamp(2rem, 5vw, 3.5rem);
  background: linear-gradient(180deg, #fafbfd 0%, #f0f4f8 100%);
}

.db-page-body--ltr {
  direction: ltr;
  text-align: left;
}

.db-page-body--rtl {
  direction: rtl;
  text-align: right;
}

.db-content-section {
  padding: clamp(1.5rem, 3vw, 2.5rem) 0;
  border-bottom: 1px solid rgba(10, 22, 40, 0.08);
}

.db-content-section:last-child {
  border-bottom: none;
}

.db-content-section h2 {
  color: #0a1628;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  margin-bottom: 1.25rem;
  padding-bottom: 0.65rem;
  border-bottom: 3px solid #c9a84c;
}

.db-content-section h3 {
  color: #0a1628;
  margin-bottom: 0.75rem;
}

.db-content-section h4 {
  color: #0a1628;
  margin-bottom: 0.5rem;
}

.db-content-card {
  background: #ffffff;
  border: 1px solid rgba(10, 22, 40, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(10, 22, 40, 0.06);
  padding: clamp(1.25rem, 3vw, 1.75rem);
}

.db-content-card p {
  color: #334155;
  line-height: 1.75;
  margin: 0;
}

.db-content-card p + p {
  margin-top: 0.85rem;
}

.db-content-card--faq h3 {
  color: #c9a84c;
  font-size: 1.05rem;
}

.db-content-card--table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.db-content-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.db-content-list li {
  position: relative;
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(10, 22, 40, 0.06);
  color: #334155;
  line-height: 1.65;
}

.db-page-body--ltr .db-content-list li {
  padding-left: 1.35rem;
}

.db-page-body--rtl .db-content-list li {
  padding-right: 1.35rem;
}

.db-content-list li::before {
  content: '';
  position: absolute;
  top: 1.05rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c9a84c;
}

.db-page-body--ltr .db-content-list li::before {
  left: 0;
}

.db-page-body--rtl .db-content-list li::before {
  right: 0;
}

.db-content-list--prices li {
  font-weight: 600;
  color: #0a1628;
}

.db-content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.db-content-region + .db-content-region {
  margin-top: 1.75rem;
}

.db-content-kv {
  display: grid;
  grid-template-columns: minmax(120px, 34%) 1fr;
  gap: 0.75rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(10, 22, 40, 0.05);
}

.db-content-kv:last-child {
  border-bottom: none;
}

.db-content-kv-label {
  font-weight: 600;
  color: #0a1628;
}

.db-content-kv-value {
  color: #334155;
}

.db-content-kv-value p {
  margin: 0;
}

.db-content-kv-value p + p {
  margin-top: 0.85rem;
}

.db-content-labeled-text p {
  margin: 0;
}

.db-content-labeled-text p + p {
  margin-top: 0.85rem;
}

.db-content-table {
  width: 100%;
  border-collapse: collapse;
}

.db-content-table th,
.db-content-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(10, 22, 40, 0.08);
}

.db-page-body--ltr .db-content-table th,
.db-page-body--ltr .db-content-table td {
  text-align: left;
}

.db-page-body--rtl .db-content-table th,
.db-page-body--rtl .db-content-table td {
  text-align: right;
}

.db-content-table th {
  background: transparent;
  color: #0a1628;
  font-weight: 600;
}

.db-content-empty {
  color: #6b7280;
  text-align: center;
  padding: 3rem 1.25rem;
  font-style: italic;
}

@media (max-width: 768px) {
  .db-content-kv {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
}

/* ========== ABOUT PAGE (DB-driven sections + imagery) ========== */
#about-page-content,
#db-page-content {
  background: linear-gradient(180deg, #fafbfd 0%, #f0f4f8 100%);
}

.about-page-body {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 0 clamp(2rem, 5vw, 3.5rem);
}

.about-empty {
  color: #6b7280;
  text-align: center;
  padding: 3rem 1.25rem;
  font-style: italic;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.75rem, 4.5vw, 3.5rem);
  align-items: center;
  padding: clamp(2rem, 4vw, 3.25rem) 0;
  border-bottom: 1px solid rgba(10, 22, 40, 0.07);
  direction: ltr;
  unicode-bidi: isolate;
}

.about-section:last-of-type {
  border-bottom: none;
}

.about-section--image-left .about-section-media {
  order: 0;
}

.about-section--image-left .about-section-content {
  order: 1;
}

.about-section--image-right .about-section-media {
  order: 1;
}

.about-section--image-right .about-section-content {
  order: 0;
}

.about-section-media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 44px rgba(10, 22, 40, 0.12);
  min-height: 220px;
  aspect-ratio: 4 / 3;
  background: linear-gradient(145deg, rgba(10, 22, 40, 0.06) 0%, rgba(201, 168, 76, 0.16) 100%);
}

.about-section-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-section-media--broken img {
  display: none;
}

.about-section-media--broken::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(10, 22, 40, 0.08) 0%, rgba(201, 168, 76, 0.24) 100%);
}

.about-section-content {
  color: #0a1628;
  text-align: left;
}

.about-section-content .section-kicker {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 0.6rem;
}

.about-section-content h2 {
  position: relative;
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  font-weight: 700;
  margin: 0 0 1rem;
  color: #0a1628;
  line-height: 1.28;
}

.about-section-content h2::before {
  content: '';
  display: block;
  width: 2.75rem;
  height: 3px;
  border-radius: 999px;
  background: #c9a84c;
  margin-bottom: 0.8rem;
}

.about-section-content p {
  margin: 0 0 0.9rem;
  font-size: 1.05rem;
  line-height: 1.68;
  color: rgba(10, 22, 40, 0.9);
}

.about-page-body strong,
.db-content-card strong,
.db-content-kv-value strong,
.db-content-labeled-text strong {
  font-weight: 700;
}

.about-page-body u,
.db-content-card u,
.db-content-kv-value u,
.db-content-labeled-text u {
  text-underline-offset: 0.15em;
}

.about-section-content p:last-child {
  margin-bottom: 0;
}

.about-section-content .db-content-card,
.about-section-content .db-content-grid,
.about-section-content .db-content-list,
.about-section-content .db-content-region,
.about-section-content .db-content-card--table-wrap {
  margin-top: 0.75rem;
}

.about-section-content .db-content-card:first-child,
.about-section-content .db-content-grid:first-child,
.about-section-content .db-content-list:first-child,
.about-section-content .db-content-region:first-child,
.about-section-content .db-content-card--table-wrap:first-child {
  margin-top: 0;
}

.about-section-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0a1628;
  margin: 0 0 0.65rem;
}

.about-section-content h4 {
  font-size: 1.02rem;
  font-weight: 600;
  color: #0a1628;
  margin: 0 0 0.45rem;
}

.about-section-content .db-content-card p {
  font-size: 1rem;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .about-section {
    grid-template-columns: 1fr;
    gap: 1.35rem;
    padding: clamp(1.35rem, 4vw, 2rem) 0;
  }

  .about-section--image-left .about-section-media,
  .about-section--image-right .about-section-media,
  .about-section--image-left .about-section-content,
  .about-section--image-right .about-section-content {
    order: unset;
  }

  .about-section-media {
    aspect-ratio: 16 / 10;
    max-height: 300px;
    order: -1;
  }

  .about-section-content {
    order: 0;
  }

  .about-section--text-only .about-section-content {
    order: 0;
  }
}

.about-section--text-only {
  grid-template-columns: 1fr;
  max-width: 920px;
  margin-inline: auto;
}

.about-section--text-only .about-section-content {
  background: #ffffff;
  border: 1px solid rgba(10, 22, 40, 0.08);
  border-radius: 18px;
  box-shadow: 0 12px 40px rgba(10, 22, 40, 0.08);
  padding: clamp(1.5rem, 4vw, 2.35rem);
}

.content-section {
  margin-bottom: var(--spacing-lg);
}

.content-section h2 {
  margin-bottom: var(--spacing-md);
}

.content-section h3 {
  margin-bottom: var(--spacing-sm);
  color: var(--accent);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
}

.feature-item {
  background: var(--panel);
  border: 1px solid rgba(0, 48, 135, 0.1);
  border-radius: var(--radius);
  padding: var(--spacing-md);
}

.feature-item svg {
  width: 48px;
  height: 48px;
  fill: var(--accent);
  margin-bottom: var(--spacing-sm);
}

.feature-item h4 {
  margin-bottom: var(--spacing-xs);
  color: var(--text);
}

/* ========== FLEET TABLE ========== */
.fleet-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--spacing-md) 0;
  background: var(--panel);
  border-radius: var(--radius);
  overflow: hidden;
}

.fleet-table th,
.fleet-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(0, 48, 135, 0.1);
}

.fleet-table th {
  background: rgba(0, 48, 135, 0.1);
  color: var(--accent);
  font-weight: 600;
}

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

.fleet-table tr:hover {
  background: rgba(0, 48, 135, 0.03);
}

/* ========== CERTIFICATIONS ========== */
.certifications {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
  margin: var(--spacing-md) 0;
}

.cert-badge {
  padding: 1rem 2rem;
  background: var(--panel);
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent);
}

/* ========== PACKAGE CARDS (FLY & SPA) ========== */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-md);
}

.package-card {
  background: var(--panel);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
}

.package-card h3 {
  color: var(--gold);
  margin-bottom: var(--spacing-md);
  text-align: center;
  font-size: 2rem;
}

.package-card ul {
  list-style: none;
}

.package-card li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 48, 135, 0.1);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-muted);
}

.package-card li:last-child {
  border-bottom: none;
}

.package-card li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  font-size: 1.25rem;
}

/* ========== TOUR CARDS (SEE ISRAEL) ========== */
.region-section {
  margin-bottom: var(--spacing-xl);
}

.tour-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
}

.tour-card {
  background: var(--panel);
  border: 1px solid rgba(0, 48, 135, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--spacing-md);
  transition: var(--transition);
}

.tour-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 48, 135, 0.3);
}

.tour-card h4 {
  color: var(--text);
  margin-bottom: var(--spacing-sm);
}

/* ========== GALLERY PAGE ========== */
.gallery-tabs {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: var(--spacing-lg);
  flex-wrap: wrap;
}

.gallery-tab {
  padding: 1rem 2rem;
  background: #fff;
  border: 1px solid rgba(10, 22, 40, 0.15);
  border-radius: var(--radius);
  color: var(--text-muted);
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-tab:hover {
  border-color: #0a1628;
  color: #0a1628;
  background: rgba(10, 22, 40, 0.04);
}

.gallery-tab.active {
  background: #fff;
  border: 1px solid #0a1628;
  color: #0a1628;
  box-shadow: none;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.gallery-skeleton {
  background: var(--panel);
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  animation: skeleton-loading 1.5s infinite;
}

.gallery-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--muted);
  padding: 3rem 1.5rem;
  font-size: 1.05rem;
}

.gallery-error {
  color: #b45309;
}

/* ========== LIGHTBOX ========== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: var(--radius);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--text);
  font-size: 2rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-close {
  top: 1rem;
  right: 1rem;
}

.lightbox-prev {
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

/* ========== TOAST NOTIFICATIONS ========== */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  padding: 1rem 2rem;
  background: var(--panel);
  border: 1px solid rgba(0, 48, 135, 0.1);
  border-radius: var(--radius);
  color: var(--text);
  box-shadow: var(--shadow-lg);
  z-index: 3000;
  opacity: 0;
  transition: var(--transition);
  backdrop-filter: blur(20px);
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.toast.success {
  border-color: #10b981;
  background: rgba(16, 185, 129, 0.1);
}

.toast.error {
  border-color: #ef4444;
  background: rgba(239, 68, 68, 0.1);
}

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

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

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(0, 48, 135, 0.4);
  }
  50% {
    box-shadow: 0 4px 30px rgba(0, 48, 135, 0.7);
  }
}

@keyframes skeleton-loading {
  0% {
    opacity: 0.6;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    opacity: 0.6;
  }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1280px) {
  .navbar-menu,
  .nav-links {
    gap: 1.6rem;
    align-items: flex-start;
    text-align: left;
  }

  .navbar-menu > li,
  .nav-links > li {
    width: 100%;
  }

  .navbar-menu a,
  .nav-links a,
  .dropdown-toggle {
    display: flex;
    justify-content: flex-start;
    text-align: left;
    width: 100%;
  }

  .navbar-menu {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--nav-height));
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    padding: var(--spacing-lg);
    gap: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: var(--transition);
  }

  .navbar-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .navbar-toggle {
    display: flex;
    order: -1;
  }

  .dropdown-menu {
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    margin-top: 0.5rem;
    width: 100%;
    text-align: left;
  }

  .dropdown-menu a {
    display: flex;
    justify-content: flex-start;
    text-align: left;
  }

  .navbar-menu li.open > .dropdown-menu {
    display: block;
  }

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

  #contact .contact-info {
    order: 1;
  }

  #contact .contact-map-wrap {
    order: 2;
  }

  .floating-cta {
    bottom: 1rem;
    right: 1rem;
    left: auto;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  :root {
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
  }

  .navbar-logo-img {
    height: 64px;
  }

  .navbar-logo {
    max-width: min(400px, 58vw);
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .btn {
    width: 100%;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--spacing-md);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .fleet-table {
    font-size: 0.9rem;
  }

  .fleet-table th,
  .fleet-table td {
    padding: 0.75rem 0.5rem;
  }

  .contact-map {
    height: 300px;
  }

  .floating-cta {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    padding: 0;
    border-radius: 50%;
    bottom: 20px;
    right: 20px;
    left: auto;
    justify-content: center;
    gap: 0;
    font-size: 1.35rem;
    line-height: 1;
  }

  .floating-cta-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
  }
}

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

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

  .lightbox-prev {
    left: 0.5rem;
  }

  .lightbox-next {
    right: 0.5rem;
  }

  .lightbox-close,
  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
}
