/* ============================================================================
   PDX PARCEL DELIVERY EXPRESS - WEBSITE STYLES
   Modern, Responsive Design
   ============================================================================ */

/* CSS Variables for Brand Colors */
:root {
  --color-black: #000000;
  --color-deep-red: #A0232C;
  --color-maroon: #8B0000;
  --color-white: #FFFFFF;
  --color-light-gray: #F5F5F5;
  --color-dark-gray: #333333;
  --color-medium-gray: #666666;
  --color-border: #E8E8E8;

  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;

  --transition-speed: 0.3s;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --box-shadow-hover: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-dark-gray);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-black);
  margin-bottom: 1rem;
}

h1 { font-size: 3.25rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

a {
  color: var(--color-deep-red);
  text-decoration: none;
  transition: color var(--transition-speed);
}

a:hover {
  color: var(--color-maroon);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

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

/* Header */
.header {
  background: var(--color-white);
  box-shadow: var(--box-shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all var(--transition-speed);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--color-black);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-size: 1.75rem;
  letter-spacing: 2px;
  color: var(--color-black);
}

.logo-sub {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--color-deep-red);
  letter-spacing: 1px;
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

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

.nav-links a {
  color: var(--color-dark-gray);
  font-weight: 500;
  font-size: 1rem;
  transition: color var(--transition-speed);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-deep-red);
  transition: width var(--transition-speed);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-deep-red);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-dark-gray);
  padding: 0.5rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition-speed);
  border: none;
  text-align: center;
  text-decoration: none;
}

.btn-primary {
  background: var(--color-deep-red);
  color: var(--color-white);
  box-shadow: 0 4px 6px rgba(160, 35, 44, 0.2);
}

.btn-primary:hover {
  background: var(--color-maroon);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(160, 35, 44, 0.3);
  color: var(--color-white);
}

.btn-secondary {
  background: transparent;
  color: var(--color-deep-red);
  border: 2px solid var(--color-deep-red);
}

.btn-secondary:hover {
  background: var(--color-deep-red);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-white-outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
}

.btn-white-outline:hover {
  background: var(--color-white);
  color: var(--color-deep-red);
  transform: translateY(-2px);
}

.btn-large {
  padding: 18px 40px;
  font-size: 1.125rem;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--color-white);
  padding: 80px 20px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  color: var(--color-white);
  font-size: 3.25rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
  color: var(--color-white);
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

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

/* Sections */
.section {
  padding: 80px 20px;
}

.section-white {
  background: var(--color-white);
}

.section-gray {
  background: var(--color-light-gray);
}

.section-dark {
  background: var(--color-black);
  color: var(--color-white);
}

.section-dark h2,
.section-dark h3 {
  color: var(--color-white);
}

.section-red {
  background: var(--color-deep-red);
  color: var(--color-white);
}

.section-red h2,
.section-red h3 {
  color: var(--color-white);
}

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

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--color-medium-gray);
  max-width: 700px;
  margin: 0 auto;
}

/* Trust Indicators */
.trust-indicators {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.trust-item {
  text-align: center;
  padding: 2rem;
}

.trust-icon {
  font-size: 3rem;
  color: var(--color-deep-red);
  margin-bottom: 1rem;
}

.trust-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-deep-red);
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.trust-label {
  font-size: 1rem;
  color: var(--color-medium-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.service-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 2rem;
  transition: all var(--transition-speed);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--box-shadow-hover);
  border-color: var(--color-deep-red);
}

.service-icon {
  font-size: 3rem;
  color: var(--color-deep-red);
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--color-black);
}

.service-card p {
  color: var(--color-medium-gray);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-card .btn-link {
  color: var(--color-deep-red);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.service-card .btn-link:hover {
  gap: 0.75rem;
}

/* Coverage Section */
.coverage-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.coverage-map {
  background: var(--color-white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}

.coverage-list {
  list-style: none;
}

.coverage-list li {
  padding: 0.75rem 0;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.coverage-list li::before {
  content: '✓';
  color: var(--color-deep-red);
  font-weight: bold;
  font-size: 1.5rem;
}

.locations-list {
  margin-top: 2rem;
  list-style: none;
}

.locations-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.locations-list li::before {
  content: '•';
  color: var(--color-deep-red);
  position: absolute;
  left: 0;
  font-size: 1.5rem;
}

.locations-list strong {
  color: var(--color-black);
}

/* Facility Section */
.facility-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.facility-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.facility-features {
  list-style: none;
}

.facility-features li {
  padding: 1rem 0;
  padding-left: 2.5rem;
  position: relative;
  font-size: 1.125rem;
  border-bottom: 1px solid var(--color-border);
}

.facility-features li:last-child {
  border-bottom: none;
}

.facility-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-deep-red);
  font-weight: bold;
  font-size: 1.5rem;
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 100px 20px;
}

.cta-section h2 {
  font-size: 2.75rem;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
.footer {
  background: var(--color-black);
  color: var(--color-white);
  padding: 60px 20px 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto 2rem;
}

.footer-section h3 {
  color: var(--color-white);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section a {
  color: var(--color-white);
  transition: color var(--transition-speed);
}

.footer-section a:hover {
  color: var(--color-deep-red);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--color-dark-gray);
  color: var(--color-medium-gray);
  font-size: 0.875rem;
}

/* Forms */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-dark-gray);
  font-family: var(--font-heading);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition-speed);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-deep-red);
  box-shadow: 0 0 0 3px rgba(160, 35, 44, 0.1);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
}

.form-required {
  color: var(--color-deep-red);
}

/* Contact Info */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.contact-form {
  background: var(--color-white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}

.contact-info {
  background: var(--color-light-gray);
  padding: 2rem;
  border-radius: 8px;
}

.contact-item {
  margin-bottom: 2rem;
}

.contact-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--color-black);
}

.contact-item p {
  color: var(--color-medium-gray);
  margin-bottom: 0.5rem;
}

.contact-item a {
  color: var(--color-deep-red);
  font-weight: 600;
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 1rem 0;
  font-size: 0.875rem;
}

.breadcrumbs a {
  color: var(--color-medium-gray);
}

.breadcrumbs a:hover {
  color: var(--color-deep-red);
}

.breadcrumbs span {
  margin: 0 0.5rem;
  color: var(--color-medium-gray);
}

/* Page Header */
.page-header {
  background: var(--color-light-gray);
  padding: 60px 20px;
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.25rem;
  color: var(--color-medium-gray);
  max-width: 700px;
  margin: 0 auto;
}

/* Benefits List */
.benefits-list {
  list-style: none;
  margin-top: 2rem;
}

.benefits-list li {
  padding: 1.5rem 0;
  padding-left: 3rem;
  position: relative;
  border-bottom: 1px solid var(--color-border);
}

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

.benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-deep-red);
  font-weight: bold;
  font-size: 2rem;
  top: 1.5rem;
}

.benefits-list strong {
  display: block;
  font-size: 1.25rem;
  color: var(--color-black);
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

/* How It Works */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.step-item {
  text-align: center;
  padding: 2rem;
  background: var(--color-white);
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--color-deep-red);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
  font-family: var(--font-heading);
}

.step-item h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.step-item p {
  color: var(--color-medium-gray);
}

/* Responsive Design */
@media (max-width: 968px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-white);
    flex-direction: column;
    gap: 0;
    box-shadow: var(--box-shadow);
    padding: 1rem 0;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 1rem 2rem;
  }

  .nav-links a::after {
    display: none;
  }

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

  .coverage-content,
  .facility-content,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  .hero h1 { font-size: 2.25rem; }
  .hero p { font-size: 1.25rem; }
}

@media (max-width: 640px) {
  .section {
    padding: 50px 15px;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.5rem; }

  .hero {
    min-height: 400px;
    padding: 60px 15px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1.125rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

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

  .services-grid {
    grid-template-columns: 1fr;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .cta-section h2 {
    font-size: 2rem;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-red {
  color: var(--color-deep-red);
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
