* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #000000;
  color: #ffffff;
  overflow-x: hidden;
}

.oswald {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
}

.primary-color {
  color: #ff5037;
}

.bg-primary {
  background-color: #ff5037 !important;
}

.border-primary {
  border-color: #ff5037 !important;
}

.btn-primary {
  background: linear-gradient(135deg, #ff5037 0%, #cc4028 100%);
  border: none;
  color: #ffffff;
  font-weight: 700;
  transition: all 0.3s ease;
}

.btn-wpp {
  background: #25d366 !important;
  text-shadow: 0px 0px 2px #0000006e;
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(255, 80, 55, 0.4);
}

.grd-txt {
  /* background: linear-gradient(135deg, #ff5037 0%, #ffffff 50%, #ff5037 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; */
}

.main-box {
  max-width: 1920px;
  margin: 0 auto;
  border: 4px solid #ff5037;
}

.logo-top {
  height: 132px;
  width: auto;
}

/* Hero Section */
.hero-sec {
  position: relative;
  min-height: 45vh;
  min-height: 400px;
  background: #000;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 177.77vh;
  height: 100vh;
  min-width: 100%;
  min-height: 100%;
  border: none;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
}

.arrow-bounce {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

/* Cards */
.card-glow {
  position: relative;
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid #ff5037;
  border-radius: 1.5rem;
  transition: all 0.3s ease;
}

.card-glow::before {
  content: '';
  position: absolute;
  inset: -4px;
  background: linear-gradient(135deg, #ff5037, #cc4028);
  border-radius: 1.5rem;
  filter: blur(8px);
  opacity: 0.25;
  z-index: -1;
}

.card-glow:hover::before {
  opacity: 0.4;
}

.card-glow:hover {
  box-shadow: 0 20px 40px rgba(255, 80, 55, 0.3);
}

.icon-box {
  width: 64px;
  height: 64px;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, #ff5037, #cc4028);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.card-glow:hover .icon-box {
  transform: scale(1.1);
}

.delivery-box {
  width: 80px;
  height: 80px;
  border: 2px solid #ff5037;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.card-glow:hover .delivery-box {
  transform: scale(1.1) rotate(6deg);
}

/* Form */
.form-ctrl {
  height: 56px;
  border: 2px solid #6c757d;
  background: rgba(0, 0, 0, 0.4);
  color: #ffffff;
  border-radius: 0.75rem;
  font-size: 1.125rem;
}

.form-ctrl:focus {
  background: rgba(0, 0, 0, 0.4);
  border-color: #ff5037;
  color: #ffffff;
  box-shadow: 0 0 0 0.25rem rgba(255, 80, 55, 0.25);
}

.form-ctrl::placeholder {
  color: #6c757d;
}

.form-ctrl option {
  background: #000;
  color: #fff;
}

.chk-custom {
  width: 20px;
  height: 20px;
  border: 2px solid #6c757d;
  background: rgba(0, 0, 0, 0.4);
}

.chk-custom:checked {
  background-color: #ff5037;
  border-color: #ff5037;
}

/* intl-tel-input customization */
.iti {
  width: 100%;
}

.iti__country-container {
  padding: 0;
}

.iti__selected-country {
  height: 56px;
  background: rgba(0, 0, 0, 0.4);
  border: 2px solid #6c757d;
  border-right: none;
  border-radius: 0.75rem 0 0 0.75rem;
  padding: 0 12px;
}

.iti__selected-country:hover,
.iti__selected-country:focus {
  background: rgba(0, 0, 0, 0.6);
}

.iti__selected-country-primary {
  padding: 0 8px;
}

.iti__arrow {
  border-top-color: #fff;
}

.iti__arrow--up {
  border-bottom-color: #fff;
}

.iti input.form-ctrl {
  padding-left: 100px;
  border-radius: 0.75rem;
}

.iti__dropdown-content {
  background: #1a1a1a;
  border: 2px solid #ff5037;
  border-radius: 0.75rem;
  max-height: 300px;
}

.iti__search-input {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid #6c757d;
  color: #fff;
  padding: 10px 12px;
}

.iti__search-input::placeholder {
  color: #6c757d;
}

.iti__search-input:focus {
  border-color: #ff5037;
  outline: none;
}

.iti__country {
  padding: 10px 12px;
  color: #fff;
  transition: background 0.2s ease;
}

.iti__country:hover,
.iti__country--highlight {
  background: rgba(255, 80, 55, 0.2);
}

.iti__dial-code {
  color: #ff5037;
}

.iti__country-name {
  color: #fff;
}

.iti__selected-dial-code {
  color: #fff;
  margin-left: 6px;
}

/* Video thumbnail */
.vid-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
}

.vid-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.card-glow:hover .vid-thumb img {
  transform: scale(1.1);
}

.play-btn {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: #ff5037;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.play-btn:hover {
  background: #cc4028;
  transform: scale(1.1);
}

/* Media Images */
.media-img-box {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  border: 2px solid rgba(255, 80, 55, 0.3);
  transition: all 0.3s ease;
}

.media-img-box:hover {
  border-color: #ff5037;
}

.media-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.media-img-box:hover img {
  transform: scale(1.1);
}

.media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.3), transparent);
}

.media-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 999;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.mobile-menu.hide {
  opacity: 0;
  pointer-events: none;
}

.menu-btn {
  width: 60px;
  height: 60px;
  border: 2px solid #ff5037;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.menu-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(255, 80, 55, 0.5);
}

/* Scroll Header */
.scroll-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  border-bottom: 2px solid #ff5037;
  z-index: 999;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.scroll-header.show {
  transform: translateY(0);
}

.scroll-header .logo-small {
  height: 60px;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem;
  border: 1px solid rgba(255, 80, 55, 0.35);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.language-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.language-chip:hover {
  color: #ff5037;
  transform: translateY(-1px);
}

.language-chip.active {
  background: linear-gradient(135deg, #ff5037 0%, #cc4028 100%);
  color: #ffffff;
}

.language-switcher-floating {
  position: fixed;
  top: 18px;
  right: 20px;
  z-index: 1030;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

/* Stats Big Numbers */
.big-num {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 900;
  color: #ff5037;
  line-height: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .logo-top {
    height: 96px;
  }

  .hero-sec {
    height: 50vh;
    min-height: 300px;
  }

  .main-box {
    border-width: 2px;
  }

  .big-num {
    font-size: 3rem;
  }
}

@media (max-width: 576px) {
  .language-chip {
    min-width: 36px;
    padding: 0.35rem 0.55rem;
  }

  .language-switcher-floating {
    top: 14px;
    right: 14px;
  }

  .logo-top {
    height: 72px;
  }
}

/* WhatsApp Floating Button */
.whatsapp-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1055;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-fab:hover,
.whatsapp-fab:focus {
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.5);
}

@media (max-width: 576px) {
  .whatsapp-fab {
    width: 52px;
    height: 52px;
    right: 14px;
    bottom: 14px;
    font-size: 1.7rem;
  }
}

/* Utilities */
.aspect-4-3 {
  aspect-ratio: 4/3;
}

.sticky-form {
  position: sticky;
  top: 6rem;
}

#mobileMenuCanvas {
  border-color: #ff5037 !important;
}

/* Menu Navigation Links */
#mobileMenuCanvas .nav-link {
  position: relative;
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  font-weight: 500;
  overflow: hidden;
}

#mobileMenuCanvas .nav-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 0;
  background: linear-gradient(135deg, #ff5037, #cc4028);
  border-radius: 0 2px 2px 0;
  transition: height 0.3s ease;
}

#mobileMenuCanvas .nav-link::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 80, 55, 0.1), rgba(204, 64, 40, 0.1));
  border-radius: 0.75rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

#mobileMenuCanvas .nav-link:hover {
  color: #ff5037 !important;
  padding-left: 2rem;
  background: rgba(255, 80, 55, 0.05);
  box-shadow: 0 4px 20px rgba(255, 80, 55, 0.2);
}

#mobileMenuCanvas .nav-link:hover::before {
  height: 80%;
}

#mobileMenuCanvas .nav-link:hover::after {
  opacity: 1;
}

#mobileMenuCanvas .nav-link:active {
  transform: scale(0.98);
}
