/* Almazaj Tourism LLC — Professional Theme */

:root {
  --primary: #0c3d52;
  --primary-mid: #1a5f7a;
  --primary-dark: #072a38;
  --accent: #c4a035;
  --accent-light: #dbb94a;
  --accent-dark: #9a7b22;
  --text: #1e2d3a;
  --text-light: #5a6b7a;
  --text-muted: #8a97a3;
  --bg: #ffffff;
  --bg-alt: #f6f8fa;
  --bg-warm: #faf9f6;
  --border: #e4eaef;
  --border-light: #eef2f5;
  --shadow-sm: 0 2px 8px rgba(12, 61, 82, 0.06);
  --shadow: 0 8px 30px rgba(12, 61, 82, 0.1);
  --shadow-lg: 0 20px 50px rgba(12, 61, 82, 0.14);
  --radius: 14px;
  --radius-sm: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-display: 'Cormorant Garamond', Georgia, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

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

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

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

ul {
  list-style: none;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ── Top Bar ── */
.top-bar {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.8125rem;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.top-bar-left,
.top-bar-right,
.top-bar-center {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar a {
  color: rgba(255, 255, 255, 0.88);
  display: flex;
  align-items: center;
  gap: 7px;
}

.top-bar a:hover {
  color: var(--accent-light);
}

.top-bar svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: 0.75;
}

.top-bar-hours {
  display: flex;
  align-items: center;
  gap: 7px;
  opacity: 0.75;
}

/* ── Header ── */
.header {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
  padding-bottom: 18px;
}

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

.logo-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(145deg, var(--primary-mid), var(--primary-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  box-shadow: 0 4px 12px rgba(12, 61, 82, 0.25);
}

.logo-text h1 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.logo-text span {
  font-size: 0.6875rem;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 600;
}

.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 4px 0;
  letter-spacing: 0.01em;
}

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

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

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  background: var(--primary);
  color: white !important;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(12, 61, 82, 0.25);
}

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

.nav-cta:hover {
  background: var(--primary-mid);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(12, 61, 82, 0.3);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--primary);
  margin: 5px 0;
  transition: var(--transition);
  border-radius: 2px;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(7, 42, 56, 0.92) 0%, rgba(12, 61, 82, 0.75) 45%, rgba(12, 61, 82, 0.55) 100%),
    url('../images/1.jpeg') center/cover no-repeat;
}

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

.hero .container {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-content {
  color: white;
  max-width: 640px;
  padding: 60px 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-light);
  margin-bottom: 24px;
}

.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--accent);
}

.hero h2 {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 5.5vw, 4.25rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 16px;
  font-weight: 400;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.75;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--accent);
  color: var(--primary-dark);
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 160, 53, 0.35);
}

.btn-outline {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

/* ── Trust Bar ── */
.trust-bar {
  background: var(--primary);
  padding: 28px 0;
  border-bottom: 3px solid var(--accent);
}

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

.trust-item {
  text-align: center;
  color: white;
  padding: 0 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

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

.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-light);
  line-height: 1.2;
  margin-bottom: 4px;
}

.trust-item span {
  font-size: 0.8125rem;
  opacity: 0.8;
  letter-spacing: 0.03em;
}

/* ── Section Headers ── */
.section-header {
  text-align: center;
  margin-bottom: 52px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-dark);
  margin-bottom: 12px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.section-header p {
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1rem;
}

.section-header .view-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  color: var(--primary-mid);
  font-weight: 600;
  font-size: 0.9rem;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.section-header .view-all:hover {
  color: var(--accent-dark);
  border-bottom-color: var(--accent);
}

.section-divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  margin: 16px auto 0;
  border-radius: 2px;
}

/* ── Services ── */
.services {
  padding: 90px 0;
  background: var(--bg);
}

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

.service-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-mid), var(--accent));
  transform: scaleX(0);
  transition: transform var(--transition);
}

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

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 22px;
  background: linear-gradient(145deg, var(--bg-alt), var(--bg));
  border: 1px solid var(--border);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-mid);
  transition: var(--transition);
}

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

.service-icon svg {
  width: 26px;
  height: 26px;
}

.service-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ── Work Permit Visa ── */
.work-visa {
  padding: 90px 0;
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
}

.work-visa-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.work-visa-card {
  background: white;
  border-radius: var(--radius);
  padding: 36px 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.work-visa-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--visa-accent, var(--primary-mid));
}

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

.work-visa-card:first-child {
  --visa-accent: #21468b;
}

.work-visa-card:last-child {
  --visa-accent: #00247d;
}

.work-visa-flag {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.875rem;
  letter-spacing: 1px;
  color: white;
  margin-bottom: 20px;
}

.work-visa-flag--nl {
  background: linear-gradient(135deg, #ae1c28, #21468b);
}

.work-visa-flag--nz {
  background: linear-gradient(135deg, #00247d, #cc142b);
}

.work-visa-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.work-visa-card > p {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 22px;
}

.work-visa-list {
  list-style: none;
  margin-bottom: 28px;
}

.work-visa-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: var(--text);
}

.work-visa-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--visa-accent, var(--accent));
}

/* ── Slider / Posters ── */
.slider-section {
  padding: 90px 0;
  background: var(--bg-alt);
}

.slider {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.slider-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
  min-width: 100%;
  height: 540px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: 1px solid var(--border);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  box-shadow: var(--shadow);
  transition: var(--transition);
  z-index: 10;
}

.slider-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.slider-btn.prev { left: 20px; }
.slider-btn.next { right: 20px; }

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

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

.slider-dot.active {
  background: var(--primary);
  width: 24px;
  border-radius: 4px;
}

/* ── Quick Links ── */
.quick-links {
  padding: 90px 0;
  background: var(--bg-warm);
}

.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.quick-link-card {
  background: white;
  color: var(--text);
  padding: 32px 28px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: var(--transition);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.quick-link-card::after {
  content: '→';
  position: absolute;
  right: 28px;
  font-size: 1.25rem;
  color: var(--accent);
  opacity: 0;
  transform: translateX(-8px);
  transition: var(--transition);
}

.quick-link-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--accent);
}

.quick-link-card:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.quick-link-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(145deg, var(--primary), var(--primary-mid));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.quick-link-icon svg {
  width: 24px;
  height: 24px;
  color: white;
}

.quick-link-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
}

.quick-link-card p {
  font-size: 0.8125rem;
  color: var(--text-light);
  margin-top: 3px;
}

/* ── Holiday Types ── */
.holiday-types {
  display: none;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.holiday-types-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, #f0f6f9 0%, #faf9f6 40%, #eef5f0 100%);
  z-index: 0;
}

.holiday-types-bg::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(196, 160, 53, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.holiday-types-bg::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -60px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(26, 95, 122, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

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

.holiday-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 44px;
}

.holiday-filter {
  padding: 10px 20px;
  border: 1px solid var(--border);
  background: white;
  border-radius: 50px;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.02em;
}

.holiday-filter:hover {
  border-color: var(--primary-mid);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.holiday-filter.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  box-shadow: 0 4px 16px rgba(12, 61, 82, 0.3);
}

.holiday-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.holiday-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.4s ease, box-shadow 0.4s ease, opacity 0.35s ease;
  display: block;
  position: relative;
  opacity: 1;
  transform: translateY(0);
}

.holiday-card.hidden {
  display: none;
}

.holiday-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--card-accent, var(--accent));
  z-index: 2;
  transition: height var(--transition);
}

.holiday-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(12, 61, 82, 0.18);
  border-color: transparent;
}

.holiday-card:hover::before {
  height: 6px;
}

.holiday-card--fitness  { --card-accent: #e85d4c; }
.holiday-card--adventure { --card-accent: #2ecc71; }
.holiday-card--wellness  { --card-accent: #9b59b6; }
.holiday-card--luxury    { --card-accent: #c4a035; }
.holiday-card--water     { --card-accent: #3498db; }
.holiday-card--family    { --card-accent: #f39c12; }

.holiday-card:nth-child(1) { animation: holidayIn 0.6s ease 0.05s both; }
.holiday-card:nth-child(2) { animation: holidayIn 0.6s ease 0.15s both; }
.holiday-card:nth-child(3) { animation: holidayIn 0.6s ease 0.25s both; }
.holiday-card:nth-child(4) { animation: holidayIn 0.6s ease 0.35s both; }
.holiday-card:nth-child(5) { animation: holidayIn 0.6s ease 0.45s both; }
.holiday-card:nth-child(6) { animation: holidayIn 0.6s ease 0.55s both; }

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

.holiday-types.visible .holiday-card {
  animation-play-state: running;
}

.holiday-card-img {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.holiday-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(7, 42, 56, 0.75) 0%,
    rgba(7, 42, 56, 0.15) 50%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  transition: background var(--transition);
}

.holiday-card:hover .holiday-card-overlay {
  background: linear-gradient(
    to top,
    rgba(7, 42, 56, 0.88) 0%,
    rgba(7, 42, 56, 0.35) 60%,
    rgba(7, 42, 56, 0.1) 100%
  );
}

.holiday-card-icon {
  width: 44px;
  height: 44px;
  background: var(--card-accent, var(--accent));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  transition: transform var(--transition);
}

.holiday-card:hover .holiday-card-icon {
  transform: scale(1.1) rotate(-4deg);
}

.holiday-card-icon svg {
  width: 22px;
  height: 22px;
}

.holiday-card-tag {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  color: white;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.holiday-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.holiday-card-body {
  padding: 24px 26px 28px;
}

.holiday-card h4 {
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  transition: color var(--transition);
}

.holiday-card:hover h4 {
  color: var(--card-accent, var(--primary-mid));
}

.holiday-card p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 16px;
}

.holiday-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--card-accent, var(--primary-mid));
  letter-spacing: 0.02em;
  transition: gap var(--transition);
}

.holiday-card-link span {
  transition: transform var(--transition);
}

.holiday-card:hover .holiday-card-link {
  gap: 10px;
}

.holiday-card:hover .holiday-card-link span {
  transform: translateX(4px);
}

/* ── Destinations ── */
.destinations {
  padding: 90px 0;
  background: var(--bg-alt);
}

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

.destination-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 300px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.destination-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 42, 56, 0.88) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  transition: var(--transition);
}

.destination-card:hover .destination-overlay {
  background: linear-gradient(to top, rgba(7, 42, 56, 0.95) 0%, rgba(7, 42, 56, 0.2) 100%);
}

.destination-overlay h3 {
  color: white;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
}

.destination-overlay span {
  display: block;
  font-size: 0.75rem;
  color: var(--accent-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 4px;
  font-weight: 600;
}

/* ── Deals ── */
.deals {
  padding: 90px 0;
  background: var(--bg);
}

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

.deal-card {
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}

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

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

.deal-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.deal-country {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--accent);
  color: var(--primary-dark);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.deal-body {
  padding: 26px 28px;
}

.deal-body h4 {
  color: var(--primary);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
}

.deal-meta {
  padding-top: 12px;
  border-top: 1px solid var(--border-light);
}

.deal-location {
  color: var(--text-light);
  font-size: 0.875rem;
}

.deal-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 14px;
  color: var(--primary-mid);
  font-weight: 600;
  font-size: 0.875rem;
  transition: var(--transition);
}

.deal-link:hover {
  color: var(--accent-dark);
  gap: 8px;
}

/* ── CTA Banner ── */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-mid) 100%);
  position: relative;
  overflow: hidden;
}

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

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
}

.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 14px;
}

.cta-inner p {
  opacity: 0.85;
  margin-bottom: 32px;
  font-size: 1.05rem;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Gallery Page ── */
.gallery-page {
  padding: 70px 0 90px;
  background: var(--bg-alt);
}

.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-mid) 60%, var(--primary) 100%);
  color: white;
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light), var(--accent));
}

.page-hero .section-eyebrow {
  color: var(--accent-light);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-weight: 700;
  margin-bottom: 14px;
}

.page-hero p {
  opacity: 0.85;
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.posters-grid {
  grid-template-columns: repeat(3, 1fr);
}

.posters-grid .gallery-item {
  aspect-ratio: 4/5;
  background: white;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.posters-grid .gallery-item img {
  object-fit: contain;
}

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 61, 82, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay svg {
  width: 36px;
  height: 36px;
  color: white;
}

/* ── Contact Page ── */
.contact-page {
  padding: 70px 0 90px;
  background: var(--bg-alt);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
}

.contact-info-card {
  background: white;
  border-radius: var(--radius);
  padding: 40px;
  border: 1px solid var(--border);
}

.contact-info-card h3 {
  font-family: var(--font-display);
  color: var(--primary);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 28px;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 26px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--border-light);
}

.contact-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.contact-item-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(145deg, var(--primary), var(--primary-mid));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

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

.contact-item h4 {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 5px;
  font-weight: 600;
}

.contact-item p,
.contact-item a {
  font-weight: 600;
  color: var(--text);
  font-size: 0.95rem;
}

.contact-item a:hover {
  color: var(--primary-mid);
}

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

.contact-form h3 {
  font-family: var(--font-display);
  color: var(--primary);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 28px;
}

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

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.8125rem;
  color: var(--text);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.9375rem;
  transition: var(--transition);
  background: var(--bg-alt);
  color: var(--text);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-mid);
  background: white;
  box-shadow: 0 0 0 3px rgba(26, 95, 122, 0.1);
}

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

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

/* ── Footer ── */
.footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.82);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo {
  margin-bottom: 20px;
}

.footer-brand .logo-text h1 {
  color: white;
}

.footer-brand .logo-text span {
  color: var(--accent-light);
}

.footer-brand p {
  font-size: 0.9rem;
  opacity: 0.75;
  line-height: 1.75;
  max-width: 300px;
}

.footer h4 {
  color: white;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 22px;
}

.footer-links li {
  margin-bottom: 11px;
}

.footer-links a {
  opacity: 0.75;
  font-size: 0.9rem;
  transition: var(--transition);
}

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

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer-contact svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 4px;
  color: var(--accent);
}

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

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.8125rem;
  opacity: 0.55;
  letter-spacing: 0.02em;
}

/* ── Lightbox ── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(7, 42, 56, 0.95);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

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

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .work-visa-grid {
    grid-template-columns: 1fr;
  }

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

  .trust-item:nth-child(2) {
    border-right: none;
  }

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

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

@media (max-width: 768px) {
  .top-bar-center {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-cta {
    display: none;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 32px 32px;
    box-shadow: var(--shadow-lg);
    transition: right var(--transition);
    gap: 0;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid var(--border-light);
  }

  .nav-links a {
    display: block;
    padding: 16px 0;
    font-size: 1rem;
  }

  .hero {
    min-height: 75vh;
  }

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

  .trust-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 16px;
  }

  .services-grid,
  .holiday-filters {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .holiday-filters::-webkit-scrollbar {
    display: none;
  }

  .holiday-filter {
    flex-shrink: 0;
  }

  .holiday-grid,
  .deals-grid,
  .quick-links-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .slide {
    height: 400px;
  }

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

@media (max-width: 480px) {
  .posters-grid,
  .destinations-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .top-bar .container {
    justify-content: center;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    justify-content: center;
    width: 100%;
  }
}
