/* ========================================
   BAKISA TRAVEL AGENCY — Premium Stylesheet
   ======================================== */

/* --- CSS Variables --- */
:root {
  --deep-charcoal: #0F0F0F;
  --warm-sand: #EDE3D3;
  --earth-brown: #7A5C3E;
  --soft-gold: #C6A96B;
  --sand-light: #F5F0E8;
  --overlay-dark: rgba(15, 15, 15, 0.55);
  --overlay-darker: rgba(15, 15, 15, 0.7);

  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', 'Manrope', system-ui, sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 10rem;

  --max-width: 1280px;
  --max-width-narrow: 860px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  color: var(--deep-charcoal);
  background-color: var(--warm-sand);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

h4 {
  font-size: 1.25rem;
}

p {
  font-size: 1rem;
  max-width: 600px;
  color: inherit;
}

.text-gold { color: var(--soft-gold); }
.text-sand { color: var(--warm-sand); }
.text-brown { color: var(--earth-brown); }

/* --- Utility --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

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

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

.section--dark {
  background-color: var(--deep-charcoal);
  color: var(--warm-sand);
}

.section--sand {
  background-color: var(--warm-sand);
}

.section--sand-light {
  background-color: var(--sand-light);
}

.gold-line {
  width: 60px;
  height: 1px;
  background: var(--soft-gold);
  margin: var(--space-md) 0;
}

.gold-line--center {
  margin-left: auto;
  margin-right: auto;
}

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

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

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
}

.btn--gold {
  background: var(--soft-gold);
  color: var(--deep-charcoal);
}

.btn--gold:hover {
  background: #d4b97a;
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  border: 1px solid var(--soft-gold);
  color: var(--soft-gold);
}

.btn--outline:hover {
  background: var(--soft-gold);
  color: var(--deep-charcoal);
}

.btn--outline-dark {
  background: transparent;
  border: 1px solid var(--earth-brown);
  color: var(--earth-brown);
}

.btn--outline-dark:hover {
  background: var(--earth-brown);
  color: var(--warm-sand);
}

/* --- Header / Navigation --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all 0.4s ease;
}

.header--scrolled {
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.75rem 0;
  box-shadow: 0 1px 0 rgba(198, 169, 107, 0.15);
}

.header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo img {
  height: 137px;
  width: auto;
  transition: height 0.4s ease, filter 0.4s ease, opacity 0.4s ease;
}

.header--scrolled .header__logo img {
  height: 70px;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.header__nav a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm-sand);
  transition: color 0.3s ease;
  position: relative;
}

.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--soft-gold);
  transition: width 0.3s ease;
}

.header__nav a:hover,
.header__nav a.active {
  color: var(--soft-gold);
}

.header__nav a:hover::after,
.header__nav a.active::after {
  width: 100%;
}

.header__cta {
  margin-left: 1rem;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.menu-toggle span {
  width: 24px;
  height: 1.5px;
  background: var(--warm-sand);
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}

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

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 15, 15, 0.35) 0%,
    rgba(15, 15, 15, 0.5) 50%,
    rgba(15, 15, 15, 0.7) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--warm-sand);
  max-width: 800px;
  padding: 0 var(--space-md);
}

.hero__tagline {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--soft-gold);
  margin-bottom: var(--space-sm);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease 0.5s forwards;
}

.hero__title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1.05;
  margin-bottom: var(--space-md);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease 0.8s forwards;
}

.hero__subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 300;
  font-style: italic;
  margin-bottom: var(--space-lg);
  opacity: 0.85;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease 1.1s forwards;
}

.hero__cta {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease 1.4s forwards;
  text-align: center;
  display: flex;
  justify-content: center;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--warm-sand);
  opacity: 0;
  animation: fadeUp 1s ease 1.8s forwards;
}

.hero__scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--soft-gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* Page Hero (for inner pages) */
.page-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 15, 15, 0.2) 0%,
    rgba(15, 15, 15, 0.65) 100%
  );
}

.page-hero__content {
  position: relative;
  z-index: 2;
  padding: var(--space-xl) var(--space-md) var(--space-lg);
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.page-hero__content h1 {
  color: var(--warm-sand);
  margin-bottom: var(--space-xs);
}

.page-hero__content p {
  color: rgba(237, 227, 211, 0.8);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
}

/* --- Destination Cards --- */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: var(--space-lg);
}

.destination-card {
  position: relative;
  height: 520px;
  overflow: hidden;
  cursor: pointer;
}

.destination-card__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s ease;
}

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

.destination-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 15, 15, 0.8) 0%,
    rgba(15, 15, 15, 0.1) 50%,
    transparent 100%
  );
  transition: background 0.4s ease;
}

.destination-card:hover .destination-card__overlay {
  background: linear-gradient(
    to top,
    rgba(15, 15, 15, 0.85) 0%,
    rgba(15, 15, 15, 0.25) 60%,
    rgba(15, 15, 15, 0.1) 100%
  );
}

.destination-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-md);
  color: var(--warm-sand);
  z-index: 2;
}

.destination-card__country {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--soft-gold);
  margin-bottom: 0.5rem;
}

.destination-card__title {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

.destination-card__desc {
  font-size: 0.9rem;
  opacity: 0;
  max-height: 0;
  transition: all 0.5s ease;
  color: rgba(237, 227, 211, 0.8);
}

.destination-card:hover .destination-card__desc {
  opacity: 1;
  max-height: 100px;
  margin-bottom: 1rem;
}

.destination-card__link {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--soft-gold);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease 0.1s;
}

.destination-card:hover .destination-card__link {
  opacity: 1;
  transform: translateY(0);
}

.destination-card__link svg {
  width: 16px;
  transition: transform 0.3s ease;
}

.destination-card__link:hover svg {
  transform: translateX(4px);
}

/* --- Services / Experiences --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.service-card {
  padding: var(--space-lg) var(--space-md);
  border: 1px solid rgba(198, 169, 107, 0.15);
  transition: all 0.4s ease;
  background: transparent;
}

.section--dark .service-card {
  border-color: rgba(198, 169, 107, 0.1);
}

.service-card:hover {
  border-color: var(--soft-gold);
  transform: translateY(-4px);
}

.service-card__icon {
  width: 40px;
  height: 40px;
  margin-bottom: var(--space-md);
  color: var(--soft-gold);
}

.service-card__icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--soft-gold);
  fill: none;
  stroke-width: 1.2;
}

.service-card h4 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: var(--space-sm);
}

.service-card p {
  font-size: 0.9rem;
  opacity: 0.75;
  line-height: 1.7;
}

/* --- CTA Section --- */
.cta-section {
  position: relative;
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

.cta-section__bg {
  position: absolute;
  inset: -20% 0;
  background-size: cover;
  background-position: center;
}

.cta-section__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 15, 15, 0.7);
}

.cta-section__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--warm-sand);
}

.cta-section__content h2 {
  margin-bottom: var(--space-sm);
}

.cta-section__content p {
  margin: 0 auto var(--space-lg);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  opacity: 0.85;
}

/* --- Trust Strip --- */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  text-align: center;
  padding: var(--space-lg) 0;
}

.trust-item__number {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  color: var(--soft-gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.trust-item__label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* --- Destination Detail Sections --- */
.dest-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.dest-section--reverse {
  direction: rtl;
}

.dest-section--reverse > * {
  direction: ltr;
}

.dest-section__image {
  background-size: cover;
  background-position: center;
  min-height: 400px;
}

.dest-section__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-xl);
}

.dest-section__content .overline {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--soft-gold);
  margin-bottom: var(--space-sm);
}

.dest-section__content h3 {
  margin-bottom: var(--space-sm);
}

.dest-section__content p {
  opacity: 0.8;
  margin-bottom: var(--space-md);
}

/* Highlight tags */
.highlight-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: var(--space-sm);
}

.highlight-tag {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(198, 169, 107, 0.3);
  color: var(--earth-brown);
}

.section--dark .highlight-tag {
  color: var(--warm-sand);
  border-color: rgba(237, 227, 211, 0.2);
}

/* --- Experience Cards (larger format) --- */
.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.experience-card {
  position: relative;
  height: 380px;
  overflow: hidden;
  cursor: pointer;
}

.experience-card__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s ease;
}

.experience-card:hover .experience-card__img {
  transform: scale(1.06);
}

.experience-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 15, 15, 0.75), transparent 60%);
}

.experience-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-md);
  color: var(--warm-sand);
}

.experience-card__content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.experience-card__content p {
  font-size: 0.88rem;
  opacity: 0.8;
  max-width: 400px;
}

/* --- Visa Section --- */
.visa-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.visa-card {
  padding: var(--space-lg);
  background: var(--sand-light);
  border-left: 2px solid var(--soft-gold);
}

.section--dark .visa-card {
  background: rgba(237, 227, 211, 0.04);
}

.visa-card h4 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  margin-bottom: var(--space-sm);
}

.visa-card p {
  font-size: 0.9rem;
  opacity: 0.75;
  margin-bottom: var(--space-sm);
}

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

.visa-card ul li {
  font-size: 0.88rem;
  padding: 0.35rem 0;
  padding-left: 1.25rem;
  position: relative;
  opacity: 0.8;
}

.visa-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 1px;
  background: var(--soft-gold);
}

/* --- About --- */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-split__image {
  height: 550px;
  background-size: cover;
  background-position: center;
}

.about-split__content h2 {
  margin-bottom: var(--space-sm);
}

.about-split__content .gold-line {
  margin-bottom: var(--space-md);
}

.about-split__content p {
  margin-bottom: var(--space-sm);
  opacity: 0.8;
}

/* Testimonials */
.testimonials {
  margin-top: var(--space-xl);
}

.testimonial {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: var(--space-lg) var(--space-md);
}

.testimonial__quote {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: var(--space-md);
  position: relative;
}

.testimonial__quote::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--soft-gold);
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.3;
  line-height: 1;
}

.testimonial__author {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.6;
}

/* --- Contact Form --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  margin-top: var(--space-lg);
}

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

.form-group label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--earth-brown);
}

.section--dark .form-group label {
  color: var(--warm-sand);
  opacity: 0.7;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 0;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  border: none;
  border-bottom: 1px solid rgba(122, 92, 62, 0.25);
  background: transparent;
  color: var(--deep-charcoal);
  outline: none;
  transition: border-color 0.3s ease;
}

.section--dark .form-group input,
.section--dark .form-group select,
.section--dark .form-group textarea {
  border-color: rgba(237, 227, 211, 0.15);
  color: var(--warm-sand);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--soft-gold);
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info__item {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(122, 92, 62, 0.1);
}

.section--dark .contact-info__item {
  border-color: rgba(237, 227, 211, 0.08);
}

.contact-info__item:last-child {
  border-bottom: none;
}

.contact-info__icon {
  width: 20px;
  height: 20px;
  color: var(--soft-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info__icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--soft-gold);
  fill: none;
  stroke-width: 1.5;
}

.contact-info__text h4 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 0.25rem;
}

.contact-info__text p {
  font-size: 0.95rem;
  opacity: 0.85;
}

/* Map */
.contact-map {
  width: 100%;
  height: 350px;
  margin-top: var(--space-lg);
  filter: grayscale(0.6) contrast(1.1);
}

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

/* --- Footer --- */
.footer {
  background: var(--deep-charcoal);
  color: var(--warm-sand);
  padding: var(--space-xl) 0 var(--space-md);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(237, 227, 211, 0.08);
}

.footer__brand img {
  height: 135px;
  width: auto;
  margin-bottom: var(--space-sm);
  opacity: 0.85;
}

.footer__brand p {
  font-size: 0.88rem;
  opacity: 0.6;
  max-width: 280px;
  line-height: 1.7;
}

.footer__heading {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--soft-gold);
  margin-bottom: var(--space-md);
}

.footer__links li {
  margin-bottom: 0.75rem;
}

.footer__links a {
  font-size: 0.88rem;
  opacity: 0.55;
  transition: opacity 0.3s ease, color 0.3s ease;
}

.footer__links a:hover {
  opacity: 1;
  color: var(--soft-gold);
}

.footer__contact p {
  font-size: 0.88rem;
  opacity: 0.55;
  margin-bottom: 0.5rem;
}

.footer__socials {
  display: flex;
  gap: 1rem;
  margin-top: var(--space-md);
}

.footer__socials a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(237, 227, 211, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer__socials a:hover {
  border-color: var(--soft-gold);
  background: rgba(198, 169, 107, 0.1);
}

.footer__socials svg {
  width: 16px;
  height: 16px;
  fill: var(--warm-sand);
  opacity: 0.6;
}

.footer__socials a:hover svg {
  opacity: 1;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-md);
  font-size: 0.78rem;
  opacity: 0.4;
}

/* --- WhatsApp Floating Button --- */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.45);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

/* --- Animations --- */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .destinations-grid {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }

  .destination-card {
    height: 380px;
  }

  .destination-card__desc {
    opacity: 1;
    max-height: unset;
    margin-bottom: 0.75rem;
  }

  .destination-card__link {
    opacity: 1;
    transform: translateY(0);
  }

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

  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }

  .dest-section {
    grid-template-columns: 1fr;
  }

  .dest-section--reverse {
    direction: ltr;
  }

  .dest-section__image {
    min-height: 300px;
  }

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

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

  .about-split__image {
    height: 350px;
  }

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

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }
}

@media (max-width: 768px) {
  :root {
    --space-xl: 4rem;
    --space-2xl: 6rem;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 360px;
    height: 100vh;
    background: var(--deep-charcoal);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: var(--space-lg);
    gap: 1.5rem;
    transition: right 0.4s ease;
  }

  .header__nav.open {
    right: 0;
  }

  .header__nav a {
    font-size: 1rem;
    letter-spacing: 0.1em;
  }

  .header__cta {
    margin-left: 0;
    margin-top: var(--space-sm);
  }

  .menu-toggle {
    display: flex;
  }

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

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

  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-xs);
    text-align: center;
  }

  .page-hero {
    height: 50vh;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 2.4rem;
  }

  .trust-strip {
    grid-template-columns: 1fr 1fr;
  }
}
