/* =========================================================
   BALLOW CONNECT
   Travel • Cargo • Hotels • Tours • African Shop
========================================================= */

:root {
  --bg: #07111f;
  --bg-dark: #040a12;
  --surface: #0d1b2d;
  --surface-2: #12243a;

  --gold: #d9a441;
  --gold-light: #f1c866;

  --white: #ffffff;
  --text: #edf3f8;
  --muted: #aab7c5;

  --border: rgba(255,255,255,0.10);

  --shadow: 0 20px 60px rgba(0,0,0,0.28);

  --radius: 18px;
  --container: 1180px;
}


/* =========================================================
   RESET
========================================================= */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  background: var(--bg);
  color: var(--text);

  line-height: 1.6;

  overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}


/* =========================================================
   CONTAINER
========================================================= */

.container {
  width: min(92%, var(--container));
  margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;

  z-index: 100;

  border-bottom: 1px solid rgba(255,255,255,0.08);

  background: rgba(4,10,18,0.45);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-container {
  min-height: 82px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;
}


/* =========================================================
   LOGO
========================================================= */

.logo {
  display: flex;
  flex-direction: column;

  line-height: 1;

  font-weight: 900;

  letter-spacing: 1px;
}

.logo span {
  font-size: 24px;
}

.logo small {
  color: var(--gold);

  font-size: 9px;

  letter-spacing: 4px;

  margin-top: 5px;
}


/* =========================================================
   NAVIGATION
========================================================= */

.main-nav {
  display: flex;
  align-items: center;

  gap: 25px;
}

.main-nav a {
  color: rgba(255,255,255,0.88);

  font-size: 14px;
  font-weight: 600;

  transition: 0.25s ease;
}

.main-nav a:hover {
  color: var(--gold-light);
}


/* =========================================================
   MENU BUTTON
========================================================= */

.menu-toggle {
  display: none;

  width: 44px;
  height: 44px;

  border: 1px solid var(--border);

  border-radius: 10px;

  background: rgba(255,255,255,0.06);

  color: var(--white);

  font-size: 22px;
}


/* =========================================================
   HERO
========================================================= */

.hero {
  position: relative;

  min-height: 760px;

  display: flex;
  align-items: center;

  background:
    linear-gradient(
      90deg,
      rgba(3,9,16,0.94) 0%,
      rgba(3,9,16,0.72) 48%,
      rgba(3,9,16,0.35) 100%
    ),
    url("icons/hero.jpg");

  background-size: cover;
  background-position: center;

  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at 75% 50%,
      rgba(217,164,65,0.14),
      transparent 35%
    );
}

.hero-content {
  position: relative;

  z-index: 2;

  padding-top: 70px;

  max-width: 760px;
}

.hero-label,
.section-tag {
  display: inline-block;

  color: var(--gold-light);

  font-size: 12px;

  font-weight: 800;

  letter-spacing: 3px;
}

.hero h1 {
  margin-top: 18px;

  font-size: clamp(48px, 7vw, 86px);

  line-height: 0.98;

  letter-spacing: -3px;

  font-weight: 800;
}

.hero h1 strong {
  color: var(--gold-light);
}

.hero p {
  max-width: 650px;

  margin-top: 28px;

  color: #d4dde7;

  font-size: 18px;
}

.hero-buttons {
  display: flex;

  flex-wrap: wrap;

  gap: 14px;

  margin-top: 34px;
}


/* =========================================================
   BUTTONS
========================================================= */

.btn {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-height: 52px;

  padding: 0 24px;

  border-radius: 10px;

  font-size: 14px;

  font-weight: 800;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--gold);

  color: #111;

  box-shadow:
    0 10px 30px rgba(217,164,65,0.22);
}

.btn-primary:hover {
  background: var(--gold-light);
}

.btn-light {
  background: var(--white);

  color: #09111c;
}

.full-width {
  width: 100%;
}


/* =========================================================
   SECTION COMMON
========================================================= */

section {
  padding: 100px 0;
}

.section-heading {
  max-width: 720px;

  margin-bottom: 55px;
}

.section-heading > span {
  color: var(--gold);

  font-size: 12px;

  font-weight: 800;

  letter-spacing: 3px;
}

.section-heading h2 {
  margin-top: 12px;

  font-size: clamp(34px, 5vw, 54px);

  line-height: 1.08;

  letter-spacing: -1.5px;
}

.section-heading h2 strong {
  color: var(--gold);
}

.section-heading p {
  margin-top: 18px;

  color: var(--muted);

  max-width: 620px;
}


/* =========================================================
   SERVICES
========================================================= */

.services {
  background: #f6f8fa;

  color: #101923;
}

.services .section-heading p {
  color: #66717d;
}

.service-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 20px;
}

.service-card {
  padding: 32px;

  min-height: 250px;

  border-radius: var(--radius);

  background: var(--white);

  border: 1px solid #e5e9ed;

  box-shadow: 0 10px 35px rgba(13,27,45,0.06);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);

  box-shadow: var(--shadow);

  border-color: rgba(217,164,65,0.45);
}

.service-icon {
  width: 54px;
  height: 54px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 14px;

  background: #fff7e7;

  font-size: 25px;

  margin-bottom: 22px;
}

.service-card h3 {
  font-size: 21px;

  margin-bottom: 10px;
}

.service-card p {
  color: #6b7682;

  font-size: 14px;
}

.service-card span {
  display: inline-block;

  margin-top: 20px;

  color: #a47418;

  font-size: 13px;

  font-weight: 800;
}

.service-card-shop {
  background:
    linear-gradient(
      135deg,
      #13283e,
      #0a1726
    );

  color: var(--white);

  border-color: transparent;
}

.service-card-shop p {
  color: #b7c4d0;
}

.service-card-shop span {
  color: var(--gold-light);
}


/* =========================================================
   BOOKING SECTION
========================================================= */

.booking-section {
  background:
    linear-gradient(
      135deg,
      #07111f,
      #0d1d31
    );
}

.booking-container {
  display: grid;

  grid-template-columns:
    0.9fr 1.1fr;

  gap: 70px;

  align-items: center;
}

.booking-text h2 {
  margin-top: 12px;

  font-size: clamp(38px, 5vw, 58px);

  line-height: 1.05;
}

.booking-text h2 strong {
  color: var(--gold-light);
}

.booking-text p {
  max-width: 560px;

  color: var(--muted);

  margin: 22px 0 30px;
}

.booking-box {
  padding: 30px;

  background: rgba(255,255,255,0.06);

  border: 1px solid var(--border);

  border-radius: 20px;

  box-shadow: var(--shadow);

  backdrop-filter: blur(15px);
}

.trip-tabs {
  display: flex;

  gap: 8px;

  margin-bottom: 25px;
}

.trip-tabs button {
  border: 0;

  padding: 10px 15px;

  border-radius: 8px;

  background: rgba(255,255,255,0.07);

  color: var(--muted);

  font-size: 13px;

  font-weight: 700;
}

.trip-tabs button.active {
  background: var(--gold);

  color: #111;
}

.form-row {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 15px;

  margin-bottom: 15px;
}

.form-group label {
  display: block;

  margin-bottom: 7px;

  color: #d8e0e8;

  font-size: 12px;

  font-weight: 700;
}

.form-group input,
.form-group select {
  width: 100%;

  height: 50px;

  padding: 0 14px;

  border: 1px solid rgba(255,255,255,0.10);

  border-radius: 9px;

  background: rgba(0,0,0,0.18);

  color: var(--white);

  outline: none;
}

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


/* =========================================================
   CARGO
========================================================= */

.cargo-section {
  background:
    linear-gradient(
      120deg,
      rgba(6,17,29,0.96),
      rgba(13,35,56,0.88)
    ),
    url("icons/cargo.jpeg");

  background-size: cover;
  background-position: center;
}

.cargo-content {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 80px;

  align-items: center;
}

.cargo-content h2 {
  margin-top: 12px;

  font-size: clamp(38px, 5vw, 60px);

  line-height: 1.05;
}

.cargo-content h2 strong {
  color: var(--gold-light);
}

.cargo-content p {
  max-width: 560px;

  color: var(--muted);

  margin: 22px 0 30px;
}

.cargo-features {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 15px;
}

.cargo-features div {
  min-height: 150px;

  padding: 25px;

  display: flex;

  flex-direction: column;

  justify-content: space-between;

  border: 1px solid var(--border);

  border-radius: 16px;

  background: rgba(255,255,255,0.05);
}

.cargo-features strong {
  font-size: 28px;
}

.cargo-features span {
  font-weight: 700;
}


/* =========================================================
   AFRICAN SHOP
========================================================= */

.shop-preview {
  background: #f6f8fa;

  color: #101923;
}

.shop-preview .section-heading p {
  color: #66717d;
}

.shop-categories {
  display: grid;

  grid-template-columns:
    repeat(6, 1fr);

  gap: 14px;
}

.shop-categories a {
  min-height: 145px;

  padding: 20px 12px;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  text-align: center;

  gap: 12px;

  background: var(--white);

  border: 1px solid #e5e9ed;

  border-radius: 15px;

  transition: 0.25s ease;
}

.shop-categories a:hover {
  transform: translateY(-5px);

  border-color: var(--gold);

  box-shadow: var(--shadow);
}

.shop-categories span {
  font-size: 32px;
}

.shop-categories strong {
  font-size: 13px;
}

.shop-cta {
  margin-top: 45px;

  padding: 45px;

  border-radius: 20px;

  background:
    linear-gradient(
      135deg,
      #10253b,
      #07111f
    );

  color: var(--white);

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 30px;
}

.shop-cta h3 {
  margin-top: 10px;

  font-size: clamp(28px, 4vw, 42px);

  line-height: 1.1;
}


/* =========================================================
   DESTINATIONS
========================================================= */

.destinations {
  background: var(--bg);
}

.destination-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 15px;
}

.destination-grid div {
  padding: 28px;

  border: 1px solid var(--border);

  border-radius: 15px;

  background: var(--surface);

  font-size: 18px;

  font-weight: 700;

  transition: 0.25s ease;
}

.destination-grid div:hover {
  border-color: var(--gold);

  transform: translateY(-4px);
}


/* =========================================================
   WHY US
========================================================= */

.why-us {
  background: #f6f8fa;

  color: #101923;
}

.why-grid {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 25px;
}

.why-grid div {
  padding: 25px 0;

  border-top: 2px solid #dfe4e8;
}

.why-grid span {
  color: var(--gold);

  font-size: 12px;

  font-weight: 900;

  letter-spacing: 2px;
}

.why-grid h3 {
  margin-top: 15px;

  font-size: 20px;
}

.why-grid p {
  margin-top: 10px;

  color: #6b7682;

  font-size: 14px;
}


/* =========================================================
   ABOUT
========================================================= */

.about-preview {
  background: var(--surface);
}

.about-content {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 80px;

  align-items: start;
}

.about-content h2 {
  margin-top: 12px;

  font-size: clamp(34px, 5vw, 52px);

  line-height: 1.08;
}

.about-content h2 strong {
  color: var(--gold-light);
}

.about-content p {
  color: var(--muted);

  margin-bottom: 20px;
}

.text-link {
  color: var(--gold-light);

  font-weight: 800;
}


/* =========================================================
   CONTACT CTA
========================================================= */

.contact-cta {
  text-align: center;

  background:
    linear-gradient(
      135deg,
      #c9932f,
      #e4b95b
    );

  color: #111;
}

.contact-cta span {
  font-size: 12px;

  font-weight: 900;

  letter-spacing: 3px;
}

.contact-cta h2 {
  margin-top: 12px;

  font-size: clamp(38px, 6vw, 65px);

  line-height: 1;
}

.contact-cta h2 strong {
  display: block;
}

.contact-cta p {
  margin: 20px 0 25px;

  color: rgba(17,17,17,0.7);
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
  background: #030811;

  color: var(--white);

  padding-top: 75px;
}

.footer-grid {
  display: grid;

  grid-template-columns:
    1.5fr 1fr 1fr 1fr;

  gap: 50px;

  padding-bottom: 60px;
}

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

.site-footer p {
  color: var(--muted);

  font-size: 14px;
}

.site-footer h4 {
  margin-bottom: 18px;

  color: var(--gold-light);

  font-size: 13px;

  text-transform: uppercase;

  letter-spacing: 1px;
}

.site-footer a,
.site-footer div span {
  display: block;

  color: var(--muted);

  font-size: 14px;

  margin-bottom: 9px;

  transition: 0.2s ease;
}

.site-footer a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);

  padding: 20px 0;
}

.footer-bottom .container {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 20px;
}

.footer-bottom span {
  color: #73808e;

  font-size: 12px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

  .main-nav {
    gap: 15px;
  }

  .main-nav a {
    font-size: 13px;
  }

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

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

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

}


/* =========================================================
   MOBILE NAVIGATION
========================================================= */

@media (max-width: 780px) {

  .nav-container {
    min-height: 72px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;

    top: 72px;
    left: 4%;

    width: 92%;

    padding: 18px;

    display: none;

    flex-direction: column;

    align-items: stretch;

    gap: 0;

    background: rgba(5,12,21,0.98);

    border: 1px solid var(--border);

    border-radius: 14px;

    box-shadow: var(--shadow);
  }

  .main-nav.active {
    display: flex;
  }

  .main-nav a {
    padding: 13px 8px;

    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: 690px;

    background-position: 60% center;
  }

  .hero h1 {
    letter-spacing: -2px;
  }

  .hero p {
    font-size: 16px;
  }

  section {
    padding: 75px 0;
  }

  .booking-container,
  .cargo-content,
  .about-content {
    grid-template-columns: 1fr;

    gap: 45px;
  }

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

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

  .shop-cta {
    flex-direction: column;

    align-items: flex-start;
  }

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

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 520px) {

  .logo span {
    font-size: 21px;
  }

  .hero {
    min-height: 650px;
  }

  .hero-content {
    padding-top: 55px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-buttons {
    flex-direction: column;

    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .booking-box {
    padding: 20px;
  }

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

  .cargo-features {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .footer-bottom .container {
    flex-direction: column;

    align-items: flex-start;
  }

}
```
