/* Font ti import kora hocche */
@font-face {
  font-family: "Aldine401 BT";
  src: url("/Aldine401\ BT\ Bold/") format("truetype");
  font-weight: bold;
  font-style: normal;
}

:root {
  --primary: #0d1b2a;
  --secondary: #d4af37;
  --white: #ffffff;
  --text: #dfe7ef;
  --glass: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.12);
  --overlay: rgba(0, 0, 0, 0.45);
  --black: #000000;
}

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

body {
  font-family: "Inter", sans-serif;
  background: var(--black);
}

.hero {
  position: relative;

  width: 100%;

  min-height: 100vh;

  overflow: hidden;

  display: flex;
  flex-direction: column;
}

.hero-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(to right,
      rgba(0, 0, 0, 0.75),
      rgba(0, 0, 0, 0.25));

  z-index: 1;
}

.navbar {
  position: fixed;

  top: 24px;
  left: 50%;

  transform: translateX(-50%);

  width: 90%;
  max-width: 1400px;

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

  padding: 18px 30px;

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

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

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

  border-radius: 22px;

  z-index: 9999;

  transition:
    top 0.4s ease,
    padding 0.4s ease,
    background 0.4s ease,
    border 0.4s ease,
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

/* SCROLLED STATE */

.navbar.scrolled {
  top: 14px;

  padding: 14px 26px;

  background: #153a63;

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

  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.03);

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

/* HIDE ON SCROLL DOWN */

.navbar.hide-nav {
  transform: translateX(-50%) translateY(-140%);
}

/* SHOW */

.navbar.show-nav {
  transform: translateX(-50%) translateY(0%);
}

.logo {
  color: var(--secondary);

  font-size: 24px;
  font-family: "Aldine401 BT", serif;
  font-weight: 700;
}
.logo a{
    text-decoration:none;
      color: var(--secondary);
      font-size: 24px;
  font-family: "Aldine401 BT", serif;
  font-weight: 700;
}
.nav-links {
  display: flex;
  gap: 35px;
  list-style: none;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}

.nav-links a:hover {
  color: var(--secondary);
}

.nav-btn {
  position: relative;

  padding: 14px 28px;

  border-radius: 50px;

  text-decoration: none;

  font-weight: 600;

  color: #111827;

  background: var(--secondary);

  overflow: hidden;

  z-index: 1;

  transition: 0.4s;
}

.hero-content {
  position: relative;
  z-index: 10;

  flex: 1;

  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-wrap: break-word;

  padding: clamp(140px, 18vh, 180px) 8% clamp(40px, 8vh, 80px);

  max-width: 900px;
}

.subtitle {
  color: var(--secondary);
  letter-spacing: 2px;
  margin-bottom: 20px;
  font-size: 14px;
  text-transform: uppercase;
}

.hero-content h1 {
  color: var(--white);

  font-size: clamp(42px, 8vw, 88px);

  line-height: 0.95;

  font-family: "Poppins", sans-serif;

  margin-bottom: 24px;

  max-width: 700px;
}

.hero-content p {
  color: var(--text);

  font-size: clamp(14px, 2vw, 18px);

  line-height: 1.7;

  margin-bottom: 35px;

  max-width: 620px;
}

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

.secondary-btn {
  border: 1px solid var(--border);
  color: var(--white);
  padding: 16px 34px;
  border-radius: 50px;
  text-decoration: none;
  backdrop-filter: blur(10px);
}

.video-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 50%;
  left: 50%;

  width: 100vw;
  height: 56.25vw;

  min-height: 100vh;
  min-width: 177.77vh;

  transform: translate(-50%, -50%);

  pointer-events: none;
}

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

.menu-toggle {
  width: 50px;
  height: 50px;

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

  border-radius: 50%;
  cursor: pointer;

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

  color: var(--white);
  font-size: 24px;
}

/* MOBILE MENU */

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;

  width: 100%;
  max-width: 380px;
  height: 100vh;

  background: rgba(8, 15, 25, 0.96);

  backdrop-filter: blur(20px);

  z-index: 9999;

  padding: 30px;

  transition: 0.5s ease;
}

.mobile-menu.active {
  right: 0;
}

.mobile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 70px;
}

.close-menu {
  width: 50px;
  height: 50px;

  border-radius: 50%;

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

  cursor: pointer;

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

  color: var(--white);

  font-size: 26px;
}

.mobile-links {
  list-style: none;

  display: flex;
  flex-direction: column;
  gap: 30px;
}

.mobile-links a {
  color: var(--white);

  text-decoration: none;

  font-size: 32px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;

  transition: 0.3s;
}

.mobile-links a:hover {
  color: var(--secondary);
}

.mobile-btn {
  display: inline-flex;

  margin-top: 50px;

  padding: 16px 30px;

  background: var(--secondary);

  color: var(--black);

  text-decoration: none;

  border-radius: 50px;

  font-weight: 600;
}

/* =========================
   EXPERIENCE SECTION
========================= */

.experience-section {
  position: relative;
  padding: 80px 8%;
  background: #f7f8fa;
  overflow: hidden;
}

.experience-container {
  max-width: 1400px;
  margin: auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  /* align-items: center; */
}

.experience-image {
  position: relative;
}

.experience-image img {
  width: 100%;
  height: 700px;
  object-fit: cover;

  border-radius: 30px;
}

.experience-badge {
  position: absolute;

  left: 30px;
  top: 30px;

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

  backdrop-filter: blur(18px);

  border: 1px solid rgba(0, 0, 0, 0.06);

  padding: 22px 24px;

  border-radius: 24px;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);

  width: 200px;

  min-height: 140px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.experience-badge h3 {
  color: var(--secondary);
  font-size: 62px;
  font-family: "Poppins", sans-serif;
}

.experience-badge p {
  color: #1f2937;
  font-size: 18px;
  font-weight: 700;
}

.section-subtitle {
  color: var(--secondary);

  text-transform: uppercase;
  letter-spacing: 2px;

  font-size: 14px;

  display: inline-block;
  margin-bottom: 20px;
}

.experience-content h2 {
  color: #153a63;

  font-size: clamp(32px, 5vw, 44px);
  line-height: 1;

  font-family: "Poppins", sans-serif;

  margin-bottom: 14px;
}

.experience-content p {
  color: #5b6472;

  font-size: 16px;
  line-height: 1.1;

  margin-bottom: 25px;

  /* max-width: 650px; */
}

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

.feature-card {
  position: relative;

  display: flex;

  align-items: flex-start;

  gap: 12px;

  padding: 14px;

  background: #ffffff;

  border: 1px solid #e8edf3;

  border-radius: 26px;

  overflow: hidden;

  transition: 0.45s ease;

  box-shadow: 0 10px 35px rgba(15, 23, 42, 0.05);
  min-width: 220px;
}

.feature-card::before {
  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), transparent);

  opacity: 0;

  transition: 0.4s;
}

.feature-card:hover {
  transform: translateY(-4px);

  border-color: rgba(212, 175, 55, 0.3);

  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 68px;
  height: 68px;

  min-width: 68px;

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

  border-radius: 22px;

  background: rgba(212, 175, 55, 0.12);

  color: #b98b11;

  font-size: 28px;
}

.feature-text h4 {
  color: #111827;

  font-size: 18px;

  margin-bottom: 8px;

  font-family: "Poppins", sans-serif;
}

.featuretext-p {
  margin: 0;

  color: #22314d;

  font-size: 15px;

  line-height: 1;
}

.feature-card h4 {
  color: #1b356b !important;

  font-size: 18px;
  margin-bottom: 6px;

  font-family: "Poppins", sans-serif;
}

.feature-card p {
  margin: 0;
  font-size: 14px;
  color: #b8c7d6;
}

.luxury-card {
  position: relative;

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

  text-align: center;
  text-decoration: none;

  min-height: 220px;

  padding: 30px;

  border-radius: 26px;

  background: linear-gradient(135deg, #cc990e 0%, #e9c153 50%, #cc990e 100%);

  border: 1px solid rgba(212, 175, 55, 0.25);

  overflow: hidden;

  transition: all 0.45s ease;

  box-shadow: 0 20px 50px rgba(8, 18, 32, 0.15);
}

.luxury-card::before {
  content: "";

  position: absolute;

  width: 180px;
  height: 180px;

  top: -60px;
  right: -60px;

  border-radius: 50%;

  background: rgba(212, 175, 55, 0.12);

  filter: blur(20px);
}

.luxury-card:hover {
  transform: translateY(-8px);

  border-color: rgba(212, 175, 55, 0.6);

  box-shadow: 0 25px 60px rgba(212, 175, 55, 0.2);
}

.luxury-card h5 {
  color: rgb(255, 255, 255);
  font-size: 20px;
}

.luxury-card h3 {
  color: #1b356b;

  font-size: 34px;

  line-height: 1.1;

  margin-bottom: 12px;

  font-family: "Poppins", sans-serif;

  font-weight: 700;

  position: relative;
  z-index: 2;
}

.luxury-card p {
  color: #0f2741 !important;
  font-size: 16px;
  margin: 0;
  position: relative;
  z-index: 2;
  font-weight: 700;
}

/* =========================
   PACKAGES SECTION
========================= */

.packages-section {
  position: relative;

  padding: 130px 8%;

  background: #091d35;

  overflow: hidden;
}


.packages-top {
  text-align: center;

  max-width: 760px;

  margin: auto auto 80px;
}

.packages-slider-wrapper {
  position: relative;
  width: 100%;
  max-width: 1450px;

  margin: auto;

  z-index: 2;
}

.packagesSwiper {
  width: 100%;

  overflow: hidden;

  padding-inline: 4px;
  padding: 20px 0;
}

.swiper {
  padding-left: 2px;
  padding-right: 2px;
}

.swiper-wrapper {
  align-items: stretch;
}

.swiper-slide {
  height: auto;
  display: flex;
}

.packages-top h2 {
  color: white;

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

  line-height: 1;

  margin-bottom: 16px;

  font-family: "Poppins", sans-serif;
}

/* CARD */

.package-card {
  position: relative;

  width: 100%;
  height: 100%;

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

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

  backdrop-filter: blur(20px);

  border-radius: 30px;

  padding: 20px;

  overflow: hidden;

  transition: 0.5s ease;
}

.package-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
  background: linear-gradient(135deg, rgba(206, 169, 46, 0.342), transparent);

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

.package-card:hover::before {
  opacity: 1;
}

/* FEATURED CARD */

.package-card.featured {
  background: linear-gradient(145deg,
      rgba(212, 175, 55, 0.18),
      rgba(255, 255, 255, 0.06));

  border: 1px solid rgba(212, 175, 55, 0.35);

  transform: scale(1.03);
}

.packages-controls {
  display: flex;

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

  gap: 16px;

  margin-top: 45px;
}

.package-nav-btn {
  width: 64px;
  height: 64px;

  border-radius: 50%;

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

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

  backdrop-filter: blur(14px);

  color: white;

  cursor: pointer;

  transition: 0.4s ease;

  font-size: 24px;

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

.package-nav-btn:hover {
  background: var(--secondary);

  color: black;

  transform: translateY(-5px);
}

.package-badge {
  position: absolute;

  top: 12px;
  right: 16px;

  background: var(--secondary);

  color: black;

  padding: 8px 16px;

  border-radius: 50px;

  font-size: 12px;

  font-weight: 700;

  letter-spacing: 1px;
}

.package-duration {
  color: var(--secondary);

  font-size: 15px;

  letter-spacing: 2px;

  text-transform: uppercase;

  margin-bottom: 16px;
}

.package-card h3 {
  color: white;

  font-size: 34px;

  margin-bottom: 12px;

  font-family: "Poppins", sans-serif;
}

.package-price {
  color: white;

  font-size: 54px;

  font-weight: 700;

  margin-bottom: 22px;
}

.package-price span {
  font-size: 16px;

  color: #9fb0c3;

  font-weight: 400;
}

.package-desc {
  color: #b7c4d4;

  line-height: 1.8;

  margin-bottom: 30px;
}

/* FEATURES */

.package-features {
  list-style: none;

  display: flex;
  flex-direction: column;

  gap: 16px;

  margin-bottom: 35px;
}

.package-features li {
  color: white;

  display: flex;
  align-items: center;

  gap: 12px;

  font-size: 15px;
}

.package-features i {
  color: var(--secondary);

  font-size: 18px;
}

/* BUTTON */

.package-btn {
  width: 100%;

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

  padding: 16px 24px;

  border-radius: 18px;

  background: var(--secondary);

  color: #111827;

  text-decoration: none;

  font-weight: 600;

  transition: 0.4s;
}

.home-package-card {
  position: relative;
  overflow: hidden;

  width: 100%;
  height: 100%;

  display: flex;
  flex-direction: column;

  padding: 15px;

  border-radius: 28px;

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

  backdrop-filter: blur(20px);

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

  transition: 0.5s;
}

.home-package-card:hover {
  transform: translateY(-10px);

  border-color: rgba(212, 175, 55, 0.4);

  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.home-package-image {
  height: 230px;

  overflow: hidden;

  border-radius: 20px;

  margin-bottom: 25px;
}

.home-package-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: 0.6s;
}

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

.home-package-tag {
  display: inline-block;

  width: fit-content;

  padding: 8px 15px;

  border-radius: 50px;

  background: rgba(212, 175, 55, 0.15);

  color: #d4af37;

  font-size: 13px;

  margin-bottom: 18px;
}

.home-package-price-title {
  display: flex;

  justify-content: space-between;

  align-items: flex-start;

  gap: 15px;

  margin-bottom: 15px;
}

.home-package-price-title h3 {
  color: #fff;

  font-size: 26px;

  margin: 0;
}

.home-package-price {
  color: #d4af37;

  font-size: 28px;

  font-weight: 700;

  text-align: right;
}

.home-package-price span {
  display: block;

  font-size: 13px;

  color: #9fb0c3;

  font-weight: 400;
}

.home-package-desc {
  color: #b7c4d4;

  line-height: 1.7;

  margin-bottom: 25px;
}

.home-package-btn {
  margin-top: auto;

  display: flex;

  align-items: center;

  justify-content: center;

  width: 100%;

  padding: 16px;

  border-radius: 16px;

  background: #d4af37;

  color: #07111f;

  text-decoration: none;

  font-weight: 700;

  transition: 0.4s;
}

.home-package-btn:hover {
  transform: translateY(-3px);
}

.home-package-card.featured {
  border: 1px solid rgba(212, 175, 55, 0.4);

  background: linear-gradient(145deg,
      rgba(212, 175, 55, 0.12),
      rgba(255, 255, 255, 0.04));
}

/* ADDON LIST */

.addon-list {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;

  display: flex;
  flex-direction: column;
  gap: 14px;
}

.addon-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.addon-icon {
  width: 38px;
  height: 38px;

  min-width: 38px;

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

  border-radius: 12px;

  background: rgba(212, 175, 55, 0.12);

  color: #b98b11;

  font-size: 18px;
}

.addon-info {
  display: flex;
  flex-direction: column;
}

.addon-info strong {
  color: #1b356b;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
}

.addon-info span {
  color: #5b6472;
  font-size: 13px;
  line-height: 1.5;
}

/* =========================
   WHY CHOOSE US SECTION
========================= */

.why-section {
  position: relative;

  padding: 80px 8%;

  overflow: hidden;

  background-image: url("https://images.unsplash.com/photo-1500375592092-40eb2168fd21?q=80&w=1800&auto=format&fit=crop");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.why-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: auto;
}

/* LEFT */

.why-left {
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.why-left h2 {
  color: #111827;

  font-size: clamp(42px, 5vw, 64px);

  line-height: 1;

  margin-bottom: 24px;

  font-family: "Poppins", sans-serif;
}

.why-left p {
  color: #5f6b7a;

  font-size: 17px;

  line-height: 1.9;

  max-width: 560px;

  margin-bottom: 40px;
}

.why-btn {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  padding: 18px 34px;

  background: linear-gradient(135deg, #d4af37, #f5d67b);

  color: #111827;

  text-decoration: none;

  border-radius: 60px;

  font-weight: 600;

  transition: 0.45s ease;

  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.25);
}

.why-btn:hover {
  transform: translateY(-6px);

  box-shadow: 0 22px 50px rgba(212, 175, 55, 0.35);
}

/* RIGHT GRID */

.why-grid {
  display: grid;

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

  gap: 24px;
}

.why-card {
  position: relative;

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

  border: 1px solid rgba(15, 23, 42, 0.06);

  backdrop-filter: blur(18px);

  padding: 34px 28px;

  border-radius: 30px;

  overflow: hidden;

  transition: 0.45s ease;

  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.06);
}

.why-card::before {
  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), transparent);

  opacity: 0;

  transition: 0.4s;
}

.why-card:hover {
  transform: translateY(-10px);

  border-color: rgba(212, 175, 55, 0.22);

  box-shadow: 0 20px 55px rgba(15, 23, 42, 0.1);
}

.why-card:hover::before {
  opacity: 1;
}

.why-icon {
  width: 72px;
  height: 72px;

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

  border-radius: 22px;

  margin-bottom: 24px;

  background: rgba(212, 175, 55, 0.12);

  color: #b98b11;

  font-size: 30px;
}

.why-card h4 {
  color: #111827;

  font-size: 24px;

  line-height: 1.3;

  margin-bottom: 14px;

  font-family: "Poppins", sans-serif;
}

.why-card p {
  color: #64748b;

  font-size: 15px;

  line-height: 1.8;
}

/* PREMIUM CARD */

.luxury-why {
  background: linear-gradient(135deg, #0d1b2a, #12263d);

  border: none;

  box-shadow: 0 20px 60px rgba(13, 27, 42, 0.25);
}

.luxury-why h4,
.luxury-why p {
  color: white;
}

.luxury-why-icon {
  background: rgba(255, 255, 255, 0.12);

  color: var(--secondary);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {
  .why-container {
    grid-template-columns: 1fr;
  }

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

  .why-left p {
    margin-inline: auto;
  }
}

@media (max-width: 768px) {
  .why-section {
    padding: 90px 20px;
  }

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

  .why-left h2 {
    font-size: 42px;
  }

  .why-card {
    padding: 28px 22px;
    border-radius: 24px;
  }

  .why-card h4 {
    font-size: 21px;
  }
}

@media (max-width: 480px) {
  .why-section {
    padding: 70px 16px;
  }

  .why-left h2 {
    font-size: 34px;
  }

  .why-left p {
    font-size: 15px;
  }

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

  .why-card {
    padding: 24px 20px;
  }

  .why-icon {
    width: 62px;
    height: 62px;

    font-size: 26px;
  }

  .why-card h4 {
    font-size: 19px;
  }

  .why-card p {
    font-size: 14px;
  }
}

/* =========================
   EXPERIENCE GALLERY SECTION
========================= */

.gallery-section {
  position: relative;

  padding: 130px 8%;

  background: #f7f8fa;

  overflow: hidden;
}

.gallery-top {
  text-align: center;

  max-width: 760px;

  margin: auto auto 80px;
}

.gallery-top h2 {
  color: #153a63;

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

  line-height: 1;

  margin-bottom: 20px;

  font-family: "Poppins", sans-serif;
}

/* GRID */

.gallery-grid {
  max-width: 1450px;

  margin: auto;

  display: grid;

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

  grid-auto-rows: 260px;

  gap: 24px;
}

/* ITEMS */

.gallery-item {
  position: relative;

  overflow: hidden;

  border-radius: 32px;

  cursor: pointer;

  background: #000;
}

.gallery-item img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: 0.7s ease;
}

.gallery-item::before {
  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.1));

  z-index: 1;
}

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

/* OVERLAY */

.gallery-overlay {
  position: absolute;

  left: 28px;
  bottom: 24px;

  z-index: 2;
}

.gallery-overlay span {
  color: white;

  font-size: 22px;

  font-family: "Poppins", sans-serif;

  font-weight: 600;

  letter-spacing: 0.5px;
}

/* CUSTOM SIZES */

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

/* HOVER EFFECT */

.gallery-item:hover .gallery-overlay span {
  color: var(--secondary);

  transition: 0.4s;
}

.seemore-gallery-btn {
  position: relative;

  width: fit-content;

  margin: 60px auto 0;

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

  gap: 12px;

  padding: 18px 34px;

  border-radius: 60px;

  background: #dfb734;

  color: #111827;

  text-decoration: none;

  font-size: 14px;

  font-weight: 700;

  letter-spacing: 1px;

  overflow: hidden;

  z-index: 1;

  transition: 0.45s ease;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item.large,
  .gallery-item.wide {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .gallery-section {
    padding: 90px 20px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;

    grid-auto-rows: 260px;
  }

  .gallery-item.large,
  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-top h2 {
    font-size: 40px;
  }

  .gallery-overlay span {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .gallery-section {
    padding: 70px 16px;
  }

  .gallery-top h2 {
    font-size: 34px;
  }

  .gallery-grid {
    gap: 18px;
  }

  .gallery-item {
    border-radius: 24px;
  }

  .gallery-overlay {
    left: 20px;
    bottom: 18px;
  }

  .gallery-overlay span {
    font-size: 18px;
  }
}

/* =========================
   TESTIMONIAL SECTION
========================= */

.testimonial-section {
  position: relative;

  padding: 130px 8%;

  background: #f7f8fa;

  overflow: hidden;
}

.testimonial-section::before {
  content: "";

  position: absolute;

  width: 550px;
  height: 550px;

  border-radius: 50%;

  background: rgba(212, 175, 55, 0.08);

  filter: blur(120px);

  top: -180px;
  right: -180px;
}

.testimonial-top {
  position: relative;
  z-index: 2;

  text-align: center;

  max-width: 760px;

  margin: auto auto 80px;
}

.testimonial-top h2 {
  color: #153a63;

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

  line-height: 1;

  margin-bottom: 20px;

  font-family: "Poppins", sans-serif;
}

/* WRAPPER */

.testimonial-wrapper {
  position: relative;

  max-width: 1350px;

  margin: auto;

  overflow: hidden;
  padding: 10px;
}

/* TRACK */

.testimonial-track {
  display: flex;
  gap: 28px;

  will-change: transform;
}

/* CARD */

.testimonial-card {
  position: relative;

  min-width: calc(33.333% - 19px);

  padding: 34px;

  border-radius: 34px;

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

  backdrop-filter: blur(18px);

  border: 1px solid rgba(15, 23, 42, 0.08);

  overflow: hidden;

  transition:
    transform 0.8s ease,
    opacity 0.8s ease,
    background 0.6s ease,
    border 0.6s ease;

  /* box-shadow: 0 15px 45px rgba(15, 23, 42, 0.06); */
}

.testimonial-card::before {
  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(135deg, rgba(212, 175, 55, 0.14), transparent);

  opacity: 0;

  transition: 0.4s;
}

.testimonial-card:hover {
  transform: translateY(-2px);

  border-color: rgba(212, 175, 55, 0.25);

  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.12);
}

.testimonial-card:hover::before {
  opacity: 1;
}

/* TOP */

.testimonial-user {
  display: flex;

  align-items: center;

  gap: 16px;

  margin-bottom: 26px;
}

.testimonial-user img {
  width: 74px;
  height: 74px;

  border-radius: 50%;

  object-fit: cover;

  border: 3px solid rgba(212, 175, 55, 0.18);
}

.testimonial-user-info h4 {
  color: #111827;

  font-size: 22px;

  margin-bottom: 4px;

  font-family: "Poppins", sans-serif;
}

.testimonial-user-info span {
  color: #8a94a6;

  font-size: 14px;
}

/* QUOTE */

.testimonial-quote {
  position: absolute;

  top: 28px;
  right: 28px;

  font-size: 54px;

  color: rgba(212, 175, 55, 0.18);
}

/* TEXT */

.testimonial-text {
  color: #5f6b7a;

  font-size: 16px;

  line-height: 1.9;

  margin-bottom: 28px;
}

/* RATING */

.testimonial-rating {
  display: flex;

  gap: 6px;
}

.testimonial-rating i {
  color: #d4af37;

  font-size: 18px;
}

/* CONTROLS */

.testimonial-controls {
  display: flex;

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

  gap: 18px;

  margin-top: 55px;
}

.testimonial-btn {
  width: 70px;
  height: 70px;

  border-radius: 50%;

  border: none;

  background: #0d1b2a;

  color: white;

  cursor: pointer;

  font-size: 24px;

  transition: 0.45s ease;

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

  box-shadow: 0 15px 35px rgba(13, 27, 42, 0.18);
}

.testimonial-btn:hover {
  background: var(--secondary);

  color: black;

  transform: translateY(-6px) scale(1.05);
}

/* ACTIVE CARD */

.testimonial-card.active {
  transform: scale(1.02);

  background: linear-gradient(145deg, #081120 0%, #10243d 50%, #1b3354 100%);

  border: 2px solid #d4af37;
}

.testimonial-card.active .testimonial-user-info h4,
.testimonial-card.active .testimonial-user-info span,
.testimonial-card.active .testimonial-text {
  color: #ffffff;
}

/* quote icon */

.testimonial-card.active .testimonial-quote {
  color: rgba(255, 255, 255, 0.15);
}

/* RESPONSIVE */

@media (max-width: 1100px) {
  .testimonial-card {
    min-width: calc(50% - 14px);
  }
}

@media (max-width: 768px) {
  .testimonial-section {
    padding: 90px 20px;
  }

  .testimonial-card {
    min-width: 100%;
  }

  .testimonial-top h2 {
    font-size: 42px;
  }

  .testimonial-card {
    padding: 28px;
  }
}

@media (max-width: 480px) {
  .testimonial-section {
    padding: 70px 16px;
  }

  .testimonial-top h2 {
    font-size: 34px;
  }

  .testimonial-user img {
    width: 62px;
    height: 62px;
  }

  .testimonial-user-info h4 {
    font-size: 19px;
  }

  .testimonial-text {
    font-size: 15px;
  }

  .testimonial-btn {
    width: 60px;
    height: 60px;
  }
}

/* =========================
   FAQ SECTION
========================= */

.faq-section {
  position: relative;

  padding: 130px 8%;

  background: linear-gradient(180deg, #091d35 0%, #0d1b2a 100%);

  overflow: hidden;
}

.faq-section::before {
  content: "";

  position: absolute;

  width: 550px;
  height: 550px;

  border-radius: 50%;

  background: rgba(212, 175, 55, 0.08);

  filter: blur(120px);

  top: -180px;
  left: -180px;
}

.faq-top {
  position: relative;

  z-index: 2;

  text-align: center;

  max-width: 760px;

  margin: auto auto 80px;
}

.faq-top h2 {
  color: white;

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

  line-height: 1;

  margin-bottom: 20px;

  font-family: "Poppins", sans-serif;
}

.faq-container {
  position: relative;

  z-index: 2;

  max-width: 1000px;

  margin: auto;

  display: flex;
  flex-direction: column;

  gap: 24px;
}

.faq-item {
  position: relative;

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

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

  border-radius: 32px;

  overflow: hidden;

  backdrop-filter: blur(18px);

  transition: 0.5s ease;
}

.faq-item::before {
  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(135deg, rgba(212, 175, 55, 0.14), transparent);

  opacity: 0;

  transition: 0.5s;
}

.faq-item:hover {
  transform: translateY(-4px);

  border-color: rgba(212, 175, 55, 0.25);

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.faq-item:hover::before {
  opacity: 1;
}

.faq-item.active {
  border-color: rgba(212, 175, 55, 0.4);

  background: linear-gradient(145deg,
      rgba(212, 175, 55, 0.12),
      rgba(255, 255, 255, 0.04));

  box-shadow:
    0 0 40px rgba(212, 175, 55, 0.08),
    0 20px 60px rgba(0, 0, 0, 0.35);
}

.faq-question {
  position: relative;

  z-index: 2;

  display: flex;

  align-items: center;

  gap: 24px;

  padding: 32px;

  cursor: pointer;
}

.faq-number {
  font-size: 42px;

  font-weight: 700;

  color: rgba(212, 175, 55, 0.25);

  font-family: "Poppins", sans-serif;

  min-width: 70px;
}

.faq-question h3 {
  flex: 1;

  color: white;

  font-size: 24px;

  line-height: 1.4;

  font-family: "Poppins", sans-serif;
}

.faq-icon {
  width: 62px;
  height: 62px;

  min-width: 62px;

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

  border-radius: 20px;

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

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

  color: var(--secondary);

  font-size: 26px;

  transition: 0.5s ease;
}

.faq-answer {
  display: grid;

  grid-template-rows: 0fr;

  transition: grid-template-rows 0.6s ease;
}

.faq-answer p {
  overflow: hidden;

  color: #c7d2df;

  font-size: 16px;

  line-height: 1.9;

  padding: 0 32px 0 126px;
}

.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.active .faq-answer p {
  padding-bottom: 32px;
}

.faq-item.active .faq-icon {
  transform: rotate(135deg) scale(1.08);

  background: var(--secondary);

  color: black;

  box-shadow: 0 0 30px rgba(212, 175, 55, 0.45);
}

.faq-item.active::after {
  content: "";

  position: absolute;

  width: 200px;
  height: 200px;

  border-radius: 50%;

  background: rgba(212, 175, 55, 0.08);

  filter: blur(60px);

  top: -50px;
  right: -50px;

  animation: faqGlow 4s linear infinite;
}

@keyframes faqGlow {
  0% {
    transform: rotate(0deg) translateY(0px);
  }

  50% {
    transform: rotate(180deg) translateY(10px);
  }

  100% {
    transform: rotate(360deg) translateY(0px);
  }
}

@media (max-width: 768px) {
  .faq-section {
    padding: 90px 20px;
  }

  .faq-question {
    padding: 24px;
    gap: 18px;
  }

  .faq-question h3 {
    font-size: 20px;
  }

  .faq-number {
    font-size: 30px;

    min-width: 45px;
  }

  .faq-answer p {
    padding: 0 24px 24px 24px;
    font-size: 15px;
  }

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

    min-width: 54px;

    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .faq-section {
    padding: 70px 16px;
  }

  .faq-top h2 {
    font-size: 34px;
  }

  .faq-question h3 {
    font-size: 18px;
  }

  .faq-item {
    border-radius: 24px;
  }
}

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

.footer-section {
  position: relative;

  padding: 120px 8% 40px;

  overflow: hidden;

  background: linear-gradient(180deg, #153a63 0%, #040b14 100%);

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

/* GLOW EFFECT */

.footer-glow {
  position: absolute;

  border-radius: 50%;

  filter: blur(120px);

  z-index: 1;

  animation: footerFloat 8s ease-in-out infinite;
}

.footer-glow-1 {
  width: 350px;
  height: 350px;

  background: rgba(212, 175, 55, 0.12);

  top: -120px;
  left: -80px;
}

.footer-glow-2 {
  width: 280px;
  height: 280px;

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

  bottom: -120px;
  right: -80px;

  animation-delay: 2s;
}

@keyframes footerFloat {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(25px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* WAVE */

.footer-wave {
  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 1px;

  background: linear-gradient(90deg,
      transparent,
      rgba(212, 175, 55, 0.9),
      transparent);

  animation: waveMove 4s linear infinite;
}

@keyframes waveMove {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

/* CONTAINER */

.footer-container {
  position: relative;

  z-index: 2;

  max-width: 1450px;

  margin: auto;

  display: grid;

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

  gap: 50px;

  padding-bottom: 60px;
}

/* LOGO */

.footer-logo {
  display: flex;

  align-items: center;

  gap: 12px;

  margin-bottom: 22px;
}

.footer-logo i {
  width: 60px;
  height: 60px;

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

  border-radius: 18px;

  background: rgba(212, 175, 55, 0.12);

  border: 1px solid rgba(212, 175, 55, 0.2);

  color: var(--secondary);

  font-size: 28px;
}

.footer-logo span {
  color: white;

  font-size: 30px;

  font-family: "Poppins", sans-serif;

  font-weight: 700;
}

.footer-brand p {
  color: #aeb9c8;

  font-size: 16px;

  line-height: 1.9;

  max-width: 420px;

  margin-bottom: 30px;
}

/* SOCIAL */

.footer-socials {
  display: flex;

  align-items: center;

  gap: 16px;
}

.footer-socials a {
  width: 56px;
  height: 56px;

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

  border-radius: 18px;

  text-decoration: none;

  color: white;

  font-size: 22px;

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

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

  backdrop-filter: blur(10px);

  transition: 0.45s ease;

  position: relative;

  overflow: hidden;
}

.footer-socials a::before {
  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), transparent);

  opacity: 0;

  transition: 0.4s;
}

.footer-socials a:hover {
  transform: translateY(-8px) rotate(4deg);

  border-color: rgba(212, 175, 55, 0.4);

  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2);

  color: var(--secondary);
}

.footer-socials a:hover::before {
  opacity: 1;
}

/* COLUMN */

.footer-column h4 {
  color: white;

  font-size: 22px;

  margin-bottom: 26px;

  font-family: "Poppins", sans-serif;

  position: relative;
}

.footer-column h4::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -10px;

  width: 50px;
  height: 2px;

  background: var(--secondary);

  border-radius: 50px;
}

.footer-column ul {
  list-style: none;

  display: flex;
  flex-direction: column;

  gap: 18px;
}

.footer-column ul li a,
.footer-contact li {
  color: #b7c4d4;

  text-decoration: none;

  font-size: 16px;

  transition: 0.35s ease;
}

.footer-column ul li a:hover {
  color: var(--secondary);

  padding-left: 8px;
}

/* CONTACT */

.footer-contact li {
  display: flex;

  align-items: flex-start;

  gap: 12px;

  line-height: 1.7;
}

.footer-contact i {
  color: var(--secondary);

  font-size: 20px;

  margin-top: 2px;
}

/* BOTTOM */

.footer-bottom {
  position: relative;

  z-index: 2;

  max-width: 1450px;

  margin: auto;

  padding-top: 35px;

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

  display: flex;

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

  gap: 20px;

  flex-wrap: wrap;
}

.footer-bottom p,
.footer-bottom span {
  color: #93a3b8;

  font-size: 15px;
}

/* RESPONSIVE */

@media (max-width: 1100px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .footer-section {
    padding: 90px 20px 30px;
  }

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

    gap: 40px;
  }

  .footer-logo span {
    font-size: 26px;
  }

  .footer-bottom {
    flex-direction: column;

    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-section {
    padding: 70px 16px 24px;
  }

  .footer-logo {
    align-items: flex-start;
  }

  .footer-logo span {
    font-size: 22px;
  }

  .footer-brand p,
  .footer-column ul li a,
  .footer-contact li {
    font-size: 15px;
  }

  .footer-socials a {
    width: 50px;
    height: 50px;

    font-size: 20px;
  }

  .footer-column h4 {
    font-size: 20px;
  }
}

/* =========================
EDITORIAL SECTION
========================= */

.editorial-section {
  width: 100%;
  background: #f1f1f1;
  padding: 120px 4%;
  overflow: hidden;
}

/* =========================
GRID
========================= */

.editorial-grid {
  display: grid;

  grid-template-columns:
    0.8fr 1.6fr 1fr 1fr;

  grid-auto-rows: 220px;

  gap: 14px;

  grid-auto-flow: dense;
}

/* ITEM */

.grid-item {
  position: relative;
  overflow: hidden;
  background: #ddd;
}

.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  transition: 0.7s ease;
}

.grid-item:hover img {
  transform: scale(1.08);
}

/* SIZES */

.small {
  grid-row: span 1;
}

.large {
  grid-row: span 2;
}

.medium {
  grid-row: span 1;
}

.tall {
  grid-row: span 2;
}

/* =========================
DESTINATION CARD
========================= */

.card-border {
  position: absolute;

  inset: 12px;

  border: 2px dashed #ffd400;

  pointer-events: none;
}

.price {
  color: #ff4d4d;

  font-size: 21px;

  font-weight: 700;

  margin-bottom: 24px;
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 1200px) {
  .editorial-grid {
    grid-template-columns: 1fr 1fr;
  }

  .large,
  .destination-card,
  .tall {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .editorial-section {
    padding: 90px 20px;
  }

  .heading-content h2 {
    font-size: 42px;
  }

  .editorial-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .large,
  .destination-card,
  .tall {
    grid-column: span 1;
  }

  .destination-card {
    padding: 35px;
  }

  .destination-card h3 {
    font-size: 38px;
  }
}

/* =========================
   LIVE TRACKING SECTION
========================= */

.tracking-section {
  position: relative;
  padding: 80px 8%;
  overflow: hidden;

  background:
    linear-gradient(
      180deg,
      #f7f8fa 0%,
      #eef2f6 15%,
      #d8dce4 25%,
      #517197 55%,
      #224065 75%,
      #091d35 100%
    );
}

.tracking-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 180px;

  background: linear-gradient(
    to bottom,
    #f7f8fa,
    transparent
  );

  pointer-events: none;
}

.tracking-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;

  width: 100%;
  height: 180px;

  background: linear-gradient(
    to top,
    #091d35,
    transparent
  );

  pointer-events: none;
}

/* CONTENT ABOVE OVERLAY */

.tracking-container {
  position: relative;
  z-index: 2;

  max-width: 1400px;

  margin: auto;

  display: grid;

  grid-template-columns: 500px 1fr;

  gap: 100px;

  align-items: center;
}

/* PHONE SIDE */

.tracking-phone-side {
  display: flex;
  justify-content: center;
}

/* IPHONE */

.iphone {
  position: relative;

  width: 360px;
  height: 740px;

  padding: 10px;

  border-radius: 68px;

  background: linear-gradient(145deg,
      #767676,
      #1f1f1f 20%,
      #909090 50%,
      #1f1f1f 80%,
      #6f6f6f);

  box-shadow:
    0 80px 120px rgba(0, 0, 0, 0.18),
    0 35px 60px rgba(0, 0, 0, 0.12),
    inset 0 2px 4px rgba(255, 255, 255, 0.2);

  transform: perspective(1800px) rotateY(10deg) rotateX(5deg);

  transition: 0.6s ease;
}

.iphone:hover {
  transform: perspective(1800px) rotateY(-4deg) rotateX(2deg) translateY(-12px);
}

.iphone-screen {
  position: relative;

  width: 100%;
  height: 100%;

  overflow: hidden;

  border-radius: 58px;

  background: #000;

  border: 3px solid #0a0a0a;
}

.iphone-screen iframe {
  width: 100%;
  height: 100%;

  border: none;
}

.dynamic-island {
  position: absolute;

  top: 18px;
  left: 50%;

  transform: translateX(-50%);

  width: 128px;
  height: 34px;

  background: #000;

  border-radius: 30px;

  z-index: 50;

  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.05),
    0 2px 10px rgba(0, 0, 0, 0.5);
}

.dynamic-island::before {
  content: "";

  position: absolute;

  right: 18px;
  top: 10px;

  width: 10px;
  height: 10px;

  border-radius: 50%;

  background: #171717;
}

.dynamic-island::after {
  content: "";

  position: absolute;

  left: 20px;
  top: 11px;

  width: 42px;
  height: 8px;

  border-radius: 10px;

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

.home-indicator {
  position: absolute;

  bottom: 10px;
  left: 50%;

  transform: translateX(-50%);

  width: 140px;
  height: 5px;

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

  border-radius: 50px;

  z-index: 20;
}

.screen-glare {
  position: absolute;

  inset: 0;

  pointer-events: none;

  background: linear-gradient(120deg,
      rgba(255, 255, 255, 0.18) 0%,
      rgba(255, 255, 255, 0.05) 20%,
      transparent 40%);

  z-index: 10;
}

.iphone-side-btn {
  position: absolute;

  background: #5a5a5a;

  border-radius: 20px;

  z-index: 5;
}

.volume-up {
  width: 5px;
  height: 70px;

  left: -4px;
  top: 140px;
}

.volume-down {
  width: 5px;
  height: 70px;

  left: -4px;
  top: 230px;
}

.power-btn {
  width: 5px;
  height: 110px;

  right: -4px;
  top: 180px;
}

/* CONTENT */

.tracking-content h2 {
  font-size: 62px;

  line-height: 1.05;

  color: #ffffff;

  margin: 20px 0;

  font-family: "Poppins", sans-serif;
}

.tracking-content p {
  color: #e6e6e6;

  line-height: 1.9;

  max-width: 650px;

  margin-bottom: 35px;
}

/* LIST */

.tracking-list {
  display: flex;

  flex-direction: column;

  gap: 18px;

  margin-bottom: 40px;
}

.tracking-item {
  display: flex;

  align-items: center;

  gap: 14px;

  font-size: 17px;

  color: #e4e4e4;

  font-weight: 600;
}

.tracking-item i {
  width: 50px;
  height: 50px;

  border-radius: 50%;

  background: rgba(223, 183, 52, 0.12);

  color: #dfb734;

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

  font-size: 22px;
}

/* BUTTON */

.tracking-btn {
  display: inline-flex;

  align-items: center;

  gap: 12px;

  padding: 18px 34px;

  background: #d4af37;

  color: #111827;

  text-decoration: none;

  border-radius: 60px;

  font-weight: 700;

  transition: 0.4s;
}

.iphone-screen iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ANIMATION */

@keyframes floatCard {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

/* RESPONSIVE */

@media (max-width: 1100px) {
  .tracking-container {
    grid-template-columns: 1fr;
    gap: 70px;
  }

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

  .tracking-list {
    align-items: center;
  }

  .tracking-content h2 {
    font-size: 48px;
  }
}

@media (max-width: 768px) {
  .tracking-section {
    padding: 90px 6%;
  }

  .iphone {
    width: 290px;
    height: 600px;

    transform: none;
  }

  .iphone:hover {
    transform: none;
  }

  .tracking-content h2 {
    font-size: 34px;
  }
}

/* --------------------------------------------------------------- */

/* =========================
ADDONS SECTION
========================= */

.addons-section {
  background: #f5f1e2;
  padding: 120px 0;
}

.addons-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.addons-header {
  text-align: center;
  margin-bottom: 45px;
}

.addons-header h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
}

.addons-header p {
  color: #6b7280;
  font-size: 15px;
}

.addons-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 70px;
}

.addons-filters button {
  height: 42px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid #d8dde6;
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.addons-filters button:hover {
  transform: translateY(-2px);
}

.addons-filters button.active {
  background: #2d3e50;
  border-color: #2d3e50;
  color: #fff;
}

.addons-category {
  margin-bottom: 70px;
}

.addons-category h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 25px;
}

.addons-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.addon-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 28px;
  transition: all 0.35s ease;
}

.addon-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.addon-image {
  width: 160px;
  min-width: 160px;
  height: 160px;
  border-radius: 16px;
  overflow: hidden;
}

.addon-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.addon-content {
  flex: 1;
}

.addon-content h4 {
  font-size: 1.35rem;
  margin-bottom: 8px;
  color: #111827;
}

.addon-sub {
  color: #9ca3af;
  font-size: 13px;
  margin-bottom: 12px;
}

.addon-desc {
  color: #6b7280;
  line-height: 1.7;
  max-width: 700px;
  margin-bottom: 16px;
}

.addon-price {
  font-size: 1.9rem;
  font-weight: 700;
  color: #111827;
}

.addon-action {
  min-width: 130px;
  text-align: right;
}

.addon-action a {
  text-decoration: none;
  color: #111827;
  font-weight: 600;
  font-size: 14px;
}

.addon-action i {
  margin-left: 8px;
  transition: 0.3s;
}

.addon-card:hover .addon-action i {
  transform: rotate(90deg);
}

/* =========================
IMAGE LIGHTBOX
========================= */

.image-lightbox {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.88);

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

  opacity: 0;
  visibility: hidden;

  transition: 0.35s ease;

  z-index: 99999;
  padding: 20px;
}

.image-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.image-lightbox img {
  max-width: 90%;
  max-height: 90vh;

  border-radius: 18px;

  transform: scale(0.8);
  transition: 0.35s ease;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.image-lightbox.active img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 25px;
  right: 35px;

  font-size: 42px;
  color: #fff;

  cursor: pointer;
  line-height: 1;

  transition: 0.3s ease;
}

.lightbox-close:hover {
  transform: rotate(90deg);
}

/* image hover */

.addon-image {
  cursor: pointer;
}

.addon-image img {
  transition: 0.35s ease;
}

.addon-card:hover .addon-image img {
  transform: scale(1.06);
}

@media (max-width: 991px) {
  .addons-container {
    padding: 0 20px;
  }

  .addon-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .addon-image {
    width: 100%;
    height: 260px;
  }

  .addon-action {
    width: 100%;
    text-align: left;
    margin-top: 10px;
  }
}