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

body {
  overflow-x: hidden;
}

.shipping-page {
  width: 100%;
  background: #fff;
  position: relative;
}

/* HERO */
.shipping-hero {
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, #f8f5f0 0%, #ffffff 100%);
  overflow: hidden;
  padding: 140px 60px 80px;
}

.shipping-hero::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(198, 104, 45, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(218, 165, 32, 0.05) 0%, transparent 50%);
  animation: gradientShift 20s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% { transform: scale(1) translate(0, 0); }
  50% { transform: scale(1.1) translate(20px, -20px); }
}

.shipping-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1000px;
}

.shipping-hero__label {
  display: inline-block;
  padding: 12px 28px;
  background: rgba(198, 104, 45, 0.1);
  color: #C6682D;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  margin-bottom: 30px;
  animation: fadeIn 0.8s ease-out;
}

.shipping-hero__title {
  font-size: clamp(65px, 8vw, 140px);
  font-weight: 300;
  letter-spacing: -0.04em;
  color: #1a1a1a;
  margin-bottom: 35px;
  line-height: 0.95;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.shipping-hero__subtitle {
  font-size: clamp(22px, 2.5vw, 30px);
  color: #666;
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.5;
  animation: fadeInUp 1s ease-out 0.4s both;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* KEY FEATURES */
.shipping-features {
  padding: 100px 60px;
  background: #fff;
}

.shipping-features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
  max-width: 1400px;
  margin: 0 auto;
}

.feature-card {
  text-align: center;
  padding: 50px 30px;
  transition: transform 0.4s ease;
}

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

.feature-card__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card__icon svg {
  width: 100%;
  height: 100%;
}

.feature-card__title {
  font-size: 26px;
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.feature-card__text {
  font-size: 18px;
  line-height: 1.6;
  color: #666;
  font-weight: 300;
}

/* CONTENT */
.shipping-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 60px 120px;
}

.shipping-section {
  margin-bottom: 80px;
}

.shipping-section__number {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #C6682D 0%, #DAA520 100%);
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.shipping-section__title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 30px;
  letter-spacing: -0.02em;
}

.shipping-section__content p {
  font-size: 22px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 25px;
  font-weight: 300;
}

.shipping-section__content strong {
  color: #1a1a1a;
  font-weight: 500;
}

.shipping-section__content ul {
  margin: 25px 0;
  padding-left: 30px;
}

.shipping-section__content li {
  font-size: 22px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 15px;
  font-weight: 300;
}

.highlight-box {
  background: linear-gradient(135deg, #f8f5f0 0%, #f0ebe5 100%);
  padding: 40px 50px;
  margin: 40px 0;
  border-left: 4px solid #C6682D;
}

.highlight-box p {
  font-size: 24px;
  line-height: 1.7;
  color: #1a1a1a;
  margin: 0;
  font-weight: 400;
}

.email-link {
  color: #C6682D;
  text-decoration: none;
  border-bottom: 2px solid rgba(198, 104, 45, 0.3);
  transition: all 0.3s ease;
  font-weight: 500;
}

.email-link:hover {
  border-bottom-color: #C6682D;
}

/* CTA */
.shipping-cta {
  padding: 120px 60px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.shipping-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    repeating-linear-gradient(90deg, transparent, transparent 100px, rgba(255,255,255,0.02) 100px, rgba(255,255,255,0.02) 200px);
  pointer-events: none;
}

.shipping-cta__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.shipping-cta__title {
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 300;
  margin-bottom: 30px;
  letter-spacing: -0.02em;
  color: #fff;
}

.shipping-cta__text {
  font-size: clamp(20px, 2.2vw, 28px);
  margin-bottom: 50px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  line-height: 1.6;
}

.shipping-cta__buttons {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

.shipping-cta__button {
  padding: 24px 55px;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  display: inline-block;
}

.shipping-cta__button--primary {
  background: #C6682D;
  color: #fff;
}

.shipping-cta__button--primary:hover {
  background: #DAA520;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(198, 104, 45, 0.4);
}

.shipping-cta__button--secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.shipping-cta__button--secondary:hover {
  border-color: #fff;
  transform: translateY(-3px);
}

/* MOBILE */
@media (max-width: 1024px) {
  .shipping-hero {
    padding: 120px 40px 60px;
  }
  
  .shipping-features,
  .shipping-content,
  .shipping-cta {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (max-width: 768px) {
  .shipping-hero {
    padding: 100px 30px 50px;
    min-height: 55vh;
  }
  
  .shipping-features {
    padding: 60px 30px;
  }
  
  .shipping-features__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .shipping-content {
    padding: 60px 30px 80px;
  }
  
  .shipping-section__content p,
  .shipping-section__content li {
    font-size: 19px;
  }
  
  .highlight-box {
    padding: 30px;
  }
  
  .highlight-box p {
    font-size: 20px;
  }
  
  .shipping-cta {
    padding: 80px 30px;
  }
  
  .shipping-cta__buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .shipping-cta__button {
    width: 100%;
    text-align: center;
  }
}


