/* ==========================================================================
   CSS Reset & Global Variables
   ========================================================================== */

:root {
  /* Colors */
  --navy: #0F2537;
  --blue: #1D3F58;
  --yellow: #1879D6;
  --yellow-hover: #115ba0;
  --dark: #0A1925;
  --light-gray: #f8f9fa;
  --text-main: #333333;
  --text-muted: #5a6678;
  --border-color: #e5e7eb;

  /* Typography */
  --font-sans: 'Inter', sans-serif;
  --font-heading: 'Montserrat', sans-serif;

  /* Max Width */
  --max-w: 1600px;
  /* 100rem */
}

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

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--text-main);
  background-color: #ffffff;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  margin: 0;
}

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

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

button {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
}

/* ==========================================================================
   Utility Classes (to replace common Tailwind patterns)
   ========================================================================== */

.container {
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ==========================================================================
   Custom Backgrounds & Effects
   ========================================================================== */

.hero-bg {
  background: linear-gradient(to right, rgba(11, 31, 62, 0.082) 0%, rgba(11, 31, 62, 0.8) 50%, rgba(11, 31, 62, 0.055) 100%), url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?q=80&w=2070&auto=format&fit=crop') no-repeat center center/cover;
}

.video-bg {
  background: linear-gradient(rgba(11, 31, 62, 0.85), rgba(11, 31, 62, 0.85)), url('https://images.unsplash.com/photo-1530124566582-a618bc2615dc?q=80&w=2070&auto=format&fit=crop') no-repeat center center/cover;
}

.clip-slanted {
  clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
}

/* Header Styles */
.site-header {
  background-color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 6rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}



.nav-menu {
  display: none;
}

@media (min-width: 1024px) {
  .nav-menu {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-top: 0.5rem;
  }
}

@media (min-width: 1280px) {
  .nav-menu {
    gap: 2.5rem;
  }
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nav-link {
  color: var(--navy);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.025em;
  transition: color 0.2s;
  padding-bottom: 0.5rem;
}

.nav-link:hover,
.nav-link.active {
  color: var(--yellow);
}

.nav-indicator {
  width: 2rem;
  height: 2px;
  background-color: var(--yellow);
  margin-top: 0.375rem;
}

.nav-link-icon {
  font-size: 10px;
  margin-left: 0.375rem;
}

.header-cta {
  display: none;
}

@media (min-width: 1024px) {
  .header-cta {
    display: flex;
    align-items: center;
  }
}

.btn-primary {
  background-color: var(--yellow);
  color: #ffffff;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  transition: background-color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 0.025em;
}

.btn-primary:hover {
  background-color: var(--yellow-hover);
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu-btn button {
  color: var(--navy);
}

.mobile-menu-btn button:hover {
  color: var(--yellow);
}

.mobile-menu-btn i {
  font-size: 1.875rem;
}

/* Hero Slider Styles */
.hero-section {
  position: relative;
  width: 100%;
  height: 56.25vw; /* 16:9 aspect ratio */
  min-height: 220px;
  max-height: 400px;
  overflow: hidden;
  background-color: var(--navy);
}

@media (min-width: 768px) {
  .hero-section {
    height: 100vh;
    min-height: 600px;
    max-height: 850px;
  }
}

.floating-contact {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 50;
}

.floating-btn {
  color: white;
  padding: 0.75rem 1rem;
  border-radius: 0.375rem 0 0 0.375rem;
  transition: padding-right 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .floating-btn {
    padding: 1rem;
  }

  .floating-btn:hover {
    padding-right: 2rem;
  }
}

.btn-whatsapp {
  background-color: #25D366;
}

.btn-facebook {
  background-color: #1877F2;
}

.btn-email {
  background-color: #D44638;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  transition: transform 0.7s ease-out;
}

.slide {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  position: relative;
}

.slide-bg {
  position: absolute;
  inset: 0;
}

.slide-bg {
  position: absolute;
  inset: 0;
}

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

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(5, 15, 36, 0.199) 0%, rgba(5, 15, 36, 0.137) 50%, transparent 100%);
}

@media (min-width: 768px) {
  .slide-overlay {
    background: linear-gradient(to right, rgba(5, 15, 36, 0.452) 0%, rgba(5, 15, 36, 0.205) 40%, transparent 80%);
  }
}

.slide-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.slide-inner {
  max-width: 48rem;
  padding-top: 1rem;
}

@media (min-width: 768px) {
  .slide-inner {
    padding-top: 2.5rem;
  }
}

.slide-subtitle {
  color: white;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

@media (min-width: 768px) {
  .slide-subtitle {
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
  }
}

.slide-subtitle-highlight {
  color: #ffffff;
  border-bottom: 3px solid var(--yellow);
  padding-bottom: 0.25rem;
}

.slide-title {
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 0.75rem;
  letter-spacing: 0.025em;
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

@media (min-width: 768px) {
  .slide-title {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .slide-title {
    font-size: 3.25rem;
  }
}

.slide-title-highlight {
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(24, 121, 214, 0.9);
}

.slide-desc {
  display: none;
}

@media (min-width: 768px) {
  .slide-desc {
    display: block;
    color: #d1d5db;
    font-size: 0.875rem;
    line-height: 1.625;
    margin-bottom: 2rem;
    max-width: 42rem;
    font-weight: 500;
  }
}

.established-block {
  display: none;
}

@media (min-width: 768px) {
  .established-block {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2.5rem;
    max-width: 36rem;
  }
}

.established-icon {
  margin-top: 0.125rem;
  color: var(--yellow);
  font-size: 1.875rem;
}

.established-text {
  color: #d1d5db;
  font-size: 0.75rem;
  line-height: 1.5;
  font-weight: 500;
}

@media (min-width: 768px) {
  .established-text {
    font-size: 0.875rem;
    line-height: 1.625;
  }
}

.established-text strong {
  color: white;
  font-weight: 700;
}

.slide-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .slide-buttons {
    gap: 1rem;
  }
}

.slide-buttons .btn-primary, .slide-buttons .btn-outline {
  padding: 0.5rem 1rem !important;
  font-size: 0.65rem !important;
}

@media (min-width: 768px) {
  .slide-buttons .btn-primary {
    padding: 0.875rem 1.5rem !important;
    font-size: 0.875rem !important;
  }
  .slide-buttons .btn-outline {
    padding: 0.875rem 1.5rem !important;
    font-size: 0.875rem !important;
  }
}

.btn-outline:hover {
  border-color: white;
  background-color: white;
  color: var(--navy);
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 9999px;
  transition: all 0.2s;
  z-index: 20;
  backdrop-filter: blur(4px);
}

@media (min-width: 768px) {
  .slider-nav {
    width: 3rem;
    height: 3rem;
  }
}

.slider-nav:hover {
  background-color: var(--yellow);
  color: #ffffff;
}

.slider-prev {
  left: 0.5rem;
}

@media (min-width: 768px) {
  .slider-prev {
    left: 1.5rem;
  }
}

.slider-next {
  right: 0.5rem;
}

@media (min-width: 768px) {
  .slider-next {
    right: 6rem;
  }
}

.slider-dots {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 20;
}

@media (min-width: 768px) {
  .slider-dots {
    bottom: 2.5rem;
    gap: 0.75rem;
  }
}

.slider-dot {
  width: 1.5rem;
  height: 0.25rem;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.4);
  transition: background-color 0.2s;
  cursor: pointer;
  border: none;
  padding: 0;
}

@media (min-width: 768px) {
  .slider-dot {
    width: 2.5rem;
    height: 0.375rem;
  }
}

.slider-dot:hover {
  background-color: white;
}

.slider-dot.active {
  background-color: var(--yellow);
}

/* About Section Styles */
.about-section {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafbfc;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #f3f4f6;
}

.about-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-container {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4rem;
    align-items: flex-start;
  }
}

.about-col-img {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 1024px) {
  .about-col-img {
    width: 40%;
  }
}

.about-img-wrapper {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.about-img-wrapper:hover {
  transform: translateY(-5px);
}

.about-img {
  width: 100%;
  height: 350px;
  object-fit: contain;
}

@media (min-width: 768px) {
  .about-img {
    height: 450px;
  }
}

.about-stats-card {
  position: absolute;
  bottom: -1.5rem;
  left: -0.5rem;
  background-color: var(--navy);
  color: white;
  padding: 1.25rem 1.5rem 1.25rem 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border-left: 4px solid var(--yellow);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 10;
  max-width: 90%;
}

@media (min-width: 768px) {
  .about-stats-card {
    left: -2rem;
    padding-right: 2.5rem;
    gap: 1.25rem;
    max-width: none;
  }
}

.about-stats-icon-wrap {
  position: relative;
}

.about-stats-icon {
  font-size: 1.875rem;
  color: white;
}

@media (min-width: 768px) {
  .about-stats-icon {
    font-size: 2.25rem;
  }
}

.about-stats-gear {
  color: var(--yellow);
  position: absolute;
  top: -0.375rem;
  right: -0.5rem;
  font-size: 0.875rem;
  animation: spin 4s linear infinite;
}

@media (min-width: 768px) {
  .about-stats-gear {
    right: -0.75rem;
    font-size: 1.125rem;
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.about-stats-text {
  display: flex;
  flex-direction: column;
}

.about-stats-number {
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.025em;
}

@media (min-width: 768px) {
  .about-stats-number {
    font-size: 2rem;
  }
}

.about-stats-label {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.375;
  margin-top: 0.375rem;
  color: #d1d5db;
}

@media (min-width: 768px) {
  .about-stats-label {
    font-size: 0.8125rem;
  }
}

.about-col-text {
  width: 100%;
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 1024px) {
  .about-col-text {
    width: calc(60% - 4rem);
    margin-top: 0;
  }
}

.about-subtitle {
  color: var(--yellow);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  margin-bottom: 1rem;
}

.about-title {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1.5rem;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

@media (min-width: 768px) {
  .about-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .about-title {
    font-size: 2.625rem;
  }
}

.about-desc {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  color: #475569;
  margin-bottom: 2.5rem;
  font-size: 0.9rem;
  line-height: 1.75;
  font-weight: 500;
}

@media (min-width: 768px) {
  .about-desc {
    font-size: 1rem;
    line-height: 1.8;
  }
}

.btn-secondary {
  display: inline-flex;
  background-color: var(--navy);
  color: white;
  font-weight: 700;
  padding: 0.875rem 2rem;
  border-radius: 0.375rem;
  font-size: 0.8125rem;
  transition: all 0.3s ease;
  align-items: center;
  gap: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-secondary i {
  transition: transform 0.3s ease;
}

.btn-secondary:hover {
  background-color: #0a275c;
  box-shadow: 0 15px 20px -3px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.btn-secondary:hover i {
  transform: translateX(5px);
}

.about-col-features {
  width: 100%;
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 1024px) {
  .about-col-features {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    border-top: 1px solid #e5e7eb;
    padding-top: 3.5rem;
    margin-top: 1rem;
  }
}

.feature-list-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 1.25rem;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.feature-list-item:hover {
  transform: translateX(8px);
}

@media (min-width: 1024px) {
  .feature-list-item {
    flex-direction: column;
    text-align: center;
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
  }
  
  .feature-list-item:hover {
    transform: translateY(-8px);
  }
}

.feature-list-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.feature-icon {
  background-color: #f1f5f9;
  color: var(--navy);
  font-size: 1.25rem;
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.feature-list-item:hover .feature-icon {
  background-color: var(--yellow);
  color: #000;
  box-shadow: 0 10px 15px -3px rgba(255, 193, 7, 0.3);
}

@media (min-width: 768px) {
  .feature-icon {
    font-size: 1.375rem;
    width: 3.5rem;
    height: 3.5rem;
  }
}

.feature-text {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.875rem;
  line-height: 1.375;
}

@media (min-width: 768px) {
  .feature-text {
    font-size: 0.9375rem;
  }
}

/* Products Section Styles */
.products-section {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f6f8fb;
}

.products-header {
  text-align: center;
  margin-bottom: 4rem;
}

.products-subtitle {
  color: var(--yellow);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8125rem;
  margin-bottom: 1rem;
}

.products-title {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.025em;
}

@media (min-width: 768px) {
  .products-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .products-title {
    font-size: 2.625rem;
  }
}

.products-title-highlight {
  color: #1a4b8c;
}

.products-grid-5 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .products-grid-5 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .products-grid-5 {
    grid-template-columns: repeat(5, 1fr);
  }
}

.product-card-v {
  background-color: white;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(5, 27, 68, 0.05);
  border: 1px solid white;
  transition: transform 0.3s ease;
}

.product-card-v:hover {
  transform: translateY(-0.375rem);
}

.product-img-wrap {
  height: 11rem;
  background-color: #f3f4f6;
  position: relative;
  overflow: hidden;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card-v:hover .product-img {
  transform: scale(1.05);
}

.product-content-v {
  padding: 1.5rem;
}

.product-name {
  color: var(--navy);
  font-weight: 800;
  font-size: 0.9375rem;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  line-height: 1.375;
}

.product-desc {
  color: #5a6678;
  font-size: 0.875rem;
  line-height: 1.625;
  font-weight: 500;
}

.products-grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .products-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-card-h {
  background-color: white;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(5, 27, 68, 0.05);
  border: 1px solid white;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

@media (min-width: 640px) {
  .product-card-h {
    flex-direction: row;
    align-items: center;
  }
}

.product-card-h:hover {
  transform: translateY(-0.25rem);
}

.product-card-h:hover .product-img {
  transform: scale(1.05);
}

.product-img-wrap-h {
  width: 100%;
  height: 14rem;
  background-color: #f3f4f6;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .product-img-wrap-h {
    width: 45%;
    height: 100%;
    align-self: stretch;
  }
}

.product-content-h {
  padding: 1.5rem;
  width: 100%;
}

@media (min-width: 640px) {
  .product-content-h {
    width: 55%;
  }
}

.product-name-h {
  color: var(--navy);
  font-weight: 800;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  line-height: 1.375;
}

.product-desc-h {
  color: #5a6678;
  font-size: 0.8125rem;
  line-height: 1.625;
  font-weight: 500;
}

/* Why Choose Us Section Styles */
.why-section {
  padding-top: 6rem;
  padding-bottom: 12rem;
  background-color: var(--navy);
  position: relative;
  overflow: hidden;
}

.why-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #050f24, #081738, #050f24);
  opacity: 0.8;
}

.why-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: radial-gradient(#ffffff 1px, transparent 1px);
  background-size: 30px 30px;
}

.why-content {
  position: relative;
  z-index: 10;
}

.why-header {
  text-align: center;
  margin-bottom: 5rem;
}

.why-subtitle {
  color: var(--yellow);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8125rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07));
}

.why-title {
  font-size: 1.875rem;
  font-weight: 800;
  color: white;
  letter-spacing: -0.025em;
  filter: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04));
}

@media (min-width: 768px) {
  .why-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .why-title {
    font-size: 2.625rem;
  }
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
  }
}

.why-col {
  display: flex;
  flex-direction: column;
}

@media (min-width: 1024px) {
  .why-col {
    padding: 0 1.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

  .why-col:first-child {
    padding-left: 0;
  }

  .why-col:last-child {
    padding-right: 0;
    border-right: none;
  }
}

.why-col-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.why-icon-wrap {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 9999px;
  border: 1.5px solid rgba(255, 179, 0, 0.8);
  color: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color 0.3s;
}

.why-col:hover .why-icon-wrap {
  background-color: rgba(255, 179, 0, 0.1);
}

.why-icon {
  font-size: 1.375rem;
}

.why-col-title {
  color: white;
  font-weight: 800;
  font-size: 0.8125rem;
  line-height: 1.375;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  padding-top: 0.375rem;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.why-col-desc {
  color: #d1d5db;
  font-size: 0.84375rem;
  line-height: 1.625;
  font-weight: 500;
}

/* Scrap Handling Section Styles */
.scrap-section {
  background-color: #fafbfc;
  position: relative;
  padding-top: 0;
  padding-bottom: 3rem;
}

@media (min-width: 1024px) {
  .scrap-section {
    padding-bottom: 5rem;
  }
}

.scrap-container {
  position: relative;
  z-index: 20;
  margin-top: -6rem;
}

@media (min-width: 768px) {
  .scrap-container {
    margin-top: -8rem;
  }
}

.scrap-card {
  background-color: white;
  border-radius: 0.75rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #f3f4f6;
}

@media (min-width: 1024px) {
  .scrap-card {
    flex-direction: row;
  }
}

.scrap-img-col {
  width: 100%;
  flex-shrink: 0;
  position: relative;
}

@media (min-width: 1024px) {
  .scrap-img-col {
    width: 28%;
  }
}

.scrap-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 300px;
}

.scrap-img-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 4rem;
  background: linear-gradient(to left, white, transparent);
}

@media (min-width: 768px) {
  .scrap-img-fade {
    width: 6rem;
  }
}

.scrap-content-col {
  width: 100%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 768px) {
  .scrap-content-col {
    padding: 3rem;
  }
}

@media (min-width: 1024px) {
  .scrap-content-col {
    width: 44%;
  }
}

.scrap-subtitle {
  color: #4a5568;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
}

.scrap-title {
  font-size: 1.875rem;
  font-weight: 800;
  color: #143160;
  margin-bottom: 1.25rem;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

@media (min-width: 768px) {
  .scrap-title {
    font-size: 2.25rem;
  }
}

.scrap-desc {
  color: #5a6678;
  font-size: 0.84375rem;
  line-height: 1.625;
  font-weight: 500;
  margin-bottom: 1rem;
}

.scrap-desc:last-of-type {
  margin-bottom: 2rem;
}

.btn-warning {
  display: inline-flex;
  background-color: var(--yellow);
  color: var(--navy);
  font-weight: 800;
  padding: 0.75rem 1.5rem;
  border-radius: 0.25rem;
  font-size: 0.8125rem;
  transition: all 0.2s;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-warning:hover {
  background-color: #e5a100;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.scrap-icons-col {
  width: 100%;
  background-color: white;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 1024px) {
  .scrap-icons-col {
    width: 28%;
    padding: 2rem;
  }
}

.scrap-icons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.scrap-icon-box {
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(243, 244, 246, 0.5);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: box-shadow 0.2s;
}

.scrap-icon-box:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.scrap-icon-box-icon {
  height: 2.5rem;
  display: flex;
  align-items: flex-end;
  margin-bottom: 0.5rem;
}

.scrap-icon-box-icon i {
  font-size: 1.875rem;
  color: var(--yellow);
  transition: transform 0.2s;
}

.scrap-icon-box:hover .scrap-icon-box-icon i {
  transform: scale(1.1);
}

.scrap-icon-box-text {
  color: var(--navy);
  font-weight: 700;
  font-size: 0.65625rem;
  line-height: 1.25;
}

.scrap-icon-box-large {
  grid-column: span 3;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .scrap-icon-box-large {
    grid-column: span 2;
  }
}

.scrap-empty-space {
  display: none;
}

@media (min-width: 768px) {
  .scrap-empty-space {
    display: block;
  }
}

/* Markets Section Styles */
.markets-section {
  background-color: #fafbfc;
  position: relative;
  padding-bottom: 6rem;
  overflow: hidden;
  border-bottom: 1px solid #f3f4f6;
}

.markets-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .markets-container {
    flex-direction: row;
    gap: 4rem;
  }
}

.markets-content {
  width: 100%;
}

@media (min-width: 1024px) {
  .markets-content {
    width: 50%;
  }
}

.markets-subtitle {
  color: var(--yellow);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8125rem;
  margin-bottom: 0.75rem;
}

.markets-title {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

@media (min-width: 768px) {
  .markets-title {
    font-size: 2.5rem;
  }
}

.markets-desc {
  color: #4a5568;
  font-size: 0.875rem;
  line-height: 1.625;
  font-weight: 500;
  margin-bottom: 2rem;
}

.markets-location {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.markets-location-icon {
  color: var(--navy);
  font-size: 1.5rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.markets-location-text {
  color: #5a6678;
  font-size: 0.8125rem;
  line-height: 1.8;
  font-weight: 500;
  padding-right: 1rem;
}

.markets-visual {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 350px;
}

@media (min-width: 1024px) {
  .markets-visual {
    width: 50%;
  }
}

.markets-map-bg {
  position: absolute;
  inset: 0;
  right: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.3;
  pointer-events: none;
}

.markets-map-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: invert(15%) sepia(50%) saturate(1500%) hue-rotate(190deg) brightness(85%) contrast(100%);
}

.markets-card {
  background-color: var(--navy);
  border-radius: 0.75rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  padding: 2.5rem;
  width: 240px;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
  margin-right: 1rem;
  transition: transform 0.5s ease;
}

@media (min-width: 768px) {
  .markets-card {
    width: 280px;
    height: 280px;
  }
}

@media (min-width: 1024px) {
  .markets-card {
    padding: 3rem;
    margin-right: 0;
  }
}

.markets-card:hover {
  transform: scale(1.05);
}

.markets-card-text {
  color: white;
  font-weight: 800;
  font-size: 1.375rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .markets-card-text {
    font-size: 1.625rem;
  }
}

/* Footer Styles */
.site-footer {
  background-color: var(--navy);
  color: white;
  padding-top: 4rem;
  padding-bottom: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3.5rem;
}

@media (min-width: 768px) {
  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-main {
    grid-template-columns: repeat(12, 1fr);
    gap: 0;
  }
}

.footer-col-about {
  grid-column: span 1;
}

@media (min-width: 1024px) {
  .footer-col-about {
    grid-column: span 4;
    padding-right: 3rem;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-logo-icon {
  width: 3rem;
  height: 3rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-logo-bg {
  position: absolute;
  inset: 0;
  background-color: #d1d5db;
  border-radius: 4px;
  transform: skewX(-12deg);
  opacity: 0.2;
}

.footer-logo-border {
  position: absolute;
  inset: 0;
  border: 2px solid var(--yellow);
  border-radius: 4px;
  transform: skewX(12deg);
}

.footer-logo-text {
  color: var(--yellow);
  font-weight: 800;
  font-size: 1.25rem;
  position: relative;
  z-index: 10;
  font-family: sans-serif;
}

.footer-logo-names {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.footer-logo-names span:first-child {
  color: white;
  font-weight: 800;
  font-size: 1.375rem;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.footer-logo-names span:last-child {
  color: var(--yellow);
  font-weight: 800;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-desc {
  color: #d1d5db;
  font-size: 0.8125rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  font-weight: 500;
  padding-right: 1rem;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.social-btn {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 179, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d1d5db;
  transition: all 0.2s;
  font-size: 0.8125rem;
}

.social-btn:hover {
  background-color: rgba(255, 179, 0, 0.2);
  color: var(--yellow);
}

.social-btn-yt {
  color: #ef4444;
}

.footer-col-links {
  grid-column: span 1;
}

@media (min-width: 1024px) {
  .footer-col-links {
    grid-column: span 2;
    padding: 0 2.5rem;
  }
}

.footer-title {
  color: var(--yellow);
  font-weight: 700;
  font-size: 0.78125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.75rem;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.footer-link {
  color: #cbd5e1;
  font-size: 0.8125rem;
  font-weight: 500;
  transition: color 0.2s;
  text-decoration: none;
}

.footer-link:hover {
  color: white;
}

.footer-col-products {
  grid-column: span 1;
}

@media (min-width: 1024px) {
  .footer-col-products {
    grid-column: span 3;
    padding: 0 2.5rem;
  }
}

.footer-col-contact {
  grid-column: span 1;
}

@media (min-width: 1024px) {
  .footer-col-contact {
    grid-column: span 3;
    padding-left: 2.5rem;
  }
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.footer-contact-icon {
  width: 2.125rem;
  height: 2.125rem;
  border-radius: 9999px;
  border: 1.5px solid rgba(255, 179, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.125rem;
  transition: background-color 0.2s;
  color: var(--yellow);
  font-size: 0.8125rem;
}

.footer-contact-item:hover .footer-contact-icon {
  background-color: rgba(255, 179, 0, 0.1);
}

.footer-contact-link {
  color: white;
  font-size: 0.90625rem;
  font-weight: 500;
  transition: color 0.2s;
  margin-top: 0.375rem;
  display: block;
  text-decoration: none;
}

.footer-contact-link:hover {
  color: var(--yellow);
}

.footer-contact-text {
  color: white;
  font-size: 0.84375rem;
  line-height: 1.6;
  font-weight: 500;
  margin-top: 0.25rem;
  margin-bottom: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background-color: #030814;
  padding: 1.25rem 0;
}

.footer-bottom-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: #9ca3af;
  font-size: 0.78125rem;
  font-weight: 500;
  letter-spacing: 0.025em;
}

@media (min-width: 768px) {
  .footer-bottom-flex {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.footer-legal-link {
  color: #9ca3af;
  transition: color 0.2s;
  text-decoration: none;
}

.footer-legal-link:hover {
  color: white;
}

.footer-legal-divider {
  color: rgba(75, 85, 99, 0.5);
}

/* Video Section Styles */
.video-section {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: var(--navy);
  color: white;
  position: relative;
}

.video-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .video-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

.video-subtitle {
  font-weight: 600;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--yellow);
}

.video-title {
  font-family: sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: -0.025em;
}

.video-desc {
  color: #d1d5db;
  margin-bottom: 2rem;
  max-width: 28rem;
  font-size: 1.125rem;
}

.btn-yellow {
  display: inline-flex;
  background-color: var(--yellow);
  color: var(--navy);
  font-weight: 700;
  padding: 0.75rem 2rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  transition: background-color 0.2s;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  text-decoration: none;
}

.btn-yellow:hover {
  background-color: #e5a100;
}

.video-player {
  position: relative;
  background-color: black;
  border-radius: 0.25rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid #1f2937;
  overflow: hidden;
  cursor: pointer;
}

.video-thumb {
  width: 100%;
  height: auto;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.video-player:hover .video-thumb {
  opacity: 0.6;
}

.video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-play-btn {
  width: 4rem;
  height: 4rem;
  background-color: transparent;
  border: 2px solid white;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

.video-player:hover .video-play-btn {
  transform: scale(1.1);
}

.video-play-icon {
  color: white;
  font-size: 1.25rem;
  margin-left: 0.25rem;
}

.video-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

.video-time {
  font-size: 0.75rem;
}

.video-spacer {
  flex-grow: 1;
}

/* Extended Sections Styles */
.how-to-choose-section {
  padding: 0 0 4rem 0;
  background-color: transparent;
  position: relative;
  z-index: 10;
}

.how-to-choose-card {
  max-width: 52rem;
  margin: -4rem auto 0;
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 1rem;
  padding: 4rem 3rem;
  text-align: center;
  box-shadow: 0 20px 40px -10px rgba(5, 15, 36, 0.1);
  position: relative;
  overflow: hidden;
}

.how-to-choose-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--yellow);
}

.extended-about-section {
  padding: 5rem 0;
  background-color: white;
}

.content-block {
  padding: 3rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.08);
}

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

.mt-2 {
  margin-top: 1.5rem;
}

.mt-3 {
  margin-top: 2.5rem;
}

.mt-4 {
  margin-top: 4rem;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.max-w-lg {
  max-width: 52rem;
}

.bg-gray {
  background-color: #f8f9fa;
  border: 1px solid #e5e7eb;
}

.bg-navy {
  background: linear-gradient(135deg, var(--navy) 0%, #0a1930 100%);
}

.text-white {
  color: white;
}

.text-yellow {
  color: var(--yellow);
}

.sub-heading {
  color: var(--yellow);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  margin-bottom: 1rem;
  display: block;
}

.main-heading {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.bg-navy .main-heading {
  color: white;
}

.card-heading {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  color: var(--navy);
}

.section-heading {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1.25rem;
}

.paragraph {
  color: #5a6678;
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-size: 1rem;
}

.bg-navy .paragraph {
  color: #d1d5db;
}

.grid-2-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .grid-2-col {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.align-start {
  align-items: start;
}

.manufacture-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.list-tag {
  background-color: white;
  border: 1px solid #e5e7eb;
  color: var(--navy);
  font-weight: 600;
  padding: 0.6rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.list-tag:hover {
  border-color: var(--yellow);
  background-color: var(--navy);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(5, 15, 36, 0.15);
}

.approach-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .approach-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .approach-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.approach-card {
  background-color: white;
  padding: 2.5rem 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  border: 1px solid #f3f4f6;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.approach-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border-color: var(--yellow);
}

.approach-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: var(--yellow);
  transition: width 0.3s ease;
}

.approach-card:hover::before {
  width: 100%;
  opacity: 0.05;
}

.approach-title {
  font-weight: 800;
  color: var(--navy);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.approach-desc {
  color: #5a6678;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.styled-list {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.styled-list li {
  padding-left: 2rem;
  position: relative;
  color: #5a6678;
  font-size: 1rem;
  line-height: 1.6;
}

.styled-list li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0.125rem;
  color: var(--yellow);
  font-size: 1.25rem;
}

.styled-list li strong {
  color: var(--navy);
}

.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, #0a1930 100%);
  color: white;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--yellow);
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -10%;
  width: 50%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 179, 0, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: white;
}

.cta-desc {
  color: #d1d5db;
  font-size: 1.125rem;
  line-height: 1.7;
  max-width: 48rem;
  margin: 0 auto;
}

.cta-contact-box {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
  max-width: 60rem;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

@media (min-width: 768px) {
  .cta-contact-box {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 3rem;
  }
}

.cta-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: white;
  font-weight: 500;
  font-size: 1rem;
  text-align: left;
  transition: transform 0.2s ease;
}

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

.cta-icon {
  color: var(--yellow);
  font-size: 1.5rem;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.1);
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* New Markets Section */
.markets-section-new {
  padding: 6rem 0;
  background-color: #fdfdfd;
  font-family: var(--font-sans);
}

.markets-top-new {
  margin-bottom: 2.5rem;
}

.markets-subtitle-new {
  color: var(--yellow);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.markets-title-new {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
}

.text-orange {
  color: var(--yellow);
}

.markets-desc-new {
  color: #4a5568;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 500;
}

.markets-main-flex {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 1024px) {
  .markets-main-flex {
    flex-direction: row;
    align-items: stretch;
  }
}

.markets-info-card {
  flex: 1;
  padding: 0;
  display: flex;
  flex-direction: column;
}

@media (min-width: 1024px) {
  .markets-info-card {
    padding: 2rem;
  }
}

.info-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem 0;
  transition: all 0.3s ease;
  border-radius: 0.5rem;
}

@media (min-width: 768px) {
  .info-row {
    flex-direction: row;
    gap: 1.5rem;
  }
}

.info-row:hover {
  background-color: #f9f9fa;
  padding-left: 1rem;
  padding-right: 1rem;
}

.info-row:hover .icon-circle {
  background-color: var(--yellow);
  color: white;
  /* transform: scale(1.1); */
}

.info-row:first-child {
  padding-top: 0;
}

.info-row:last-child {
  padding-bottom: 0;
}

.info-icon-col {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: auto;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .info-icon-col {
    width: 180px;
  }
}

.icon-circle {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: rgba(24, 121, 214, 0.1);
  color: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.info-heading {
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin: 0;
}

.info-text-col {
  flex: 1;
}

.info-text-col p {
  color: #4a5568;
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

.info-divider {
  height: 1px;
  background-color: #f0f0f0;
  width: 100%;
}

.markets-map-area {
  flex: 1.2;
  background-color: #f0f2f5;
  border-radius: 1rem;
  position: relative;
  min-height: 250px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .markets-map-area {
    min-height: 400px;
  }
}

.map-container-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.markets-blue-card {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background-color: var(--navy);
  color: white;
  padding: 1.25rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 160px;
  height: 130px;
  animation: floatCard 4s ease-in-out infinite;
}

@media (min-width: 768px) {
  .markets-blue-card {
    bottom: 2rem;
    right: 2rem;
    padding: 2rem;
    border-radius: 1rem;
    width: 220px;
    height: 180px;
  }
}

@keyframes floatCard {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.jvm-marker {
  animation: markerPulse 1.5s infinite;
}

@keyframes markerPulse {
  0% { stroke-width: 0; stroke: rgba(24, 121, 214, 0.8); }
  50% { stroke-width: 8px; stroke: rgba(24, 121, 214, 0.4); }
  100% { stroke-width: 0; stroke: rgba(24, 121, 214, 0); }
}

.markets-card-text {
  font-size: 0.875rem;
  font-weight: 800;
  line-height: 1.4;
  margin: 0;
}

@media (min-width: 768px) {
  .markets-card-text {
    font-size: 1.125rem;
  }
}

.card-globe-icon {
  font-size: 2rem;
  color: var(--yellow);
  align-self: flex-start;
}

.markets-stats-banner {
  background-color: var(--navy);
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  color: white;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .markets-stats-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    padding: 2.5rem 2rem;
    gap: 0;
  }
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-icon-wrap {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: 2px solid #3d5a8c;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.stat-item:hover .stat-icon-wrap {
  background-color: rgba(24, 121, 214, 0.1);
  border-color: var(--yellow);
  transform: scale(1.1);
}

.stat-content {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 0.25rem;
  margin-top: 0;
}

.stat-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #d1d5db;
  margin: 0;
}

.stat-divider-vertical {
  display: none;
}

@media (min-width: 768px) {
  .stat-divider-vertical {
    display: block;
    width: 1px;
    height: 3rem;
    background-color: rgba(255, 255, 255, 0.2);
  }
}

/* Scroll Reveal Animations */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }

/* Map Tooltip Styling */
.jvm-tooltip {
  position: absolute;
  display: none;
  background-color: var(--navy) !important;
  color: white !important;
  font-family: var(--font-sans) !important;
  font-weight: 700 !important;
  border-radius: 0.375rem !important;
  padding: 0.5rem 0.875rem !important;
  font-size: 0.8125rem !important;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  z-index: 9999 !important;
  letter-spacing: 0.025em;
  pointer-events: none;
}

.jvm-tooltip.active {
  display: block;
}

/* Premium Hover & Pop Effects for Products */
.product-card-v, .product-card-h {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.product-card-v:hover, .product-card-h:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.product-card-v:hover .product-img, .product-card-h:hover .product-img {
  transform: scale(1.05);
}

.product-img-wrap, .product-img-wrap-h {
  overflow: hidden;
}

.product-img {
  transition: transform 0.4s ease;
}

/* Modal Popup Styles */
.product-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 25, 48, 0.7);
  backdrop-filter: blur(5px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.product-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.product-modal-content {
  background: #ffffff;
  border-radius: 12px;
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  transform: translateY(30px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-modal-overlay.active .product-modal-content {
  transform: translateY(0) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: white;
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--navy);
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 10;
  transition: background 0.2s, color 0.2s;
}

.modal-close-btn:hover {
  background: var(--navy);
  color: white;
}

.modal-img-container {
  width: 100%;
  height: 350px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.modal-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-body {
  padding: 2rem;
}

.modal-title {
  font-family: var(--font-heading);
  color: var(--navy);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.modal-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.modal-actions {
  display: flex;
  gap: 1rem;
}

@media (min-width: 768px) {
  .product-modal-content {
    flex-direction: row;
  }
  .modal-img-container {
    width: 45%;
    height: auto;
    min-height: 400px;
  }
  .modal-body {
    width: 55%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}