/* ==========================================
   DELIVERY & SHIPPING PAGE - DIOR LUXURY STYLE
   Professional, Elegant & Responsive
   ========================================== */

.delivery-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.delivery-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 140, 66, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.delivery-hero-content {
  position: relative;
  z-index: 2;
}

.delivery-hero-title {
  font-size: 56px;
  font-weight: 600;
  color: white;
  margin-bottom: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.delivery-hero-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  letter-spacing: 0.5px;
}

/* Main Content Section */
.delivery-main-section {
  padding: 120px 0;
  background: linear-gradient(180deg, #ffffff 0%, #fdfbf7 100%);
}

/* Delivery Cards Grid */
.delivery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-bottom: 120px;
}

.delivery-card {
  background: white;
  padding: 60px 40px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  border: 1px solid #f0f0f0;
}

.delivery-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ff8c42, #ff6b35);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.delivery-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.1);
  border-color: transparent;
}

.delivery-card:hover::before {
  transform: scaleX(1);
}

.delivery-card-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 140, 66, 0.15), rgba(255, 107, 53, 0.1));
  border-radius: 50%;
  transition: all 0.5s ease;
}

.delivery-card:hover .delivery-card-icon {
  background: linear-gradient(135deg, #ff8c42, #ff6b35);
  transform: scale(1.1);
}

.delivery-card-icon i {
  font-size: 42px;
  color: #ff8c42;
  transition: all 0.3s ease;
}

.delivery-card:hover .delivery-card-icon i {
  color: white;
}

.delivery-card-title {
  font-size: 24px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.delivery-card-text {
  font-size: 15px;
  color: #666;
  line-height: 1.9;
  font-weight: 300;
}

.delivery-card-text strong {
  color: #ff8c42;
  font-weight: 600;
}

/* Shipping Costs Section */
.delivery-costs-section {
  margin-bottom: 120px;
}

.delivery-section-title {
  font-size: 42px;
  font-weight: 600;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 80px;
  letter-spacing: 1px;
  position: relative;
}

.delivery-section-title::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ff8c42, transparent);
}

.delivery-costs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  margin-bottom: 80px;
}

.delivery-costs-card {
  background: white;
  padding: 50px 40px;
  border: 1px solid #f0f0f0;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.delivery-costs-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 70px rgba(255, 140, 66, 0.1);
  border-color: #ff8c42;
}

.costs-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 35px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f0f0f0;
}

.costs-country-title {
  font-size: 24px;
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: 0.5px;
}

.costs-flag {
  font-size: 32px;
}

.costs-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.cost-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cost-item.full-width {
  padding: 20px;
  background: linear-gradient(135deg, rgba(255, 140, 66, 0.05), rgba(255, 107, 53, 0.05));
  border-radius: 8px;
}

.cost-label {
  font-weight: 600;
  color: #1a1a1a;
  font-size: 15px;
}

.cost-value {
  font-size: 20px;
  font-weight: 600;
  color: #ff8c42;
}

.cost-note {
  font-size: 13px;
  color: #999;
  margin: 0;
}

/* Benefits Section */
.delivery-info-section {
  margin-bottom: 120px;
  padding: 80px;
  background: linear-gradient(135deg, #f5f5f5 0%, #fafaf8 100%);
  border-radius: 8px;
}

.delivery-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 80px;
}

.benefit-item {
  text-align: center;
  padding: 40px 30px;
  background: white;
  transition: all 0.5s ease;
  border-radius: 4px;
}

.benefit-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff8c42, #ff6b35);
  border-radius: 50%;
  color: white;
  font-size: 32px;
  transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
  transform: scale(1.15) rotate(5deg);
}

.benefit-item h5 {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.benefit-item p {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  margin: 0;
}

/* FAQ Section */
.delivery-faq-section {
  margin-bottom: 120px;
}

.faq-items {
  display: grid;
  gap: 20px;
  margin-top: 60px;
}

.faq-item {
  background: white;
  border: 1px solid #f0f0f0;
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active {
  border-color: #ff8c42;
  box-shadow: 0 10px 30px rgba(255, 140, 66, 0.15);
}

.faq-question {
  width: 100%;
  padding: 25px 30px;
  background: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  text-align: left;
}

.faq-item:hover .faq-question {
  background: linear-gradient(135deg, rgba(255, 140, 66, 0.05), rgba(255, 107, 53, 0.05));
  color: #ff8c42;
}

.faq-question i {
  font-size: 16px;
  color: #ff8c42;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, rgba(255, 140, 66, 0.03), rgba(255, 107, 53, 0.03));
}

.faq-item.active .faq-answer {
  padding: 25px 30px;
  max-height: 500px;
}

.faq-answer p {
  font-size: 14px;
  color: #666;
  line-height: 1.9;
  margin: 0;
}

/* CTA Section */
.delivery-cta-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 80px 60px;
  text-align: center;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
}

.delivery-cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 140, 66, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.delivery-cta-section h2 {
  font-size: 40px;
  font-weight: 600;
  color: white;
  margin-bottom: 15px;
  letter-spacing: 1px;
  position: relative;
  z-index: 2;
}

.delivery-cta-section p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 35px;
  position: relative;
  z-index: 2;
}

.delivery-cta-button {
  padding: 18px 50px;
  background: linear-gradient(135deg, #ff8c42, #ff6b35);
  color: white;
  border: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.delivery-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 140, 66, 0.4);
  letter-spacing: 3px;
}

.delivery-cta-button i {
  transition: transform 0.3s ease;
}

.delivery-cta-button:hover i {
  transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .delivery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .delivery-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .delivery-hero-title {
    font-size: 42px;
  }

  .delivery-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 80px;
  }

  .delivery-costs-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .delivery-info-section {
    padding: 60px 40px;
  }
}

@media (max-width: 768px) {
  .delivery-main-section {
    padding: 80px 0;
  }

  .delivery-hero {
    padding: 70px 0;
  }

  .delivery-hero-title {
    font-size: 32px;
    letter-spacing: 1px;
  }

  .delivery-hero-subtitle {
    font-size: 16px;
  }

  .delivery-section-title {
    font-size: 32px;
    margin-bottom: 50px;
  }

  .delivery-card {
    padding: 40px 25px;
  }

  .delivery-card-icon {
    width: 80px;
    height: 80px;
  }

  .delivery-card-icon i {
    font-size: 32px;
  }

  .delivery-benefits-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 50px;
  }

  .benefit-item {
    padding: 30px 20px;
  }

  .delivery-info-section {
    padding: 50px 25px;
  }

  .delivery-cta-section {
    padding: 60px 30px;
  }

  .delivery-cta-section h2 {
    font-size: 28px;
  }

  .faq-question {
    padding: 20px 20px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .delivery-hero-title {
    font-size: 24px;
  }

  .delivery-card-title {
    font-size: 20px;
  }

  .delivery-section-title {
    font-size: 24px;
    margin-bottom: 40px;
  }

  .delivery-cta-button {
    width: 100%;
    justify-content: center;
    padding: 16px 30px;
  }

  .cost-value {
    font-size: 18px;
  }

  .costs-country-title {
    font-size: 20px;
  }
}
