@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #00539c;
  --secondary-color: #ed1c24;
  --white-color: #fff;
  --black-color: #000;
}
body,
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Poppins", sans-serif;
}
ul li {
  list-style: none;
}
a {
  text-decoration: none;
}

.container {
  width: 85%;
  margin: auto;
}

section {
  padding: 2rem 2rem;
}

.section-label {
  font-family: "Space Mono", monospace;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.8rem;
}
.section-title {
  font-size: clamp(2.2rem, 4vw, 3rem);
  letter-spacing: 2px;
  line-height: 1.05;
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1rem;
  line-height: 1.7;
  max-width: 600px;
}

/* =================================================== */
/* navbar */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--glass-border);
  transition: all 0.3s;
}
nav.scrolled {
  padding: 0.7rem 2rem;
  background: rgba(255, 255, 255, 0.97);
}

.nav-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  text-decoration: none;
}
.logo-img {
  width: 150px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: rgba(7, 7, 7, 0.75);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: width 0.3s;
}
.nav-links a:hover {
  color: var(--primary-color);
}
.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}
.btn-nav {
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-nav.call {
  background: transparent;
  background-color: var(--primary-color);
  border: 1.5px solid var(--primary-color);
  color: var(--white-color);
}
.btn-nav.call:hover {
  background: var(--primary-color);
  color: var(--white-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 109, 211, 0.35);
}
.btn-nav.wa {
  background: linear-gradient(135deg, #25d366, #128c7e);
  border: none;
  color: var(--white-color);
}
.btn-nav.wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.3rem;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 2.5px;
  background: var(--primary-color);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ── SIDEBAR ── */
.sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  height: 100vh;
  width: min(320px, 100vw);
  background: var(--dark2);
  border-left: 1px solid var(--glass-border);
  z-index: 2000;
  padding: 5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  backdrop-filter: blur(24px);
}
.sidebar.open {
  right: 0;
}
.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.sidebar-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.sidebar a {
  color: var(--white-color);
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--glass-border);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.sidebar a:hover {
  color: var(--red);
}
.sidebar-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: none;
  border: none;
  color: var(--white-color);
  font-size: 1.8rem;
  cursor: pointer;
}
.sidebar-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.sidebar-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  text-decoration: none;
  border-bottom: none;
  padding: 0;
  transition: all 0.3s;
}
.sidebar-social a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

/* =================================================== */
/* hero */

.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7rem 2rem 4rem;
  position: relative;
}
.hero-img {
  position: absolute;
  left: 0;
  bottom: 0;
}
.hero-img img {
  width: 470px;
}
.hero-right-overlay {
  position: absolute;
  right: -10%;
  bottom: 40px;
}
/* animated grid bg */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 83, 156, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 83, 156, 0.08) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 20s linear infinite;
}
@keyframes gridMove {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(100px);
  }
}

/* orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 8s ease-in-out infinite;
}
.orb1 {
  width: 600px;
  height: 600px;
  background: rgba(0, 83, 156, 0.25);
  top: -200px;
  right: -100px;
  animation-delay: 0s;
}
.orb2 {
  width: 400px;
  height: 400px;
  background: rgba(237, 28, 36, 0.18);
  bottom: -100px;
  left: -50px;
  animation-delay: -3s;
}
.orb3 {
  width: 300px;
  height: 300px;
  background: rgba(0, 83, 156, 0.15);
  top: 40%;
  left: 30%;
  animation-delay: -5s;
}
@keyframes orbFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-30px) scale(1.05);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgb(237, 28, 35);
  border: 1px solid rgba(237, 28, 36, 0.35);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 1.5rem;
  animation: badgePulse 2s ease-in-out infinite;
}
.badge-dot {
  width: 8px;
  height: 8px;
  background: rgb(47, 82, 255);
  border-radius: 50%;
  animation: blink 1.2s infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
}
@keyframes badgePulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(237, 28, 36, 0.3);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(237, 28, 36, 0);
  }
}

.hero-title {
  font-size: clamp(3rem, 8vw, 5rem);
  line-height: 1;
  letter-spacing: 3px;
  margin-bottom: 1rem;
}
.hero-title .line1 {
  display: block;
  color: var(--white);
}
.hero-title .line2 {
  display: block;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(55, 55, 55, 0.7);
  margin-bottom: 2rem;
  font-weight: 400;
  line-height: 1.6;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 2.5rem;
}
.pill {
  background: #ed1c23bb;
  border: 1px solid var(--glass-border);
  padding: 0.45rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  backdrop-filter: blur(8px);
  transition: all 0.3s;
  color: var(--white-color);
}
.pill:hover {
  background: var(--secondary-color);
  border-color: var(--primary-color);
  transform: translateY(-3px);
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}
.btn-primary,
.btn-secondary,
.btn-wa {
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), #0073d4);
  color: var(--white-color);
  box-shadow: 0 8px 30px var(--blue-glow);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px var(--blue-glow);
}
.btn-secondary {
  background: linear-gradient(135deg, var(--red), #c00);
  color: var(--white);
  box-shadow: 0 8px 30px var(--accent-glow);
}
.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px var(--accent-glow);
}
.btn-wa {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: var(--white);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
}
.btn-wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}

/* trust strip */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}
.trust-num {
  font-size: 2rem;
  background: linear-gradient(135deg, var(--blue), var(--red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.trust-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* partner logos scroll */
.partners-row {
  position: relative;
  overflow: hidden;
  margin-top: 3rem;
  padding: 1.2rem 0;
  background: var(--glass);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}
.partners-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: scrollPartners 18s linear infinite;
}
.partner-tag {
  white-space: nowrap;
  font-family: "Space Mono", monospace;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 2px;
  padding: 0.3rem 0.8rem;
}
.partner-tag.highlight {
  color: var(--white);
  font-weight: 700;
}
@keyframes scrollPartners {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ══════════════════════════════════
     FLAG SCROLL
  ══════════════════════════════════ */
.flag-section {
  padding: 2rem 0;
  overflow: hidden;
  background: rgba(0, 83, 156, 0.06);
}
.flag-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: scrollFlags 20s linear infinite;
}
.flag-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  white-space: nowrap;
  font-size: 0.9rem;
  font-weight: 600;
}

/* =================================================== */
.flag-top-section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 40px auto;
}

.flag-top-section h2 {
  font-size: 48px;
  text-align: center;
  color: var(--primary-color);
}
.flag-top-section h2 span {
  color: var(--secondary-color);
}
.country-flag-slider {
  width: 75%;
  height: 200px;
  overflow: hidden;
  background: #212e5b;
  padding: 10px 0;
  margin: auto;
  padding: 40px 20px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 40px;
}
.left-img-flag {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 100;
  background-color: #212e5b;
}
.left-img-flag img {
  width: 250px;
}

.country-flag-track {
  display: flex;
  will-change: transform;
}

.country-flag-item {
  width: 80px;
  height: 60px;
  margin: 0 20px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}
.postslider {
  overflow: hidden;
  background: #f5f5f5;
  padding: 30px 0;
}

/* ===== TRACK ===== */
.postslider-track {
  display: flex;
  width: max-content;
  animation: postslider-scroll 80s linear infinite;
}

/* Pause on hover */
.postslider:hover .postslider-track {
  animation-play-state: paused;
}

/* ===== IMAGE GROUP ===== */
.postslider-group {
  display: flex;
}

/* ===== IMAGES ===== */
.postslider-group img {
  width: 260px;
  margin-right: 15px;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.postslider-group img:hover {
  transform: scale(1.05);
}

/* ===== ANIMATION ===== */
@keyframes postslider-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ===== MODAL ===== */
.postslider-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.postslider-modal img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

.postslider-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .country-flag-item {
    width: 30px;
    height: 22px;
    margin: 0 12px;
  }
}

@media (max-width: 480px) {
  .country-flag-item {
    width: 24px;
    height: 18px;
    margin: 0 8px;
  }
}
/* =================================================== */
/* =================================================== */
.about {
  width: 100%;
}

/* =================================================== */
.areas-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.youtube-vid {
  display: flex;
  align-items: center;
  justify-content: center;
}
.youtube-vid iframe {
  margin: auto;
}
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.5rem;
}
.area-tag {
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  transition: all 0.3s;
  cursor: default;
}
.area-tag:hover {
  transform: scale(1.05);
}

/* =================================================== */
/* =================================================== */
.sticky-btns {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: flex-end;
}
.sticky-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  transition: all 0.3s;
  white-space: nowrap;
  color: var(--white);
}
.sticky-btn.wa {
  background: #25d366;
}
.sticky-btn.call {
  background: var(--primary-color);
  color: var(--white-color);
}
.sticky-btn:hover {
  transform: translateX(-5px) scale(1.03);
}

/* =================================================== */
.stats-section {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    #003875 50%,
    rgba(237, 28, 36, 0.8) 100%
  );
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
  color: var(--white-color);
}
.stats-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}
.stat-item {
  text-align: center;
}
.stat-num {
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1;
  color: var(--white);
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}
.stat-label {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 0.3rem;
  font-weight: 800;
}

/* =================================================== */
/* =================================================== */
:root {
  --primary-color: #00539c;
  --secondary-color: #ed1c24;
}

/* FAQ SECTION */
.Faq-section {
  padding: 80px 20px;
  background: #f9fbff;
}

.Faq-container {
  max-width: 900px;
  margin: auto;
}

.Faq-title {
  text-align: center;
  font-size: 32px;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.Faq-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 40px;
}

/* FAQ ITEMS */
.Faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.Faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 20px;
  border: none;
  background: #fff;
  font-size: 16px;
  cursor: pointer;
  position: relative;
}

.Faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 20px;
}

.Faq-item.active .Faq-question::after {
  content: "-";
}

.Faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  padding: 0 20px;
}

.Faq-item.active .Faq-answer {
  max-height: 200px;
  padding: 15px 20px;
}

/* CTA SECTION */
.Faq-section-cta {
  padding: 80px 20px;
  background: linear-gradient(135deg, #00539c, #0a6ed1);
  color: #fff;
  text-align: center;
}

.Faq-cta-box h2 {
  font-size: 28px;
  margin-bottom: 25px;
}

.Faq-cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.Faq-btn {
  padding: 15px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.call-btn {
  background: #fff;
  color: var(--primary-color);
}

.whatsapp-btn {
  background: var(--secondary-color);
  color: #fff;
}

.Faq-btn:hover {
  transform: translateY(-3px);
}

.Faq-highlight {
  margin-top: 20px;
  font-size: 18px;
  font-weight: bold;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .Faq-title {
    font-size: 24px;
  }

  .Faq-cta-box h2 {
    font-size: 22px;
  }
}
/* =================================================== */
/* =================================================== */
:root {
  --primary-color: #00539c;
  --secondary-color: #ed1c24;
}

/* CONTACT */
.contact-section {
  padding: 80px 20px;
  background: #f8fbff;
}

.contact-container {
  display: flex;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
  flex-wrap: wrap;
}

.contact-info {
  flex: 1;
  background: #0b1f2a;
  color: #fff;
  padding: 30px;
  border-radius: 12px;
}

.contact-info h3 {
  margin-bottom: 10px;
}

.contact-info ul {
  margin: 20px 0;
  list-style: none;
}

.contact-info li {
  margin-bottom: 10px;
}

.contact-socials a {
  display: inline-block;
  margin-right: 10px;
  color: #fff;
  text-decoration: none;
}

/* FORM */
.contact-form {
  flex: 1;
}

.contact-form h3 {
  margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 6px;
  border: 1px solid #ddd;
}

.contact-row {
  display: flex;
  gap: 10px;
}

.contact-form button {
  background: var(--secondary-color);
  color: #fff;
  padding: 12px;
  border: none;
  width: 100%;
  cursor: pointer;
}

/* MAP */
.contact-map iframe {
  width: 100%;
  height: 350px;
  border: none;
}

/* FOOTER */
.contact-footer {
  background: #06141d;
  color: #fff;
  padding: 50px 20px;
}

.contact-footer-top {
  text-align: center;
  margin-bottom: 40px;
}

.contact-subscribe {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.contact-subscribe input {
  padding: 10px;
  width: 250px;
}

.contact-subscribe button {
  background: var(--secondary-color);
  border: none;
  color: #fff;
  padding: 10px 20px;
}

.contact-footer-main {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 60px;
}

.contact-links a {
  display: block;
  color: #ccc;
  text-decoration: none;
  margin: 5px 0;
}
.contact-links h4 {
  font-size: 24px;
}
/* SEO BOX */
.contact-seo {
  font-size: 12px;
  color: #777;
  margin-top: 30px;
}

/* COPYRIGHT */
.contact-copy {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
}
/* =================================================== */
.WhyChoose-section {
  padding: 80px 20px;
  background: #f8fbff;
}

.WhyChoose-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.WhyChoose-title {
  font-size: 32px;
  color: var(--primary-color);
}

.WhyChoose-subtitle {
  color: #666;
  margin-bottom: 40px;
}

/* SLIDER */
.WhyChoose-slider {
  overflow: hidden;
  position: relative;
}

.WhyChoose-track {
  display: flex;
  transition: transform 0.5s ease;
}

.WhyChoose-card {
  min-width: 32%;
  padding: 25px;
  background: #fff;
  margin: 10px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.WhyChoose-card i {
  font-size: 24px;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.WhyChoose-card h3 {
  margin-bottom: 10px;
}

.WhyChoose-card p {
  font-size: 14px;
  color: #666;
}

/* DOTS */
.WhyChoose-dots {
  margin-top: 20px;
}

.WhyChoose-dots span {
  height: 10px;
  width: 10px;
  background: #ccc;
  display: inline-block;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
}

.WhyChoose-dots .active {
  background: var(--secondary-color);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .WhyChoose-card {
    min-width: 50%;
  }
}

@media (max-width: 600px) {
  .WhyChoose-card {
    min-width: 100%;
  }
}
/* =================================================== */
.area-section {
  padding: 80px 20px;
  background: #f9fbff;
}

.area-container {
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 1100px;
  margin: auto;
  flex-wrap: wrap;
}

/* IMAGE */
.area-image {
  flex: 1;
}

.area-image img {
  width: 100%;
  border-radius: 40px 0 40px 0;
  object-fit: cover;
}

/* CONTENT */
.area-content {
  flex: 1;
}

.area-title {
  font-size: 32px;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.area-subtitle {
  color: #666;
  margin-bottom: 30px;
}

/* LIST */
.area-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.area-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.area-number {
  background: var(--secondary-color);
  color: #fff;
  font-weight: bold;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 18px;
}

.area-item p {
  color: #555;
  font-size: 15px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .area-container {
    flex-direction: column;
  }

  .area-title {
    font-size: 24px;
  }

  .area-image img {
    border-radius: 20px;
  }
}
/* =================================================== */

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-row {
    flex-direction: column;
  }

  .contact-footer-main {
    flex-direction: column;
  }

  .contact-subscribe {
    flex-direction: column;
    gap: 10px;
  }

  .contact-subscribe input {
    width: 100%;
  }
}
.contact-seo-list {
  margin-top: 30px;
}

.contact-seo-list ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px 20px;
  list-style: none;
  padding: 0;
}

.contact-seo-list li {
  font-size: 13px;
  color: #aaa;
  position: relative;
  padding-left: 15px;
}

/* bullet style */
.contact-seo-list li::before {
  content: "•";
  color: var(--secondary-color);
  position: absolute;
  left: 0;
}

/*  */
.brandsection {
  background: #f5f5f5;
  padding: 40px 0;
}

.brandsection-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  margin-top: 140px;
}

/* Banner */
.brandsection-banner {
  background: #ef1c25;
  border: 4px solid #1e5fa8;
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding: 40px;
  position: relative;
  height: 300px;
}

/* Text */
.brandsection-content {
  color: #fff;
  max-width: 60%;
}

.brandsection-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 15px;
}

.brandsection-subtitle {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.brandsection-desc {
  font-size: 18px;
  font-weight: 500;
}

/* Image */
.brandsection-image img {
  height: 460px;
  object-fit: contain;
  margin-bottom: -50px;
}

/* Logos */
.brandsection-logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  flex-wrap: wrap;
  gap: 20px;
}

.brandsection-logos img {
  height: 80px;
  object-fit: contain;
  padding: 10px 20px;
}

.sectionCta {
  background: #9e9e9e;
  padding: 40px 20px;
  text-align: center;
}

.sectionCta-container {
  max-width: 900px;
  margin: auto;
}

.sectionCta-title {
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 25px;
}

/* Buttons wrapper */
.sectionCta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

/* Base button */
.sectionCta-btn {
  padding: 12px 22px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s ease;
}

/* Light button */
.sectionCta-btn-light {
  background: #e0e0e0;
  color: #333;
}

.sectionCta-btn-light:hover {
  background: #d5d5d5;
}

/* Primary (WhatsApp) */
.sectionCta-btn-primary {
  background: #ef1c25;
  color: #fff;
}

.sectionCta-btn-primary:hover {
  background: #d9171f;
}

/* Bottom note */
.sectionCta-note {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}
.hero-img-des {
  display: none;
}
.flag-top-section img {
  width: 100%;
}
.brandsection-banner-imgs img {
  display: none;
}
/* RESPONSIVE */
@media (max-width: 992px) {
  .contact-seo-list ul {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .contact-seo-list ul {
    grid-template-columns: 1fr;
  }
}
/* =================================================== */
/* =================================================== */

/* responsive */
@media (max-width: 768px) {
  .container {
    width: 90%;
    margin: auto;
  }
  .nav-links,
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  nav {
    padding: 0.9rem 1.2rem;
  }
  section {
    padding: 4rem 1.2rem;
  }
  .hero {
    height: 100%;
    padding: 6rem 1.2rem 3rem;
  }
  .sticky-btn span {
    display: none;
  }
  .sticky-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    padding: 0;
    justify-content: center;
    font-size: 1.3rem;
  }
  .hero-img {
    display: none;
  }
  .hero-img-des {
    display: block;
    width: 100%;
    margin: 2rem auto 0;
  }
  .hero-img-des img {
    width: 100%;
  }
  .hero-title {
    font-size: 28px;
  }
  .areas-section .container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .brandsection-banner {
    position: relative;
    height: 100%;
    display: block;
    padding: 40px 40px 0px 40px;
    object-fit: cover;
  }
  .brandsection-image {
    position: relative;
    display: block;
    margin: 0 auto;
    height: auto;
    width: 300px;
  }
  .brandsection-image img {
    width: 100%;
    object-fit: cover;
    margin: 0 0 0 -20px;
    padding: 0;
  }
  .brandsection-content {
    text-align: center;
    max-width: 100%;
    margin: 20px auto 0;
  }
  .brandsection-title {
    font-size: 32px;
  }
  .brandsection-logos {
    width: 100%;
  }
  .brandsection-logos img {
    width: 150px;
  }
  .flag-top-section h2 {
    font-size: 30px;
  }
  .flag-top-section img {
    width: 100%;
  }
  .country-flag-slider {
    flex-direction: column-reverse;
  }
  .left-img-flag img {
    width: 120px;
  }
  .hero-right-overlay {
    display: none;
  }
  .country-flag-slider {
    width: 100%;
    border-radius: 0;
  }
  .country-flag-item {
    width: 120px;
    height: 80px;
  }
  .brandsection-banner {
    display: none;
  }
  .brandsection-banner-imgs img {
    display: block;
    width: 100%;
    object-fit: cover;
  }
}
@media (max-width: 480px) {
  .hero-btns {
    flex-direction: column;
    align-items: center;
  }
  .cta-btns {
    flex-direction: column;
    align-items: center;
  }
}
/* =================================================== */
