/* Enhanced ParcelVest Styles - Premium Design */

/* Enhanced Header Styles */
.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.header.hidden {
  transform: translateY(-100%);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--forest-green);
  text-decoration: none;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--forest-green) 0%, #2a5424 100%);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  box-shadow: 0 4px 15px rgba(31, 61, 27, 0.3);
}

.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
  list-style: none;
}

.nav-link {
  color: var(--slate-gray);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--forest-green);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--forest-green);
}

.nav-link:hover::after {
  width: 100%;
}

/* Enhanced Hero Section */
.hero {
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
  padding: 120px 0 80px;
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, rgba(31, 61, 27, 0.05) 0%, transparent 70%);
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

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

.hero-text h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--forest-green);
  margin-bottom: 24px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #5a5a5a;
  margin-bottom: 32px;
  font-weight: 400;
}

.hero-main-image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06),
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.3s ease;
}

.hero-main-image:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

/* Enhanced Buttons */
.btn {
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.025em;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--forest-green) 0%, #2a5424 100%);
  color: white;
  box-shadow: 0 4px 14px 0 rgba(31, 61, 27, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px 0 rgba(31, 61, 27, 0.4);
}

.btn-secondary {
  background: white;
  color: var(--forest-green);
  border: 2px solid var(--forest-green);
  box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
  background: var(--forest-green);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px 0 rgba(31, 61, 27, 0.3);
}

/* Enhanced Sections */
.section {
  padding: 80px 0;
  position: relative;
}

.section-alt {
  background: linear-gradient(135deg, #fafbfc 0%, #f0f2f5 100%);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--forest-green);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--copper-accent), var(--gold-accent));
  border-radius: 2px;
}

.section-image {
  margin: 40px 0;
  text-align: center;
}

.section-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-image img:hover {
  transform: scale(1.02);
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.3);
}

/* Enhanced Process Timeline */
.process-timeline {
  position: relative;
  max-width: 900px;
  margin: 60px auto 0;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 40px;
  right: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--copper-accent) 0%, var(--gold-accent) 100%);
  z-index: -1;
}

.process-step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  position: relative;
}

.process-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--forest-green) 0%, #2a5424 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 10px 30px -10px rgba(31, 61, 27, 0.5);
  position: relative;
  z-index: 1;
}

.process-content {
  flex: 1;
  padding-left: 30px;
  padding-top: 10px;
}

.process-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--forest-green);
}

.process-content p {
  color: #5a5a5a;
  line-height: 1.7;
}

/* Enhanced Feature Cards */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.feature-card {
  background: white;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--copper-accent), var(--gold-accent));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: inline-block;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.feature-card:nth-child(2) .feature-icon { animation-delay: 0.2s; }
.feature-card:nth-child(3) .feature-icon { animation-delay: 0.4s; }
.feature-card:nth-child(4) .feature-icon { animation-delay: 0.6s; }
.feature-card:nth-child(5) .feature-icon { animation-delay: 0.8s; }
.feature-card:nth-child(6) .feature-icon { animation-delay: 1s; }

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--forest-green);
  margin-bottom: 15px;
}

/* Enhanced Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 60px;
}

@media (min-width: 768px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
}

.testimonial-card {
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: transform 0.3s ease;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 4rem;
  color: var(--copper-accent);
  opacity: 0.2;
  font-family: Georgia, serif;
}

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

.testimonial-quote {
  font-style: italic;
  font-size: 1.125rem;
  line-height: 1.8;
  color: #5a5a5a;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-weight: 700;
  color: var(--forest-green);
  font-size: 1.125rem;
}

.testimonial-location {
  color: var(--copper-accent);
  font-size: 0.875rem;
  margin-top: 5px;
}

/* Enhanced Form Section */
.form-section {
  padding: 100px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.3);
}

.form-group {
  margin-bottom: 25px;
}

.form-label {
  display: block;
  font-weight: 600;
  color: var(--forest-green);
  margin-bottom: 8px;
  font-size: 0.95rem;
  letter-spacing: 0.025em;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #fafbfc;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--forest-green);
  background: white;
  box-shadow: 0 0 0 4px rgba(31, 61, 27, 0.1);
}

.form-submit {
  width: 100%;
  padding: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--forest-green) 0%, #2a5424 100%);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px -10px rgba(31, 61, 27, 0.5);
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px -10px rgba(31, 61, 27, 0.6);
}

/* Enhanced Footer */
.footer {
  background: linear-gradient(135deg, var(--forest-green) 0%, #1a2f18 100%);
  color: white;
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  background: linear-gradient(90deg, var(--gold-accent), var(--copper-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-tagline {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 15px;
  font-style: italic;
}

.footer h4 {
  color: var(--gold-accent);
  margin-bottom: 20px;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-links a {
  color: white;
  opacity: 0.8;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-accent);
  transition: width 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--gold-accent);
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 30px;
  text-align: center;
}

.footer-bottom a {
  color: var(--gold-accent);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  margin: 0 10px;
}

.footer-bottom a:hover {
  color: white;
  text-decoration: underline;
}

/* Mobile Responsive Enhancements */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-text {
    text-align: center;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .process-timeline::before {
    left: 40px;
    right: auto;
    top: 0;
    bottom: 0;
    width: 3px;
    height: auto;
  }
  
  .form-container {
    padding: 30px 20px;
  }
}

/* Animations */
.fade-in {
  animation: fadeIn 0.8s ease-out;
}

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

/* Utility Classes */
.text-center { text-align: center; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mb-lg { margin-bottom: var(--space-lg); }
.rounded { border-radius: 8px; }
.rounded-lg { border-radius: 16px; }
.shadow-xl { box-shadow: var(--shadow-xl); }