/* ============================================================
   TAQFA INTERNATIONAL — Professional Stylesheet
   ============================================================ */

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

:root {
  --red:        #D83B2A;
  --red-dark:   #b8301f;
  --red-light:  #fdf1ef;
  --navy:       #0d1b2a;
  --text:       #2d3748;
  --text-muted: #718096;
  --bg:         #ffffff;
  --bg-soft:    #f7f8fa;
  --border:     #e8ecf0;
  --white:      #ffffff;

  --font-body:  'Plus Jakarta Sans', sans-serif;
  --font-head:  'Cormorant Garamond', serif;

  --shadow-sm:  0 1px 4px rgba(0,0,0,.06);
  --shadow-md:  0 4px 20px rgba(0,0,0,.09);
  --shadow-lg:  0 12px 48px rgba(0,0,0,.13);
  --shadow-xl:  0 24px 64px rgba(0,0,0,.16);

  --radius:     10px;
  --radius-lg:  18px;
  --radius-xl:  28px;
  --ease:       cubic-bezier(.4,0,.2,1);
  --dur:        .28s;

  --topbar-h:   38px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  background: var(--bg);
}

a   { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul  { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.section    { padding: 100px 0; }
.bg-light   { background: var(--bg-soft); }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 30px; border-radius: var(--radius);
  font-family: var(--font-body); font-size: .9rem; font-weight: 700;
  letter-spacing: .02em; cursor: pointer; border: 2px solid transparent;
  transition: all var(--dur) var(--ease); white-space: nowrap;
}
.btn-primary { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-primary:hover {
  background: var(--red-dark); border-color: var(--red-dark);
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(216,59,42,.32);
}
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.55); }
.btn-ghost:hover { background: rgba(255,255,255,.12); border-color: var(--white); }
.btn-full { width: 100%; }

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

.section-eyebrow {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin-bottom: 16px;
  font-size: .78rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--red);
}
.section-eyebrow span { display: block; width: 36px; height: 2px; background: var(--red); border-radius: 2px; }
.section-eyebrow.left { justify-content: flex-start; }

.section-header h2, .why-content h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.2vw, 2.9rem);
  font-weight: 700; color: var(--navy); line-height: 1.18; margin-bottom: 16px;
}
.section-header p { color: var(--text-muted); font-size: 1.02rem; max-width: 540px; margin: 0 auto; }

/* ── Top Bar ────────────────────────────────────────────────── */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  background: var(--navy);
  color: rgba(255,255,255,.75);
  font-size: .8rem;
  padding: 9px 0;
  transition: transform .35s var(--ease);
}
.topbar.hidden { transform: translateY(-100%); }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; }
.topbar-left  { display: flex; gap: 28px; }
.topbar-left span { display: flex; align-items: center; gap: 7px; }
.topbar-left i { color: var(--red); font-size: .85rem; }
.topbar-right { display: flex; gap: 10px; }
.topbar-right a {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.75); font-size: .82rem;
  transition: all var(--dur);
}
.topbar-right a:hover { background: var(--red); color: white; }

/* ── Navbar ─────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: var(--topbar-h);   /* sits just below the topbar */
  left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: transparent;
  transition: top .35s var(--ease),
              background .35s var(--ease),
              padding .35s var(--ease),
              box-shadow .35s var(--ease),
              border-color .35s var(--ease);
}
/* scrolled state — topbar hidden, navbar drops to top with glass */
.navbar.scrolled {
  top: 0;
  background: rgba(13, 27, 42, .55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding: 12px 0;
  box-shadow: 0 4px 32px rgba(0,0,0,.25);
}

.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.nav-logo img {
  height: 46px; width: auto;
  background: var(--white); padding: 4px 10px;
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
}

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  padding: 8px 15px; border-radius: 8px;
  font-size: .88rem; font-weight: 600;
  color: rgba(255,255,255,.88); letter-spacing: .01em;
  transition: all var(--dur);
}
.navbar.scrolled .nav-links a { color: rgba(255,255,255,.9); }
.nav-links a:hover,
.navbar.scrolled .nav-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,.15);
}

.nav-cta { padding: 10px 22px; font-size: .85rem; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px; transition: all .3s;
}
.navbar.scrolled .hamburger span { background: var(--white); }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?w=1800&q=85')
    center / cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(13,27,42,.95) 0%,
    rgba(13,27,42,.82) 55%,
    rgba(13,27,42,.5) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  /* top padding clears: topbar (38px) + navbar (~76px) + breathing room */
  padding: 160px 28px 80px;
  width: 100%; max-width: 1200px; margin: 0 auto;
}

.hero-eyebrow {
  display: flex; align-items: center; gap: 14px; margin-bottom: 28px;
  font-size: .78rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(255,255,255,.75);
}
.eyebrow-line { display: block; width: 48px; height: 2px; background: rgba(255,255,255,.5); }

.hero-text h1 {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 700; color: var(--white); line-height: 1.1;
  margin-bottom: 24px; max-width: 680px;
}
.hero-text h1 em { font-style: italic; color: #ff7c6e; }

.hero-text p {
  font-size: 1.05rem; color: rgba(255,255,255,.78);
  max-width: 560px; margin-bottom: 40px; line-height: 1.8;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 60px; }

/* Stats strip */
.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  max-width: 680px;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg); overflow: hidden;
}
.stat-card {
  padding: 20px 24px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.1);
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.stat-card:last-child { border-right: none; }
.stat-card i      { font-size: 1.2rem; color: rgba(255,255,255,.7); margin-bottom: 6px; }
.stat-card strong { font-size: 1.45rem; font-weight: 800; color: var(--white); line-height: 1; }
.stat-card span   { font-size: .72rem; color: rgba(255,255,255,.6); letter-spacing: .04em; }

.hero-scroll-btn {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2; width: 42px; height: 42px;
  border: 2px solid rgba(255,255,255,.25); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7); font-size: .85rem;
  animation: scrollBounce 2.2s ease-in-out infinite;
  transition: all var(--dur);
}
.hero-scroll-btn:hover { border-color: white; color: white; }
@keyframes scrollBounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%     { transform: translateX(-50%) translateY(7px); }
}

/* ── Ticker ─────────────────────────────────────────────────── */
.ticker-bar {
  background: var(--red); display: flex; align-items: stretch;
  overflow: hidden; height: 48px;
}
.ticker-label {
  flex-shrink: 0; background: var(--red-dark);
  color: white; font-size: .78rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 0 22px;
  display: flex; align-items: center; gap: 8px;
  white-space: nowrap;
}
.ticker-track-wrapper { flex: 1; overflow: hidden; display: flex; align-items: center; }
.ticker-track {
  display: flex; gap: 48px;
  animation: tickerMove 30s linear infinite;
  width: max-content;
}
.ticker-track span {
  color: rgba(255,255,255,.92); font-size: .84rem; font-weight: 600;
  white-space: nowrap; display: flex; align-items: center; gap: 8px;
}
.ticker-track i { font-size: .88rem; opacity: .85; }
@keyframes tickerMove { from { transform: translateX(0); } to { transform: translateX(-50%); } }

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

.service-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 26px 28px;
  transition: all var(--dur) var(--ease);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.service-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::after { transform: scaleX(1); }

.service-icon-wrap {
  width: 54px; height: 54px; border-radius: 14px;
  background: var(--red-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; transition: all var(--dur);
}
.service-card:hover .service-icon-wrap { background: var(--red); }
.service-icon-wrap i { font-size: 1.3rem; color: var(--red); transition: color var(--dur); }
.service-card:hover .service-icon-wrap i { color: var(--white); }

.service-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.service-card p  { font-size: .86rem; color: var(--text-muted); line-height: 1.7; flex: 1; margin-bottom: 18px; }

.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .84rem; font-weight: 700; color: var(--red); margin-top: auto;
}
.service-link i { font-size: .78rem; transition: transform var(--dur); }
.service-link:hover i { transform: translateX(4px); }

/* ── Destinations ────────────────────────────────────────────── */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 16px;
}
.dest-tall { grid-row: 1 / 3; }

.dest-card {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; background-size: cover; background-position: center;
  cursor: pointer; transition: transform var(--dur) var(--ease);
}
.dest-card:hover { transform: scale(1.025); }
.dest-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,.82) 0%, transparent 60%);
  transition: opacity var(--dur);
}
.dest-card:hover .dest-overlay { opacity: .9; }

.dest-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 22px 20px; }
.dest-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--red); color: var(--white);
  font-size: .7rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 50px; margin-bottom: 8px;
}
.dest-body h3 { font-size: 1.25rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.dest-body p  { font-size: .83rem; color: rgba(255,255,255,.75); display: flex; align-items: center; gap: 6px; }
.dest-body p i { color: rgba(255,255,255,.9); }

/* ── Why Us ──────────────────────────────────────────────────── */
.why-section { background: var(--navy); position: relative; }
.why-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 10% 50%, rgba(216,59,42,.08) 0%, transparent 60%);
}

.why-inner {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 72px; align-items: center; position: relative; z-index: 1;
}

.why-visual { position: relative; }

.why-img-wrap {
  background: white; border-radius: var(--radius-xl);
  padding: 32px; box-shadow: var(--shadow-xl);
  display: flex; align-items: center; justify-content: center;
}
.why-img-wrap img { width: 100%; border-radius: var(--radius); }

/* Float cards sit inside the image box at bottom corners */
.why-float-card {
  position: absolute;
  background: var(--white); border-radius: var(--radius);
  padding: 13px 16px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-lg);
  min-width: 180px;
  bottom: 48px;                /* above the image box bottom edge */
}
.why-float-card:first-of-type { left: -16px; bottom: auto; top: 48px; }
.why-float-bottom             { right: -16px; }
.why-float-card > i { font-size: 1.3rem; color: var(--red); flex-shrink: 0; }
.why-float-card strong { display: block; font-size: .87rem; font-weight: 700; color: var(--navy); line-height: 1.2; }
.why-float-card span  { font-size: .75rem; color: var(--text-muted); }

.why-content .section-eyebrow       { color: rgba(255,255,255,.7); }
.why-content .section-eyebrow span  { background: rgba(255,255,255,.5); }
.why-content h2      { color: var(--white); margin: 14px 0 16px; }
.why-intro { color: rgba(255,255,255,.62); margin-bottom: 34px; font-size: .97rem; }

.why-list { display: flex; flex-direction: column; gap: 20px; }
.why-list li { display: flex; gap: 16px; align-items: flex-start; }

.why-icon-wrap {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(216,59,42,.18);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.why-icon-wrap i { color: var(--red); font-size: 1rem; }

.why-text strong { display: block; font-size: .94rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.why-text p      { font-size: .85rem; color: rgba(255,255,255,.52); line-height: 1.65; }

/* ── Packages ────────────────────────────────────────────────── */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px; align-items: start;
}

.pkg-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all var(--dur) var(--ease);
}
.pkg-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.pkg-featured { border: 2px solid var(--red); }

.pkg-header {
  padding: 26px 22px;
  display: flex; align-items: flex-start; justify-content: space-between;
}
.pkg-header-1 { background: linear-gradient(135deg, #1a3a5c, #0d1b2a); }
.pkg-header-2 { background: linear-gradient(135deg, #8b1a10, #d83b2a); }
.pkg-header-3 { background: linear-gradient(135deg, #1a4a2e, #2d7a4a); }
.pkg-header-4 { background: linear-gradient(135deg, #4a2d1a, #c9a84c); }

.pkg-icon {
  width: 50px; height: 50px; border-radius: 12px;
  background: rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
}
.pkg-icon i { font-size: 1.35rem; color: var(--white); }

.pkg-label {
  font-size: .68rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.15); padding: 5px 10px; border-radius: 50px;
}

.pkg-body { padding: 22px; }
.pkg-body h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 5px; }

.pkg-duration {
  font-size: .8rem; color: var(--text-muted);
  display: flex; align-items: center; gap: 6px; margin-bottom: 18px;
}
.pkg-features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.pkg-features li {
  font-size: .84rem; color: var(--text);
  display: flex; align-items: center; gap: 8px;
}
.pkg-features li i { color: var(--red); font-size: .78rem; flex-shrink: 0; }

.pkg-price-row {
  margin-bottom: 16px; padding: 12px 14px;
  background: var(--bg-soft); border-radius: var(--radius);
}
.pkg-price { display: flex; align-items: baseline; gap: 5px; flex-wrap: wrap; }
.pkg-price span   { font-size: .76rem; color: var(--text-muted); }
.pkg-price strong { font-size: 1.35rem; font-weight: 800; color: var(--red); }
.pkg-price em     { font-size: .76rem; color: var(--text-muted); font-style: normal; }

.packages-note {
  text-align: center; margin-top: 32px;
  font-size: .82rem; color: var(--text-muted);
  display: flex; align-items: center; justify-content: center; gap: 7px;
}
.packages-note i { color: var(--red); }

/* ── Testimonials ────────────────────────────────────────────── */
.testimonials-section { background: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.testimonial-card {
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 30px 26px;
  transition: all var(--dur) var(--ease);
  display: flex; flex-direction: column;
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.testimonial-featured { background: var(--navy); border-color: var(--navy); }

.testi-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.testi-stars i { color: var(--red); font-size: .9rem; }

.testi-quote { font-size: 1.8rem; color: var(--border); }
.testimonial-featured .testi-quote { color: rgba(255,255,255,.1); }

.testimonial-card > p {
  font-size: .88rem; color: var(--text); line-height: 1.75;
  font-style: italic; margin-bottom: 22px; flex: 1;
}
.testimonial-featured > p { color: rgba(255,255,255,.72); }

.testi-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--red); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: .78rem; font-weight: 800; flex-shrink: 0;
}
.testi-info strong { display: block; font-size: .88rem; font-weight: 700; color: var(--navy); }
.testi-info span   { font-size: .76rem; color: var(--text-muted); display: flex; align-items: center; gap: 4px; }
.testimonial-featured .testi-info strong { color: var(--white); }
.testimonial-featured .testi-info span   { color: rgba(255,255,255,.5); }

/* ── Contact ─────────────────────────────────────────────────── */
.contact-wrapper {
  display: grid; grid-template-columns: 360px 1fr;
  gap: 36px; align-items: start;
}

.contact-info-panel {
  background: var(--navy); border-radius: var(--radius-lg);
  padding: 38px 32px; color: var(--white);
}
.contact-info-panel h3 { font-family: var(--font-head); font-size: 1.55rem; margin-bottom: 8px; }
.contact-info-panel > p { font-size: .87rem; color: rgba(255,255,255,.58); margin-bottom: 30px; }

.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-details li { display: flex; gap: 14px; align-items: flex-start; }
.contact-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-icon i { color: white; font-size: .9rem; }
.contact-details strong {
  display: block; font-size: .78rem; font-weight: 700;
  color: rgba(255,255,255,.5); letter-spacing: .08em;
  text-transform: uppercase; margin-bottom: 3px;
}
.contact-details span,
.contact-details a { font-size: .88rem; color: rgba(255,255,255,.82); line-height: 1.6; }
.contact-details a:hover { color: var(--white); }

.contact-social { display: flex; gap: 10px; margin-top: 28px; }
.csocial-btn {
  flex: 1; padding: 11px; border-radius: var(--radius);
  font-size: .82rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; gap: 7px;
  transition: all var(--dur);
}
.csocial-btn.fb { background: #1877f2; color: white; }
.csocial-btn.fb:hover { background: #1558b5; transform: translateY(-2px); }
.csocial-btn.wa { background: #25d366; color: white; }
.csocial-btn.wa:hover { background: #1da851; transform: translateY(-2px); }

/* Contact Form */
.contact-form {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px 36px;
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.form-group label {
  font-size: .81rem; font-weight: 700; color: var(--navy);
  display: flex; align-items: center; gap: 7px; letter-spacing: .03em;
}
.form-group label i { color: var(--red); font-size: .82rem; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 15px;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-size: .9rem; font-family: var(--font-body); color: var(--text);
  background: var(--bg-soft); outline: none;
  transition: border-color var(--dur), background var(--dur), box-shadow var(--dur);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red); background: var(--white);
  box-shadow: 0 0 0 3px rgba(216,59,42,.1);
}
.form-group textarea { resize: vertical; }
.form-note {
  text-align: center; margin-top: 10px;
  font-size: .78rem; color: var(--text-muted);
  display: flex; align-items: center; justify-content: center; gap: 6px;
}

/* ── Map ─────────────────────────────────────────────────────── */
.map-section { line-height: 0; }

/* ── Footer ──────────────────────────────────────────────────── */
.footer { background: var(--navy); }
.footer-top { padding: 80px 0 60px; border-bottom: 1px solid rgba(255,255,255,.07); }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
}

.footer-logo {
  height: 52px; width: auto;
  background: white; padding: 6px 12px;
  border-radius: var(--radius); margin-bottom: 18px;
}
.footer-brand p {
  font-size: .875rem; color: rgba(255,255,255,.52);
  line-height: 1.75; margin-bottom: 22px; max-width: 300px;
}

.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 38px; height: 38px; border-radius: 9px;
  background: rgba(255,255,255,.07);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.62); font-size: .88rem;
  transition: all var(--dur);
}
.footer-socials a:hover { background: var(--red); color: white; transform: translateY(-3px); }

.footer-col h4 {
  font-size: .78rem; font-weight: 800; color: var(--white);
  letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 20px; padding-bottom: 10px;
  border-bottom: 2px solid var(--red); display: inline-block;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: .86rem; color: rgba(255,255,255,.52);
  display: flex; align-items: center; gap: 8px;
  transition: all var(--dur);
}
.footer-col ul li a i { font-size: .68rem; color: var(--red); }
.footer-col ul li a:hover { color: var(--white); padding-left: 4px; }

.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: .86rem; color: rgba(255,255,255,.52);
}
.footer-contact-list i { color: var(--red); font-size: .88rem; margin-top: 2px; flex-shrink: 0; }
.footer-contact-list a:hover { color: var(--white); }

.footer-bottom { padding: 20px 0; }
.footer-bottom-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 8px;
}
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.3); }

/* ── WhatsApp Float ──────────────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 90px; right: 28px;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; z-index: 999;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  transition: all var(--dur);
  animation: waPulse 2.8s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.1); background: #1da851; animation: none; }
@keyframes waPulse {
  0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,.45); }
  50%     { box-shadow: 0 6px 38px rgba(37,211,102,.72); }
}

/* ── Back to Top ─────────────────────────────────────────────── */
.back-to-top {
  position: fixed; bottom: 28px; right: 28px;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--red); color: white;
  border: none; cursor: pointer; z-index: 999;
  display: none; align-items: center; justify-content: center;
  font-size: .88rem; box-shadow: 0 4px 20px rgba(216,59,42,.4);
  transition: all var(--dur);
}
.back-to-top:hover { background: var(--red-dark); transform: translateY(-3px); }
.back-to-top.visible { display: flex; }

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */

/* 1200px — tighten 4-col grids */
@media (max-width: 1200px) {
  .footer-grid { gap: 32px; }
}

/* 1024px — collapse to 2 columns */
@media (max-width: 1024px) {
  .services-grid  { grid-template-columns: repeat(2, 1fr); }
  .packages-grid  { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }

  .why-inner      { grid-template-columns: 1fr; gap: 50px; }
  .why-visual     { max-width: 480px; margin: 0 auto; padding-right: 0; }
  .why-float-card { display: none; }   /* hide float cards — no gap to float into */

  .footer-grid    { grid-template-columns: 1fr 1fr; gap: 36px; }
  .contact-wrapper { grid-template-columns: 1fr; max-width: 640px; margin: 0 auto; }
}

/* 860px — destinations, hero stats */
@media (max-width: 860px) {
  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .dest-tall { grid-row: auto; min-height: 260px; }

  .hero-stats { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
  .stat-card  { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .stat-card:nth-child(odd)       { border-right: 1px solid rgba(255,255,255,.1); }
  .stat-card:nth-last-child(-n+2) { border-bottom: none; }
}

/* 768px — mobile nav */
@media (max-width: 768px) {
  .topbar-left span:first-child { display: none; }

  .nav-links, .nav-cta { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(13,27,42,.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 12px 20px 20px;
    box-shadow: 0 12px 32px rgba(0,0,0,.3); gap: 2px;
  }
  .nav-links.open a { color: rgba(255,255,255,.88); padding: 10px 14px; }
  .hamburger { display: flex; }

  .section    { padding: 72px 0; }
  .hero-content { padding: 60px 28px 60px; }
  .hero-text h1 { font-size: 2.6rem; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 22px; }
  .footer-grid  { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

/* 560px — single column everything */
@media (max-width: 560px) {
  .hero-text h1  { font-size: 2rem; }
  .hero-btns     { flex-direction: column; }
  .hero-btns .btn { width: 100%; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }

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