/* Export Page Specific Styles */

/* Export Hero Section */
.export-hero {
  background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 50%, #4CAF50 100%);
  padding: 6rem 2rem 8rem 2rem;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.export-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/export-pattern.jpg') repeat;
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 300px;
}

.export-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.5rem;
  opacity: 0.95;
  font-weight: 400;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

/* Main Export Content */
.export-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Export Overview Section */
.export-overview {
  padding: 4rem 0;
  border-bottom: 1px solid var(--light-grey);
}

.overview-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.overview-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--primary-green);
  margin-bottom: 1.5rem;
}

.overview-intro {
  font-size: 1.2rem;
  color: var(--text-grey);
  margin-bottom: 1.5rem;
  font-weight: 500;
  line-height: 1.6;
}

.overview-text p {
  line-height: 1.7;
  margin-bottom: 2rem;
  color: var(--text-dark);
}

.export-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.highlight-stat {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.highlight-stat:hover {
  border-color: var(--primary-green);
  transform: translateY(-5px);
}

.highlight-stat h3 {
  font-size: 2rem;
  color: var(--primary-green);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.highlight-stat p {
  color: var(--text-grey);
  font-weight: 500;
  margin: 0;
  font-size: 0.9rem;
}

.overview-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Global Reach Section */
.global-reach {
  padding: 4rem 0;
  background-color: #f8f9fa;
}

.global-reach h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--primary-green);
  text-align: center;
  margin-bottom: 3rem;
}

.regions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.region-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  border-top: 4px solid var(--primary-green);
}

.region-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.region-icon i {
  font-size: 3rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.region-card h3 {
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.region-countries {
  color: var(--text-grey);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.region-features {
  list-style: none;
  padding: 0;
  text-align: left;
}

.region-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-grey);
  font-size: 0.9rem;
}

.region-features li::before {
  content: '✓';
  color: var(--primary-green);
  font-weight: bold;
}

/* Export Process Section */
.export-process {
  padding: 4rem 0;
}

.export-process h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--primary-green);
  text-align: center;
  margin-bottom: 3rem;
}

.process-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--primary-green);
  transform: translateX(-50%);
}

.timeline-step {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
  position: relative;
}

.timeline-step:nth-child(odd) {
  flex-direction: row;
}

.timeline-step:nth-child(even) {
  flex-direction: row-reverse;
}

.step-number {
  width: 80px;
  height: 80px;
  background: var(--primary-green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
}

.step-content {
  flex: 1;
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin: 0 2rem;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.step-content:hover {
  border-color: var(--primary-green);
  transform: translateY(-5px);
}

.step-content h3 {
  color: var(--text-dark);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.step-content > p {
  color: var(--text-grey);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.step-details {
  list-style: none;
  padding: 0;
}

.step-details li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-grey);
  font-size: 0.9rem;
}

.step-details li::before {
  content: '•';
  color: var(--primary-green);
  font-weight: bold;
}

/* Export Services Section */
.export-services {
  padding: 4rem 0;
  background-color: #f8f9fa;
}

.export-services h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--primary-green);
  text-align: center;
  margin-bottom: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-item {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}

.service-item:hover {
  transform: translateY(-10px) rotateY(5deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-item i {
  font-size: 3rem;
  color: var(--primary-green);
  margin-bottom: 1.5rem;
}

.service-item h3 {
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-weight: 600;
}

.service-item p {
  color: var(--text-grey);
  line-height: 1.6;
  margin: 0;
}

/* Shipping Options Section */
.shipping-options {
  padding: 4rem 0;
}

.shipping-options h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--primary-green);
  text-align: center;
  margin-bottom: 3rem;
}

.shipping-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.shipping-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-left: 5px solid var(--primary-green);
}

.shipping-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.shipping-icon {
  text-align: center;
  margin-bottom: 1.5rem;
}

.shipping-icon i {
  font-size: 3rem;
  color: var(--primary-green);
}

.shipping-card h3 {
  text-align: center;
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.shipping-details {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.detail-row:last-child {
  margin-bottom: 0;
}

.label {
  color: var(--text-grey);
  font-size: 0.9rem;
}

.value {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.9rem;
}

.shipping-features {
  list-style: none;
  padding: 0;
}

.shipping-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-grey);
  font-size: 0.9rem;
}

.shipping-features li::before {
  content: '✓';
  color: var(--primary-green);
  font-weight: bold;
}

/* Documentation Section */
.documentation-section {
  padding: 4rem 0;
  background-color: #f8f9fa;
}

.documentation-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--primary-green);
  text-align: center;
  margin-bottom: 1rem;
}

.documents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.doc-category {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.doc-category:hover {
  transform: translateY(-5px);
}

.doc-category h3 {
  color: var(--text-dark);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  text-align: center;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--primary-green);
}

.doc-list {
  list-style: none;
  padding: 0;
}

.doc-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  color: var(--text-grey);
  font-size: 0.95rem;
  padding: 0.5rem;
  background: #f8f9fa;
  border-radius: 5px;
}

.doc-list i {
  color: var(--primary-green);
  font-size: 1rem;
}

/* Partnerships Section */
.partnerships {
  padding: 4rem 0;
}

.partnerships h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--primary-green);
  text-align: center;
  margin-bottom: 3rem;
}

.partners-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.partners-text p {
  font-size: 1.1rem;
  color: var(--text-grey);
  line-height: 1.7;
  margin-bottom: 3rem;
}

.partners-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.partner-category {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.partner-category:hover {
  transform: translateY(-5px);
}

.partner-category i {
  font-size: 2.5rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.partner-category h4 {
  color: var(--text-dark);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.partner-category p {
  color: var(--text-grey);
  font-size: 0.9rem;
  margin: 0;
}

/* Why Choose Us Section */
.why-choose {
  padding: 4rem 0;
  background-color: #f8f9fa;
}

.why-choose h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--primary-green);
  text-align: center;
  margin-bottom: 3rem;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.advantage-item {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.advantage-item:hover {
  transform: translateY(-10px);
  border-color: var(--primary-green);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.advantage-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.advantage-icon i {
  font-size: 2rem;
  color: white;
}

.advantage-item h3 {
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-weight: 600;
}

.advantage-item p {
  color: var(--text-grey);
  line-height: 1.6;
  margin: 0;
}

/* Export CTA Section */
.export-cta {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-content > p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.btn-primary,
.btn-secondary {
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary {
  background: white;
  color: var(--primary-green);
}

.btn-primary:hover {
  background: var(--light-grey);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: var(--primary-green);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.contact-info-cta {
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-info-cta .contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  opacity: 0.9;
}

.contact-info-cta i {
  font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .export-hero h1 {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .overview-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .export-highlights {
    grid-template-columns: 1fr;
  }
  
  .process-timeline::before {
    left: 30px;
  }
  
  .timeline-step {
    flex-direction: row !important;
    padding-left: 70px;
  }
  
  .timeline-step:nth-child(even) {
    flex-direction: row !important;
  }
  
  .step-number {
    position: absolute;
    left: 0;
    width: 60px;
    height: 60px;
    font-size: 1.2rem;
  }
  
  .step-content {
    margin-left: 1rem;
    margin-right: 0;
  }
  
  .shipping-cards {
    grid-template-columns: 1fr;
  }
  
  .contact-info-cta {
    flex-direction: column;
    gap: 1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 200px;
  }
}

@media (max-width: 480px) {
  .export-hero {
    padding: 3rem 1rem;
  }
  
  .export-main {
    padding: 0 1rem;
  }
  
  .export-overview,
  .export-services,
  .why-choose {
    padding: 3rem 0;
  }
  
  .regions-grid,
  .services-grid,
  .advantages-grid {
    grid-template-columns: 1fr;
  }
  
  .shipping-card {
    padding: 1.5rem;
  }
  
  .documents-grid {
    grid-template-columns: 1fr;
  }
  
  .partners-categories {
    grid-template-columns: repeat(2, 1fr);
  }
}