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

html {
  height: 100%;
  width: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Top Bar */
.top-bar {
  background: white;
  height: 80px;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
}

.top-bar .container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  align-items: center;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.logo img {
  height: 50px;
  width: auto;
}

.top-bar-cta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.top-cta-button {
  background: #ff6600;
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.top-cta-button:hover {
  background: #e55a00;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
}

/* Hero Section */
.hero {
  background: #ff6600;
  color: white;
  padding: 80px 0;
  min-height: 50vh;
  display: flex;
  align-items: center;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-left h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-left p {
  font-size: 1.25rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.benefits {
  list-style: none;
  margin-bottom: 40px;
}

.benefits li {
  font-size: 1.1rem;
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
}

.benefits li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4ade80;
  font-weight: bold;
  font-size: 1.2rem;
}

.cta-button {
  background: white;
  color: #ff6600;
  border: none;
  padding: 22px 48px;
  font-size: 1.44rem;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button:hover {
  background: #f5f5f5;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 102, 0, 0.3);
}

.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.hero-image:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.image-caption {
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 8px 16px;
  font-size: 0.9rem;
  text-align: center;
  margin-top: -4px;
  border-radius: 0 0 12px 12px;
  font-weight: 500;
}

/* Shipping Markets Section */
.shipping-markets {
  background: #f1f5f9;
  padding: 80px 0;
}

.shipping-markets h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: #1e293b;
}

.markets-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}

.markets-text p {
  font-size: 1.2rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 40px;
}

.markets-features {
  display: grid;
  gap: 30px;
}

.feature {
  background: white;
  padding: 25px;
  border-radius: 8px;
  border-left: 4px solid #ff6600;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.feature h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 10px;
}

.feature p {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.markets-stats {
  display: grid;
  gap: 30px;
}

.stat {
  text-align: center;
  background: white;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #ff6600;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.1rem;
  color: #64748b;
  font-weight: 500;
}

/* Social Proof Section */
.social-proof {
  background: #f8fafc;
  padding: 80px 0;
}

.social-proof h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: #1e293b;
}

.testimonials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.testimonial {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.testimonial-content p {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 30px;
  color: #475569;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.avatar-placeholder {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(45deg, #3b82f6, #8b5cf6);
  flex-shrink: 0;
}

.author-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: #1e293b;
}

.author-info span {
  font-size: 0.9rem;
  color: #64748b;
}

/* How it Works Section */
.how-it-works {
  background: white;
  padding: 80px 0;
}

.how-it-works h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: #1e293b;
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 20px;
  align-items: center;
}

.step {
  text-align: center;
  padding: 30px 20px;
  border-radius: 12px;
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
  border-color: #ff6600;
  box-shadow: 0 10px 25px rgba(255, 102, 0, 0.1);
}

.step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: #ff6600;
  color: white;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 60px;
  margin-bottom: 20px;
}

.step h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #1e293b;
  line-height: 1.3;
}

.step p {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.6;
}

.arrow {
  font-size: 2rem;
  color: #ff6600;
  font-weight: bold;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .top-bar-content {
    flex-direction: row;
    justify-content: space-between;
  }

  .logo img {
    height: 40px;
  }

  .top-cta-button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-left h1 {
    font-size: 2.5rem;
  }

  .testimonials {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .social-proof h2 {
    font-size: 2rem;
  }

  .hero {
    padding: 60px 0;
  }

  .social-proof {
    padding: 60px 0;
  }

  .how-it-works {
    padding: 60px 0;
  }

  .how-it-works h2 {
    font-size: 2rem;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .arrow {
    transform: rotate(90deg);
    font-size: 1.5rem;
  }

  .step {
    padding: 25px 15px;
  }

  .step h3 {
    font-size: 1.1rem;
  }

  .shipping-markets {
    padding: 60px 0;
  }

  .shipping-markets h2 {
    font-size: 2rem;
  }

  .markets-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .markets-text p {
    font-size: 1.1rem;
  }

  .markets-features {
    gap: 20px;
  }

  .feature {
    padding: 20px;
  }

  .stat-number {
    font-size: 2.5rem;
  }
}

/* Get Quote Section */
.get-quote {
  background: #1e293b;
  color: white;
  padding: 80px 0;
  text-align: center;
}

.get-quote h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: white;
}

.quote-content {
  max-width: 800px;
  margin: 0 auto;
}

.quote-benefits {
  list-style: none;
  margin-bottom: 40px;
  text-align: left;
  display: inline-block;
}

.quote-benefits li {
  font-size: 1.1rem;
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
  opacity: 0.9;
}

.quote-benefits li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4ade80;
  font-weight: bold;
  font-size: 1.2rem;
}

.quote-cta-button {
  background: #ff6600;
  color: white;
  border: none;
  padding: 18px 40px;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.quote-cta-button:hover {
  background: #e55a00;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 102, 0, 0.3);
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}

.modal-content {
  background-color: white;
  margin: 5% auto;
  padding: 40px;
  border-radius: 12px;
  width: 90%;
  max-width: 600px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 15px;
}

.close:hover,
.close:focus {
  color: #000;
}

.modal-content h2 {
  color: #1e293b;
  margin-bottom: 30px;
  font-size: 2rem;
}

.quote-form {
  display: grid;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 8px;
  color: #374151;
  font-size: 1rem;
}

.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ff6600;
  box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.submit-button {
  background: #ff6600;
  color: white;
  border: none;
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 10px;
}

.submit-button:hover {
  background: #e55a00;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 102, 0, 0.3);
}

/* Responsive Modal */
@media (max-width: 768px) {
  .modal-content {
    margin: 10% auto;
    padding: 30px 20px;
    width: 95%;
  }
  
  .modal-content h2 {
    font-size: 1.5rem;
  }
  
  .get-quote h2 {
    font-size: 2rem;
  }
  
  .quote-benefits {
    text-align: center;
  }
  
  .get-quote {
    padding: 60px 0;
  }
}


/* Thank You Page Styles */
.thank-you {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  min-height: calc(100vh - 80px);
  padding: 80px 0;
  display: flex;
  align-items: center;
}

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

.thank-you-icon {
  width: 100px;
  height: 100px;
  background: #4ade80;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: bold;
  margin: 0 auto 30px;
  animation: checkmarkPulse 0.6s ease-out;
}

@keyframes checkmarkPulse {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.thank-you h1 {
  font-size: 3rem;
  color: #1e293b;
  margin-bottom: 20px;
  font-weight: 700;
}

.thank-you-content > p {
  font-size: 1.3rem;
  color: #475569;
  margin-bottom: 50px;
  line-height: 1.6;
}

.next-steps {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
  text-align: left;
}

.next-steps h2 {
  text-align: center;
  font-size: 2rem;
  color: #1e293b;
  margin-bottom: 30px;
}

.steps {
  display: grid;
  gap: 25px;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.step-number {
  width: 40px;
  height: 40px;
  background: #ff6600;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.step-text h3 {
  font-size: 1.2rem;
  color: #1e293b;
  margin-bottom: 5px;
  font-weight: 600;
}

.step-text p {
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

.contact-info {
  background: #f1f5f9;
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 30px;
}

.contact-info h3 {
  font-size: 1.3rem;
  color: #1e293b;
  margin-bottom: 10px;
}

.contact-info p {
  color: #64748b;
  margin: 0;
}

/* Responsive styles for thank you page */
@media (max-width: 768px) {
  .thank-you {
    padding: 40px 0;
  }
  
  .thank-you h1 {
    font-size: 2.2rem;
  }
  
  .thank-you-content > p {
    font-size: 1.1rem;
  }
  
  .next-steps {
    padding: 25px;
    text-align: center;
  }
  
  .step-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .step-text {
    text-align: center;
  }
}
