:root {
  --red: #d60000;
  --red-dark: #a90000;
  --blue: #062b63;
  --blue-dark: #02142d;
  --light: #f6f8fb;
  --text: #1c2430;
  --muted: #5f6b7a;
  --white: #ffffff;
  --border: #e7eaf0;
  --shadow: 0 18px 45px rgba(2, 20, 45, .13);
  --radius: 22px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif
}

html {
  scroll-behavior: smooth
}

body {
  background: var(--white);
  color: var(--text);
  line-height: 1.6
}

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

.container {
  width: min(1180px, 88%);
  margin: auto
}

.topbar {
  background: var(--blue);
  color: var(--white);
  text-align: center;
  padding: 10px 5%;
  font-weight: 800;
  font-size: 15px
}

.site-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .05)
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0
}

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

.brand img {
  height: 70px;
  width: auto;
  display: block
}

.brand-title {
  font-size: 28px;
  font-weight: 900;
  color: var(--red);
  letter-spacing: -1px;
  white-space: nowrap
}

.brand-title span {
  color: var(--blue)
}

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

.nav a {
  font-weight: 800;
  color: var(--blue);
  font-size: 15px
}

.nav a:hover,
.nav a.active {
  color: var(--red)
}

.hamburger {
  display: none;
  border: 0;
  background: var(--blue);
  color: #fff;
  padding: 10px 12px;
  border-radius: 8px;
  font-weight: 900
}

.btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 9px;
  font-weight: 900;
  transition: .25s;
  border: none;
  cursor: pointer
}

.btn-red {
  background: var(--red);
  color: #fff
}

.btn-red:hover {
  background: var(--red-dark);
  transform: translateY(-3px)
}

.btn-blue {
  background: var(--blue);
  color: #fff
}

.btn-blue:hover {
  background: #0b3d86;
  transform: translateY(-3px)
}

.btn-white {
  background: #fff;
  color: var(--blue)
}

.btn-white:hover {
  transform: translateY(-3px)
}

.hero {
  min-height: 84vh;
  display: grid;
  align-items: center;
  background: linear-gradient(120deg, rgba(255, 255, 255, .97), rgba(255, 255, 255, .82)), url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=1800&q=80');
  background-size: cover;
  background-position: center;
  padding: 70px 0
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 48px;
  align-items: center
}

.badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 900;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(214, 0, 0, .22)
}

.hero h1 {
  font-size: 62px;
  line-height: 1.04;
  color: var(--blue);
  margin-bottom: 18px;
  letter-spacing: -2px
}

.hero h1 span {
  display: block;
  color: var(--red)
}

.hero h2 {
  font-size: 28px;
  color: var(--blue);
  margin-bottom: 18px
}

.hero p {
  font-size: 19px;
  color: #394455;
  max-width: 720px;
  margin-bottom: 26px
}

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

.hero-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
  text-align: center
}

.hero-card img {
  width: 100%;
  max-width: 390px;
  border-radius: 14px;
  margin-bottom: 18px
}

.hero-card h3 {
  font-size: 28px;
  color: var(--red);
  margin-bottom: 10px
}

.hero-card p {
  font-size: 16px;
  color: var(--muted);
  margin: 0 auto
}

.section {
  padding: 78px 0
}

.section-light {
  background: var(--light)
}

.section-blue {
  background: var(--blue);
  color: #fff
}

.section-title {
  text-align: center;
  margin-bottom: 44px
}

.section-title h2 {
  font-size: 42px;
  color: var(--blue);
  font-weight: 900;
  letter-spacing: -1px
}

.section-title h2 span {
  color: var(--red)
}

.section-title p {
  font-size: 18px;
  color: var(--muted);
  max-width: 850px;
  margin: 10px auto 0
}

.section-blue .section-title h2 {
  color: #fff
}

.section-blue .section-title h2 span {
  color: #ff4545
}

.section-blue .section-title p {
  color: #eef3ff
}

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

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

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .07);
  transition: .25s
}

.card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
  border-color: var(--red)
}

.card.center {
  text-align: center
}

.icon {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  margin: 0 auto 20px
}

.card h3 {
  font-size: 26px;
  color: var(--red);
  margin-bottom: 12px
}

.card p {
  color: var(--muted);
  margin-bottom: 20px
}

.blue-card {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  padding: 30px;
  text-align: center
}

.blue-card h3 {
  font-size: 24px;
  margin-bottom: 12px
}

.blue-card p {
  color: #eef3ff
}

.page-hero {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #fff;
  padding: 72px 0;
  text-align: center
}

.page-hero h1 {
  font-size: 52px;
  line-height: 1.05;
  margin-bottom: 14px
}

.page-hero p {
  font-size: 19px;
  max-width: 850px;
  margin: auto;
  color: #edf4ff
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
  align-items: center
}

.image-panel {
  min-height: 420px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background-size: cover;
  background-position: center
}

.image-hotels {
  background-image: linear-gradient(rgba(6, 43, 99, .2), rgba(214, 0, 0, .18)), url('https://images.unsplash.com/photo-1566073771259-6a8506099945?auto=format&fit=crop&w=1400&q=80')
}

.image-flights {
  background-image: linear-gradient(rgba(6, 43, 99, .2), rgba(214, 0, 0, .18)), url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=1400&q=80')
}

.image-car {
  background-image: linear-gradient(rgba(6, 43, 99, .2), rgba(214, 0, 0, .18)), url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=1400&q=80')
}

.image-about {
  background-image: linear-gradient(rgba(6, 43, 99, .25), rgba(214, 0, 0, .22)), url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1400&q=80')
}

.content h2 {
  font-size: 40px;
  color: var(--blue);
  margin-bottom: 18px
}

.content h2 span {
  color: var(--red)
}

.content p {
  font-size: 18px;
  color: #455160;
  margin-bottom: 18px
}

.tick-list {
  list-style: none;
  margin: 24px 0
}

.tick-list li {
  margin: 12px 0;
  padding-left: 30px;
  position: relative;
  color: #455160
}

.tick-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--red);
  font-weight: 900
}

.search-box {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
  border: 1px solid var(--border)
}

.search-box h3 {
  font-size: 26px;
  color: var(--red);
  margin-bottom: 18px
}

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

.form-group label {
  display: block;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 7px
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #cfd6df;
  border-radius: 9px;
  font-size: 15px;
  outline: none
}

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

textarea {
  min-height: 125px;
  resize: vertical
}

.steps .step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .07)
}

.step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  margin: 0 auto 16px
}

.step h3 {
  color: var(--blue);
  margin-bottom: 8px
}

.step p {
  color: var(--muted);
  font-size: 15px
}

.cta {
  padding: 72px 0;
  text-align: center;
  background: linear-gradient(135deg, var(--red), var(--blue));
  color: #fff
}

.cta h2 {
  font-size: 42px;
  margin-bottom: 14px
}

.cta p {
  font-size: 19px;
  max-width: 820px;
  margin: 0 auto 28px;
  color: #f4f7ff
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: start
}

.contact-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .07);
  padding: 32px
}

.contact-box h3 {
  font-size: 26px;
  color: var(--red);
  margin-bottom: 16px
}

.contact-box p {
  color: #455160;
  margin-bottom: 12px
}

.legal-content {
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .07);
  border-radius: var(--radius);
  padding: 36px
}

.legal-content h2 {
  color: var(--blue);
  font-size: 28px;
  margin: 26px 0 10px
}

.legal-content p,
.legal-content li {
  color: #455160;
  margin-bottom: 12px
}

.legal-content ul {
  padding-left: 22px
}

.footer {
  background: var(--blue-dark);
  color: #fff;
  padding: 46px 0 24px
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 30px
}

.footer h3 {
  font-size: 21px;
  margin-bottom: 14px
}

.footer p,
.footer a {
  display: block;
  color: #d7e0ec;
  font-size: 15px;
  margin-bottom: 8px
}

.footer a:hover {
  color: #ff4545
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, .15);
  padding-top: 20px;
  color: #cbd5e2;
  font-size: 14px
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #fff;
  font-size: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
  z-index: 999
}

.floating-whatsapp:hover {
  transform: scale(1.07)
}

@media(max-width:1000px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    border-bottom: 1px solid var(--border)
  }

  .nav.open {
    display: flex
  }

  .hamburger {
    display: block
  }

  .hero-grid,
  .split,
  .contact-grid {
    grid-template-columns: 1fr
  }

  .grid-3,
  .charity-boxes {
    grid-template-columns: 1fr
  }

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

  .hero h1 {
    font-size: 48px
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }

  .hero-card img {
    max-width: 320px
  }
}

@media(max-width:620px) {
  .container {
    width: 90%
  }

  .brand {
    gap: 9px
  }

  .brand img {
    height: 54px
  }

  .brand-title {
    font-size: 21px
  }

  .topbar {
    font-size: 13px
  }

  .hero {
    padding: 48px 0
  }

  .hero h1 {
    font-size: 38px
  }

  .hero h2 {
    font-size: 22px
  }

  .hero p {
    font-size: 16px
  }

  .page-hero h1 {
    font-size: 38px
  }

  .section-title h2,
  .content h2,
  .cta h2 {
    font-size: 31px
  }

  .grid-4 {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .hero-actions {
    flex-direction: column
  }

  .btn {
    text-align: center;
    width: 100%
  }

  .floating-whatsapp {
    width: 54px;
    height: 54px;
    font-size: 26px
  }
}

.whatsapp-contact-section {
  margin: 20px 0;
  padding: 15px;
  background-color: #f9f9f9;
  border-radius: 8px;
  text-align: center;
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background-color: #25D366;
  /* WhatsApp Green */
  color: white !important;
  text-decoration: none;
  font-weight: bold;
  border-radius: 50px;
  transition: background-color 0.3s ease;
}

.whatsapp-link:hover {
  background-color: #128C7E;
  text-decoration: none;
}

/* Responsive adjustment */
@media (max-width: 600px) {
  .whatsapp-link {
    width: 100%;
    justify-content: center;
  }
}

.header-whatsapp {
  display: flex;
  align-items: center;
  padding: 5px 10px;
}

.header-whatsapp a {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #25D366;
  color: white !important;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.header-whatsapp a:hover {
  background-color: #128C7E;
  transform: scale(1.05);
  text-decoration: none;
}

/* Hide the number on mobile and only show the icon to save space */
@media (max-width: 768px) {
  .header-whatsapp span {
    display: none;
  }

  .header-whatsapp a {
    padding: 10px;
    border-radius: 50%;
  }
}