* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --blue: #5874c7;
  --blue-dark: #3d5aa8;
  --blue-light: #7a93d6;
  --gray: #a8a8a8;
  --gray-dark: #4a4a4a;
  --gray-light: #f5f5f5;
  --black: #1a1a1a;
  --white: #ffffff;
}

body {
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--blue);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--blue-dark);
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("../images/falldelivery.jpg") center center / cover no-repeat;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  padding: 80px 20px;
  text-align: center;
  position: relative;
}

.hero-content {
  max-width: 800px;
  z-index: 1;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  font-weight: 500;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.cta-button {
  display: inline-block;
  padding: 16px 40px;
  background: var(--white);
  color: var(--blue-dark);
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
  color: var(--white);
}

/* Services Section */
.services {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 20px;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 30px;
  align-items: start;
}

.service-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 3 / 4;
}

.info-card {
  padding: 40px 35px;
  background: linear-gradient(135deg, var(--gray-light) 0%, var(--white) 100%);
  border-left: 4px solid var(--blue);
}

.info-section {
  margin-bottom: 35px;
}

.info-section:last-child {
  margin-bottom: 0;
}

.info-section h3 {
  font-size: 0.85rem;
  color: var(--blue-dark);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 800;
  margin-bottom: 16px;
}

.info-section ul {
  list-style: none;
  padding: 0;
}

.info-section li {
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
  color: var(--gray-dark);
  font-size: 0.95rem;
  font-weight: 500;
}

.info-section li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
}

/* Pricing Section */
.pricing {
  background: var(--gray-light);
  padding: 80px 20px;
}

.pricing h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 40px;
  letter-spacing: -0.5px;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 60px;
}

.pricing h2:last-of-type {
  margin-top: 20px;
}

.price-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid var(--blue);
  position: relative;
  overflow: hidden;
}

.price-card:hover {
  box-shadow: 0 8px 35px rgba(88, 116, 199, 0.2);
  border-top-color: var(--blue-dark);
}

.price-card .size {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gray-dark);
  margin-bottom: 12px;
}

.price-card .price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 8px;
  line-height: 1;
}

.price-card .details {
  font-size: 1rem;
  color: var(--gray);
  font-weight: 600;
}

/* Contact Bar */
.contact-bar {
  position: sticky;
  bottom: 0;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  padding: 16px 16px;
  text-align: center;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 100;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.contact-bar .logo-link img {
  height: 50px;
  width: auto;
  display: block;
  transition: transform 0.3s ease;
}

.contact-bar .call-link {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  transition: all 0.2s ease;
}

.contact-bar .call-link:hover {
  color: var(--white);
  transform: scale(1.05);
  display: inline-block;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .service-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-card img {
    aspect-ratio: 16 / 9;
    max-height: 400px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .pricing h2 {
    font-size: 1.75rem;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 500px;
    padding: 60px 20px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  .services {
    padding: 60px 16px;
  }

  .info-card {
    padding: 30px 25px;
  }

  .price-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pricing {
    padding: 60px 16px;
  }

  .pricing h2 {
    font-size: 1.5rem;
  }

  .price-card .price {
    font-size: 2.5rem;
  }

  .contact-bar {
    padding: 20px 16px;
  }

  .contact-bar .logo-link img {
    height: 60px;
  }

  .contact-bar .call-link {
    font-size: 1.05rem;
  }
}
