/*
Theme Name: Safeway Services Group
Theme URI: https://safewayservicesgroup.com
Description: Professional WordPress theme for Safeway Services Group logistics services website
Version: 1.0
Author: Safeway Services Group
Author URI: https://safewayservicesgroup.com
*/

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #ffffff;
}

/* Header & Navigation */
.site-header {
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.site-logo img {
  height: 64px;
  width: auto;
}

.main-navigation {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.main-navigation a {
  color: #374151;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.main-navigation a:hover {
  color: #2C4572;
}

.btn-primary {
  background-color: #2C4572;
  color: #ffffff;
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: #1f2f4f;
}

.btn-secondary {
  background-color: #C8102E;
  color: #ffffff;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.125rem;
  transition: background-color 0.3s;
  display: inline-block;
  border: none;
  cursor: pointer;
}

.btn-secondary:hover {
  background-color: #a00c25;
}

.btn-outline {
  background-color: #ffffff;
  color: #2C4572;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.125rem;
  border: 2px solid #2C4572;
  transition: background-color 0.3s;
  display: inline-block;
  cursor: pointer;
}

.btn-outline:hover {
  background-color: #f9fafb;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #374151;
}

@media (max-width: 768px) {
  .main-navigation {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background-color: #ffffff;
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }

  .main-navigation.active {
    display: flex;
  }

  .mobile-menu-toggle {
    display: block;
  }
}

/* Hero Section */
.hero-section {
  padding-top: 8rem;
  padding-bottom: 5rem;
  background: linear-gradient(to bottom right, #f9fafb, #ffffff);
}

.hero-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background-color: #2C4572;
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-title .highlight {
  color: #2C4572;
}

.hero-description {
  font-size: 1.25rem;
  color: #4b5563;
  margin-bottom: 2rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

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

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1rem;
  }
}

/* Carousel */
.carousel-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 2rem;
}

.carousel-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  min-width: 100%;
  height: 500px;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-controls {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

.carousel-dot.active {
  background-color: #ffffff;
}

/* Trusted By Section */
.trusted-section {
  padding: 3rem 0;
  background-color: #ffffff;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.trusted-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}

.trusted-title {
  color: #4b5563;
  font-weight: 600;
  margin-bottom: 2rem;
}

.trusted-logo img {
  height: 64px;
  width: auto;
}

/* About Section */
.about-section {
  padding: 5rem 1rem;
  background-color: #ffffff;
}

.about-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-content h2 {
  font-size: 2.25rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 1.5rem;
}

.about-content p {
  font-size: 1.125rem;
  color: #4b5563;
  margin-bottom: 1rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.feature-card {
  background-color: #f9fafb;
  padding: 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
}

.feature-icon {
  width: 48px;
  height: 48px;
  color: #2C4572;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-weight: bold;
  color: #111827;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.875rem;
  color: #4b5563;
}

@media (max-width: 768px) {
  .about-container {
    grid-template-columns: 1fr;
  }
}

/* Services Section */
.services-section {
  padding: 5rem 1rem;
  background-color: #f9fafb;
}

.services-container {
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.25rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.25rem;
  color: #4b5563;
}

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

.service-card {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  transition: box-shadow 0.3s;
}

.service-card:hover {
  box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}

.service-icon {
  width: 64px;
  height: 64px;
  background-color: rgba(44, 69, 114, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 0.75rem;
}

.service-card p {
  color: #4b5563;
}

.who-we-serve {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.who-we-serve h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 1rem;
}

.serve-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.serve-category h4 {
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
}

.serve-category ul {
  list-style: none;
  color: #4b5563;
}

.serve-category li {
  margin-bottom: 0.25rem;
}

@media (max-width: 768px) {
  .serve-categories {
    grid-template-columns: 1fr;
  }
}

/* Coverage Section */
.coverage-section {
  padding: 5rem 1rem;
  background-color: #ffffff;
}

.coverage-container {
  max-width: 1280px;
  margin: 0 auto;
}

.coverage-map-wrapper {
  background: linear-gradient(to bottom right, #f9fafb, #ffffff);
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.coverage-map-inner {
  background-color: #ffffff;
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.map-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.map-container {
  background-color: #ffffff;
  border: 2px solid #2C4572;
  border-radius: 0.5rem;
  padding: 2rem;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-container img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

.map-description {
  text-align: center;
  color: #4b5563;
  margin-top: 1.5rem;
}

.cities-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  font-size: 0.875rem;
}

.city-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #374151;
}

.city-star {
  color: #C8102E;
  font-size: 1rem;
}

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

/* Footer */
.site-footer {
  background-color: #111827;
  color: #ffffff;
  padding: 3rem 1rem;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.footer-logo img {
  height: 48px;
  width: auto;
  margin-bottom: 0.5rem;
}

.footer-section p {
  color: #9ca3af;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #9ca3af;
}

.quick-links a {
  display: block;
  color: #9ca3af;
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}

.quick-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 2rem;
  text-align: center;
  color: #9ca3af;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
  }
}

/* Utility Classes */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.text-center {
  text-align: center;
}

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }

.pt-8 { padding-top: 2rem; }
.pt-20 { padding-top: 5rem; }
.pb-20 { padding-bottom: 5rem; }
