* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: #ffffff;
  color: #111111;
  line-height: 1.4;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  /* Prevent horizontal scroll due to animations */
}

a {
  text-decoration: none;
  color: inherit;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #eee;
  z-index: 100;
}

.navbar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo {
  font-weight: 800;
  letter-spacing: 0.1em;
  font-size: 14px;
}

.nav-link {
  cursor: pointer;
}

.btn-primary {
  padding: 8px 18px;
  border-radius: 999px;
  border: none;
  background: #ff2c2c;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

/* HERO SECTION */
.hero {
  max-width: 100%;
  margin: 0 auto;
  padding: 100px 20px 60px;
  text-align: center;
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  background: #ffffff;
  min-height: 900px;
}

.hero-title {
  font-size: clamp(127px, 6vw, 72px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
}

.hero-title span {
  display: block;
}

.hero-visual-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 1000px;
  height: 950px;
  z-index: 10;
  margin-top: -655px;
}

.hero-container-image {
  position: relative;
  animation: swing 4s ease-in-out infinite;
  transform-origin: 50% 0;
  z-index: 10;
  width: 100%;
  max-width: 1390px;
  height: auto;
  object-fit: contain;
}

@keyframes swing {
  0% {
    transform: translateY(0px) rotate(-2deg);
  }

  50% {
    transform: translateY(-14px) rotate(2deg);
  }

  100% {
    transform: translateY(0px) rotate(-2deg);
  }
}

/* SECTION: CALCULATOR */
.section {
  max-width: 1300px;
  margin: 0 auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.section-left {
  padding-top: 20px;
}

.section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 0;
}

.section-subtext {
  font-size: 14px;
  color: #555;
  max-width: 420px;
  margin-bottom: 20px;
  font-weight: 400;
  line-height: 1.6;
}

.calculator-card {
  padding: 32px;
  border-radius: 12px;
  border: 1px solid #e5e5e5;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  background: #ffffff;
}

.form-row {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.field {
  width: 100%;
  margin-bottom: 20px;
}

label {
  display: block;
  font-size: 13px;
  margin-bottom: 8px;
  color: #666;
  font-weight: 400;
}

select,
input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-size: 14px;
  outline: none;
  font-weight: 400;
  background: #ffffff;
}

select:focus,
input:focus {
  border-color: #ff2c2c;
  box-shadow: 0 0 0 3px rgba(255, 44, 44, 0.1);
}

.calculator-card .btn-primary {
  width: 100%;
  margin-top: 8px;
  padding: 12px 18px;
  font-size: 14px;
}

/* DELIVERY METHODS SECTION */
.delivery-methods {
  max-width: 1300px;
  margin: 60px auto;
  padding: 0 20px;
}

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.delivery-card {
  background: #f8f8f8;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.45s cubic-bezier(0.2, 0.9, 0.2, 1), box-shadow 0.45s cubic-bezier(0.2, 0.9, 0.2, 1);
  transform-origin: center;
  will-change: transform, box-shadow;
  transform-style: preserve-3d;
  box-shadow: 0 6px 18px rgba(15, 15, 15, 0.04);
  position: relative;
}

.delivery-card:hover {
  transform: translateY(-10px) scale(1.02) rotateX(1.2deg);
  box-shadow: 0 20px 40px rgba(15, 15, 15, 0.12);
}

/* Image parallax/zoom */
.delivery-card .delivery-image img {
  transition: transform 0.6s cubic-bezier(0.2, 0.9, 0.2, 1);
  transform-origin: center;
  will-change: transform;
}

.delivery-card:hover .delivery-image img {
  transform: scale(1.06) translateY(-6px);
}

/* Lift content slightly to match card movement */
.delivery-card .delivery-content {
  transition: transform 0.45s cubic-bezier(0.2, 0.9, 0.2, 1), opacity 0.45s;
  transform: translateZ(0);
}

.delivery-card:hover .delivery-content {
  transform: translateY(-6px);
}

/* Subtle glossy shine moving across the card on hover */
.delivery-card::after {
  content: "";
  position: absolute;
  top: -60%;
  left: -30%;
  width: 140%;
  height: 220%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.0) 30%, rgba(255, 255, 255, 0.18) 48%, rgba(255, 255, 255, 0.0) 60%);
  transform: rotate(15deg);
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
  z-index: 5;
}

.delivery-card:hover::after {
  opacity: 1;
  transform: rotate(15deg) translateX(18%);
}

.delivery-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: #e5e5e5;
}

.delivery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.delivery-content {
  padding: 24px;
  background: #ffffff;
}

.delivery-number {
  font-size: 14px;
  font-weight: 600;
  color: #999;
  margin-bottom: 8px;
}

.delivery-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #111;
}

.delivery-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* CAR SHIPPING SECTION */
.car-shipping {
  max-width: 100%;
  margin: 80px 0;
  background: #111;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.car-shipping-content {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.car-image-wrapper {
  position: absolute;
  right: 0;
  top: 0;
  width: 60%;
  height: 100%;
}

.car-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.car-text-overlay {
  position: relative;
  z-index: 2;
  padding: 80px 40px;
  max-width: 550px;
}

.car-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.car-description {
  font-size: 15px;
  line-height: 1.7;
  color: #cccccc;
  margin-bottom: 28px;
  max-width: 480px;
}

.learn-more-link {
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.learn-more-link:hover {
  color: #ff2c2c;
}

/* TRUSTED BRANDS SECTION */
.trusted-brands {
  max-width: 1100px;
  margin: 80px auto;
  padding: 60px 20px;
  border-top: 1px solid #e5e5e5;
}

.brands-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 32px;
  align-items: center;
  justify-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.brand-logo {
  width: 140px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  transition: opacity 0.3s ease, transform 0.18s ease;
  background: transparent;
}

.brand-logo:hover {
  opacity: 1;
  transform: translateY(-6px);
}

.brand-icon {
  width: 100%;
  height: 100%;
}

.brand-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

/* CONTACT SECTION */
.contact-section {
  max-width: 1300px;
  margin: 80px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

.contact-info {
  padding-top: 20px;
}

.contact-details {
  margin-top: 40px;
}

.contact-item {
  margin-bottom: 24px;
}

.contact-item strong {
  display: block;
  font-size: 13px;
  color: #666;
  margin-bottom: 6px;
  font-weight: 500;
}

.contact-item p {
  font-size: 15px;
  color: #111;
}

.contact-form-wrapper {
  background: #f8f8f8;
  padding: 40px;
  border-radius: 12px;
}

.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  resize: vertical;
  background: #ffffff;
}

.contact-form textarea:focus {
  border-color: #ff2c2c;
  box-shadow: 0 0 0 3px rgba(255, 44, 44, 0.1);
}

/* FOOTER */
.footer {
  background: #111111;
  color: #ffffff;
  padding: 60px 20px 30px;
  margin-top: 80px;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-heading {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 14px;
  color: #aaaaaa;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-tagline {
  font-size: 13px;
  color: #888;
  margin-top: 12px;
  line-height: 1.5;
}

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid #333;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: #888;
}

/* --- LAYOUT CONTAINERS FOR MAP & LIST --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
}

.top-section {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 60px;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header-col {
  flex: 1;
  min-width: 300px;
}

.header-col h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -1.5px;
  color: #222;
}

.list-col {
  flex: 1;
  min-width: 300px;
}

.list-item {
  display: flex;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid #eeeeee;
}

.list-item:first-child {
  border-top: 1px solid #eeeeee;
}

.list-item .num {
  font-size: 0.85rem;
  color: #888;
  width: 60px;
  flex-shrink: 0;
  padding-top: 3px;
  font-weight: 500;
}

.list-item p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #444;
  margin: 0;
}

.map-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 30px auto;
  z-index: 1;
  padding: 0 20px;
}

.world-map-img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.1;
  filter: grayscale(100%);
  pointer-events: none;
}

.map-marker {
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: #d32f2f;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 10;
}

.map-marker::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-color: rgba(211, 47, 47, 0.6);
  border-radius: 50%;
  animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pulse-ring {
  0% {
    width: 100%;
    height: 100%;
    opacity: 1;
  }

  100% {
    width: 350%;
    height: 350%;
    opacity: 0;
  }
}

.map-marker.featured::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background-color: rgba(211, 47, 47, 0.08);
  border-radius: 50%;
  z-index: -1;
}

.marker-label {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #d32f2f;
  color: white;
  padding: 8px 14px;
  border-radius: 4px;
  font-size: 0.8rem;
  white-space: nowrap;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.marker-label::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #d32f2f transparent transparent transparent;
}

.map-marker.featured .marker-label,
.map-marker:hover .marker-label {
  opacity: 1;
}

/* --- BOTTOM STATS SECTION --- */
.section-container {
  display: flex;
  width: 100%;
  min-height: 100vh;
  flex-wrap: wrap;
  margin-bottom: 180px;
}

.image-side {
  flex: 1;
  min-width: 350px;
  position: relative;
  background-color: #f0f0f0;
}

.image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.content-side {
  flex: 1;
  min-width: 350px;
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.content-side h1 {
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 4rem;
  color: #1c1c1c;
  letter-spacing: -0.02em;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.info-text {
  font-size: 0.95rem;
  color: #4a4a4a;
  font-weight: 400;
  line-height: 1.6;
}

.stats-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding-top: 2rem;
  border-top: 1px solid transparent;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 4.5rem;
  font-weight: 300;
  color: #1c1c1c;
  line-height: 1;

  .list-item:first-child {
    border-top: 1px solid #eeeeee;
  }

  .list-item .num {
    font-size: 0.85rem;
    color: #888;
    width: 60px;
    flex-shrink: 0;
    padding-top: 3px;
    font-weight: 500;
  }

  .list-item p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #444;
    margin: 0;
  }

  .map-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 30px auto;
    z-index: 1;
    padding: 0 20px;
  }

  .world-map-img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.1;
    filter: grayscale(100%);
    pointer-events: none;
  }

  .map-marker {
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: #d32f2f;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 10;
  }

  .map-marker::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-color: rgba(211, 47, 47, 0.6);
    border-radius: 50%;
    animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
  }

  @keyframes pulse-ring {
    0% {
      width: 100%;
      height: 100%;
      opacity: 1;
    }

    100% {
      width: 350%;
      height: 350%;
      opacity: 0;
    }
  }

  .map-marker.featured::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background-color: rgba(211, 47, 47, 0.08);
    border-radius: 50%;
    z-index: -1;
  }

  .marker-label {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #d32f2f;
    color: white;
    padding: 8px 14px;
    border-radius: 4px;
    font-size: 0.8rem;
    white-space: nowrap;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
  }

  .marker-label::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #d32f2f transparent transparent transparent;
  }

  .map-marker.featured .marker-label,
  .map-marker:hover .marker-label {
    opacity: 1;
  }

  /* --- BOTTOM STATS SECTION --- */
  .section-container {
    display: flex;
    width: 100%;
    min-height: 100vh;
    flex-wrap: wrap;
    margin-bottom: 180px;
  }

  .image-side {
    flex: 1;
    min-width: 350px;
    position: relative;
    background-color: #f0f0f0;
  }

  .image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .content-side {
    flex: 1;
    min-width: 350px;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .content-side h1 {
    font-size: 3.5rem;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 4rem;
    color: #1c1c1c;
    letter-spacing: -0.02em;
  }

  .info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
  }

  .info-text {
    font-size: 0.95rem;
    color: #4a4a4a;
    font-weight: 400;
    line-height: 1.6;
  }

  .stats-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding-top: 2rem;
    border-top: 1px solid transparent;
  }

  .stat-item {
    display: flex;
    flex-direction: column;
  }

  .stat-number {
    font-size: 4.5rem;
    font-weight: 300;
    color: #1c1c1c;
    line-height: 1;
    margin-bottom: 0.5rem;
    font-variant-numeric: tabular-nums;
    /* Important for number animation stability */
  }

  .stat-label {
    font-size: 1.1rem;
    color: #333;
    font-weight: 400;
  }

  /* =========================================
     ANIMATION CSS CLASSES
     ========================================= */
  .reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
  }

  .reveal.active {
    opacity: 1;
    transform: translateY(0);
  }

  /* Staggered delays */
  .delay-100 {
    transition-delay: 0.1s;
  }

  .delay-200 {
    transition-delay: 0.2s;
  }

  .delay-300 {
    transition-delay: 0.3s;
  }

  .delay-400 {
    transition-delay: 0.4s;
  }

  /* Responsive */
  @media (max-width: 1024px) {
    .content-side h1 {
      font-size: 2.5rem;
    }

    .content-side {
      padding: 3rem;
    }

    .stat-number {
      font-size: 3.5rem;
    }

    .hero-title {
      font-size: 80px;
    }

    .hero-visual-wrapper {
      width: 100%;
      margin-top: -50px;
      height: auto;
    }

    .hero-container-image {
      max-width: 80%;
    }

    .hero {
      min-height: auto;
      padding-bottom: 100px;
    }
  }

  @media (max-width: 768px) {

    /* Navbar */
    .navbar-inner {
      flex-direction: column;
      gap: 15px;
      padding: 15px;
    }

    .nav-left,
    .nav-right {
      width: 100%;
      justify-content: center;
      gap: 15px;
    }

    /* Hero */
    .hero {
      padding-top: 140px;
      min-height: auto;
      padding-bottom: 60px;
    }

    .hero-title {
      font-size: 48px;
      margin-bottom: 30px;
    }

    .hero-visual-wrapper {
      margin-top: 0;
      height: auto;
      width: 100%;
    }

    .hero-container-image {
      max-width: 90%;
      animation: none;
      /* Disable heavy animation on mobile */
    }

    /* Calculator */
    .section {
      grid-template-columns: 1fr;
      gap: 40px;
      padding: 40px 20px;
    }

    .calculator-card {
      padding: 24px;
    }

    .form-row {
      flex-direction: column;
      gap: 0;
    }

    /* Delivery Methods */
    .delivery-grid {
      grid-template-columns: 1fr;
      max-width: 400px;
      margin: 0 auto;
    }

    /* Car Shipping */
    .car-shipping-content {
      min-height: auto;
      flex-direction: column;
    }

    .car-image-wrapper {
      position: relative;
      width: 100%;
      height: 300px;
      opacity: 1;
    }

    .car-text-overlay {
      padding: 40px 20px;
      max-width: 100%;
      background: #111;
    }

    .car-title {
      font-size: 32px;
    }

    /* Top Section (Text List) */
    .top-section {
      flex-direction: column;
      gap: 30px;
    }

    .header-col h1 {
      font-size: 2.5rem;
    }

    /* Stats Section */
    .section-container {
      flex-direction: column;
      margin-bottom: 80px;
    }

    .image-side {
      height: 300px;
      min-height: 300px;
    }

    .content-side {
      padding: 40px 20px;
    }

    .content-side h1 {
      font-size: 2rem;
      margin-bottom: 2rem;
    }

    .info-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
      margin-bottom: 2rem;
    }

    .stats-container {
      gap: 2rem;
    }

    .stat-number {
      font-size: 3rem;
    }

    /* Footer */
    .footer-container {
      grid-template-columns: 1fr 1fr;
      gap: 30px;
    }
  }

  @media (max-width: 480px) {
    .hero-title {
      font-size: 36px;
    }

    .section-title {
      font-size: 28px;
    }

    .nav-left,
    .nav-right {
      flex-wrap: wrap;
    }

    .footer-container {
      grid-template-columns: 1fr;
      text-align: center;
    }

    .footer-bottom {
      text-align: center;
    }

    .brands-container {
      grid-template-columns: repeat(2, 1fr);
    }

    .contact-section {
      grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
      padding: 24px;
    }
  }
}