body {
  padding-top: 80px;
}

.hero-section {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(44, 24, 16, 0.6), rgba(139, 0, 0, 0.4)), url('images/hero1-delivery-courier-package-door_orig.jpg') center/cover;
  color: white;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(139, 0, 0, 0.2) 0%, transparent 50%);
  animation: float 20s ease-in-out infinite;
  pointer-events: none;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(-20px, -20px) rotate(1deg); }
  66% { transform: translate(20px, -10px) rotate(-1deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  animation: slideInUp 0.8s ease-out;
}

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

.hero-tagline {
  font-size: 1.25rem;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.hero-buttons .button-secondary {
  border-color: white;
  color: white;
}

.hero-buttons .button-secondary:hover {
  background: white;
  color: var(--primary);
}

.taste-map-section {
  background: var(--bg-secondary);
  position: relative;
}

.taste-map-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(139, 0, 0, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(50%, -50%);
  pointer-events: none;
}

.taste-map-container {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
}

.taste-map-svg {
  width: 100%;
  max-width: 350px;
  height: auto;
  cursor: pointer;
  transition: var(--transition);
}

.map-region {
  fill: var(--primary);
  opacity: 0.7;
  stroke: white;
  stroke-width: 2;
  transition: var(--transition);
  cursor: pointer;
}

.map-region:hover,
.map-region.active {
  opacity: 1;
  fill: var(--accent);
  transform: scale(1.05);
}

.region-details {
  padding: 32px;
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.region-products {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.product-highlight {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--bg-primary);
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
}

.product-highlight:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-sm);
}

.product-highlight img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
}

.product-highlight-info h4 {
  margin-bottom: 4px;
  color: var(--primary);
}

.product-highlight-info p {
  margin: 0;
  font-size: 0.875rem;
}

.featured-products-section {
  position: relative;
}

.featured-products-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 200px;
  height: 200px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.1;
  pointer-events: none;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

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

.product-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border-color);
  position: relative;
}

.product-card:hover {
  transform: perspective(1000px) rotateY(5deg) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.product-card::before {
  content: '';
  position: absolute;
  top: 16px;
  right: 16px;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  z-index: 3;
}

.product-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: var(--transition);
}

.product-card:hover .product-image {
  transform: scale(1.1);
}

.product-info {
  padding: 24px;
}

.product-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--primary);
}

.product-description {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 0.875rem;
}

.product-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.price-ron {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

.price-cad {
  font-size: 1rem;
  color: var(--text-secondary);
}

.add-to-cart-btn {
  width: 100%;
  background: var(--accent);
  color: white;
  padding: 12px;
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.add-to-cart-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

.testimonials-section {
  background: var(--primary);
  color: white;
  position: relative;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='white' fill-opacity='0.03'%3E%3Ccircle cx='20' cy='20' r='2'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.testimonials-grid {
  position: relative;
  z-index: 2;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.15);
}

.testimonial-quote {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.9);
}

.testimonial-quote::before {
  content: '"';
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.5);
}

.testimonial-quote::after {
  content: '"';
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.5);
}

.testimonial-author {
  font-weight: 600;
  color: white;
  margin-bottom: 4px;
}

.testimonial-location {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.why-choose-section {
  background: var(--bg-secondary);
  position: relative;
}

.why-choose-section::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 150px;
  height: 150px;
  background: var(--primary);
  opacity: 0.1;
  clip-path: polygon(0% 0%, 0% 100%, 25% 100%, 25% 25%, 75% 25%, 75% 75%, 25% 75%, 25% 100%, 100% 100%, 100% 0%);
  transform: translateY(-50%);
  pointer-events: none;
}

.features-grid {
  position: relative;
  z-index: 2;
}

.feature-card {
  text-align: center;
  padding: 48px 32px;
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent 40%, rgba(139, 0, 0, 0.05) 50%, transparent 60%);
  transition: var(--transition);
  transform: rotate(45deg);
}

.feature-card:hover::before {
  animation: shine 0.6s ease-in-out;
}

@keyframes shine {
  0% { transform: translateX(-100%) rotate(45deg); }
  100% { transform: translateX(100%) rotate(45deg); }
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  position: relative;
  z-index: 2;
}

.feature-icon svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.feature-title {
  color: var(--primary);
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.feature-description {
  position: relative;
  z-index: 2;
}

.about-hero-section {
  background: linear-gradient(rgba(44, 24, 16, 0.7), rgba(139, 0, 0, 0.5)), url('images/about-courier-service-office-2_orig.jpg') center/cover;
  color: white;
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
}

.team-section {
  background: var(--bg-secondary);
}

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

.team-member-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.team-member-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  transition: var(--transition);
}

.team-member-card:hover::before {
  left: 100%;
}

.team-member-card:hover {
  transform: perspective(1000px) rotateY(-5deg);
  box-shadow: var(--shadow-lg);
}

.team-member-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 24px;
  object-fit: cover;
  border: 4px solid var(--border-color);
  transition: var(--transition);
}

.team-member-card:hover .team-member-photo {
  border-color: var(--primary);
  transform: scale(1.05);
}

.team-member-name {
  color: var(--primary);
  margin-bottom: 8px;
}

.team-member-role {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 16px;
}

.team-member-bio {
  font-size: 0.9rem;
  line-height: 1.6;
}

.story-section {
  position: relative;
}

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

.story-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.story-image:hover {
  transform: scale(1.02);
}

.products-hero-section {
  background: linear-gradient(rgba(46, 92, 62, 0.8), rgba(139, 0, 0, 0.6)), url('images/services-food-delivery-local_orig.jpg') center/cover;
  color: white;
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
}

.product-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.category-filter {
  background: var(--bg-card);
  border: 2px solid var(--border-color);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  color: var(--text-primary);
}

.category-filter:hover,
.category-filter.active {
  border-color: var(--primary);
  background: var(--primary);
  color: white;
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.category-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  background: var(--bg-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: var(--transition);
}

.category-filter:hover .category-icon,
.category-filter.active .category-icon {
  background: rgba(255, 255, 255, 0.2);
}

.product-story-popup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  max-width: 400px;
  width: 90%;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 1000;
  border: 2px solid var(--primary);
}

.product-story-popup.show {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}

.popup-overlay.show {
  opacity: 1;
  visibility: visible;
}

.close-popup {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-secondary);
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

.close-popup:hover {
  background: var(--bg-secondary);
  color: var(--primary);
}

.contact-hero-section {
  background: linear-gradient(rgba(44, 24, 16, 0.7), rgba(139, 0, 0, 0.5)), url('images/about-delivery-team-portrait_orig.jpg') center/cover;
  color: white;
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: center;
}

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

.contact-info {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.contact-item {
  margin-bottom: 32px;
  padding: 20px;
  background: var(--bg-primary);
  border-radius: var(--radius);
  transition: var(--transition);
}

.contact-item:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-sm);
}

.contact-item h4 {
  color: var(--primary);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-item svg {
  width: 24px;
  height: 24px;
  fill: var(--primary);
}

.opening-hours {
  background: var(--primary);
  color: white;
  padding: 32px;
  border-radius: var(--radius);
  margin-top: 32px;
}

.opening-hours h4 {
  color: white;
  margin-bottom: 20px;
}

.hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.hours-list li:last-child {
  border-bottom: none;
}

.form-success-message {
  background: var(--accent);
  color: white;
  padding: 16px;
  border-radius: var(--radius);
  margin-bottom: 24px;
  display: none;
}

.form-success-message.show {
  display: block;
  animation: slideInDown 0.5s ease-out;
}

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

.events-hero-section {
  background: linear-gradient(rgba(46, 92, 62, 0.8), rgba(139, 0, 0, 0.6)), url('images/services-document-courier-express-2_orig.jpg') center/cover;
  color: white;
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
}

.events-grid {
  display: grid;
  gap: 32px;
}

.event-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border-color);
  display: grid;
  grid-template-columns: 200px 1fr auto;
  gap: 24px;
}

.event-card:hover {
  transform: perspective(1000px) rotateX(2deg);
  box-shadow: var(--shadow-lg);
}

.event-date-block {
  background: var(--primary);
  color: white;
  padding: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.event-day {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.event-month {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.event-details {
  padding: 24px 0;
}

.event-title {
  color: var(--primary);
  margin-bottom: 12px;
}

.event-time,
.event-location {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.event-description {
  margin-top: 16px;
}

.event-actions {
  padding: 24px 24px 24px 0;
  display: flex;
  align-items: center;
}

.attend-button {
  background: var(--accent);
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.attend-button:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

.calendar-embed {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  text-align: center;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
}

.calendar-placeholder {
  width: 120px;
  height: 120px;
  background: var(--bg-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--text-secondary);
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animate {
  opacity: 1;
  transform: translateY(0);
}

.staggered-animation .animate-on-scroll:nth-child(1) { transition-delay: 0.1s; }
.staggered-animation .animate-on-scroll:nth-child(2) { transition-delay: 0.2s; }
.staggered-animation .animate-on-scroll:nth-child(3) { transition-delay: 0.3s; }
.staggered-animation .animate-on-scroll:nth-child(4) { transition-delay: 0.4s; }
.staggered-animation .animate-on-scroll:nth-child(5) { transition-delay: 0.5s; }
.staggered-animation .animate-on-scroll:nth-child(6) { transition-delay: 0.6s; }

@media (max-width: 768px) {
  .hero-section {
    min-height: 50vh;
    text-align: center;
  }
  
  .hero-content {
    max-width: 100%;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .taste-map-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .story-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
  }
  
  .event-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .event-date-block {
    justify-self: start;
    max-width: 150px;
    margin: 0 auto;
  }
  
  .event-actions {
    padding: 0 24px 24px;
    justify-content: center;
  }
}