/* Pioneer Transport Shared Styles */
/* Based on PPWL stylesheet (2025-07-22) */

/* ----- COLOR VARIABLES ----- */
:root { 
  --color-primary: #002B45;
  --color-accent: #00BFFF;
  --color-accent-light: #E0F7FA;
  --color-dark: #333333;
  --color-light: #FAFAFA;
}

/* ----- GLOBAL ELEMENTS ----- */
body {
  font-family: 'Inter', 'Roboto', 'Open Sans', Arial, sans-serif;
  background: var(--color-light);
  color: var(--color-dark);
  margin: 0;
  padding: 0;
}

section {
  padding: 60px 20px;
}

h2, h3 {
  color: var(--color-primary);
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* ----- HEADER & NAVIGATION ----- */
header {
  background: var(--color-primary);
  color: white;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo {
  max-width: 110px;
  max-height: 65px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 10px;
  margin-left: 1.2rem;
  box-shadow: 0 2px 10px rgba(30,40,60,0.07);
}

nav a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  font-weight: bold;
  font-size: 1.08rem;
  padding: 0.3rem 0.7rem;
  border-radius: 7px;
  transition: background 0.15s, color 0.15s;
}

nav a:hover,
nav a.active {
  background: #38b6ff;
  color: #fff;
  text-decoration: none;
}

/* ----- BUTTONS ----- */
.btn-primary,
button.btn-primary,
a.btn-primary {
  background: #38b6ff;
  color: #1b2940;
  font-weight: bold;
  padding: 0.85rem 2.5rem;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-size: 1.12rem;
  margin-top: 1.2rem;
  transition: background 0.18s, color 0.18s;
  display: inline-block;
  text-align: center;
}

.btn-primary:hover,
button.btn-primary:hover,
a.btn-primary:hover {
  background: #1b2940;
  color: #fff;
  text-decoration: none;
}

/* ----- FOOTER ----- */
.footer, footer {
  background: var(--color-primary);
  color: white;
  text-align: center;
  padding: 20px;
}

/* ----- HOMEPAGE SERVICE CARDS ----- */
.service-cards {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin: 2.5rem 0;
}

.service-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(30,40,60,0.07);
  padding: 2rem 1.5rem;
  flex: 1 1 230px;
  max-width: 320px;
  min-width: 220px;
  text-align: center;
  margin-bottom: 1.2rem;
  transition: box-shadow 0.15s, transform 0.14s;
}

.service-card:hover {
  box-shadow: 0 6px 24px rgba(40,60,90,0.12);
  transform: translateY(-3px) scale(1.02);
}

.service-card h3 {
  margin-bottom: 0.7em;
}

/* ----- FORMS ----- */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="file"],
textarea,
select {
  width: 100%;
  box-sizing: border-box;
  padding: 0.7rem;
  border-radius: 7px;
  border: 1px solid #bdd6fa;
  margin-bottom: 1.1rem;
  font-size: 1rem;
  background: #f8fbff;
  transition: border 0.13s;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
  border: 1.5px solid #38b6ff;
  outline: none;
}

textarea {
  min-height: 48px;
  resize: vertical;
}

/* ----- QUOTE PAGE ----- */
.quote-page {
  max-width: 700px;
  margin: 2.5rem auto 1rem auto;
  background: #f8fafc;
  padding: 2.5rem 2rem 2rem 2rem;
  border-radius: 18px;
  box-shadow: 0 6px 24px rgba(40,60,90,0.08);
}

/* ----- RESPONSIVE STYLES ----- */
@media (max-width: 900px) {
  .service-cards {
    flex-direction: column;
    gap: 1.2rem;
  }
}

@media (max-width: 700px) {
  section {
    padding: 30px 8px;
  }
  .quote-page {
    padding: 1.1rem 0.6rem;
  }
}

@media (max-width: 500px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px;
  }
  nav a {
    margin-left: 0;
    margin-right: 12px;
    font-size: 0.99rem;
  }
}

/* ----- MISC ----- */
ul {
  padding-left: 1.1em;
}

a {
  transition: color 0.13s;
}

