/* =============================================
   Road Pro Carriers LLC Global Styles
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500&family=Poppins:wght@400;600;700&display=swap');

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  background: #FFFFFF;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

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

section {
  padding: 80px 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.btn-orange {
  background: #E8600A;
  color: #FFFFFF;
  border-color: #E8600A;
}

.btn-orange:hover {
  background: #c45209;
  border-color: #c45209;
}

.btn-white-outline {
  background: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.btn-white-outline:hover {
  background: #FFFFFF;
  color: #0F2D72;
}

.btn-teal {
  background: #2BC4A4;
  color: #FFFFFF;
  border-color: #2BC4A4;
}

.btn-teal:hover {
  background: #24a88c;
  border-color: #24a88c;
}
.btn-navy {
  background: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
  border-width: 2px;
  font-weight: 600;
}

.btn-navy:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.nav-admin {
  padding: 10px 22px;
  font-size: 14px;
  margin-left: 8px;
}

.nav-admin:hover {
  color: #FFFFFF;
}

/* ---------- Header / Nav ---------- */
.site-header {
  background: #0F2D72;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo img {
  max-width: 120px;
  width: 120px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  color: #FFFFFF;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s ease;
}

.main-nav a:not(.btn):hover,
.main-nav a:not(.btn).active {
  color: #2BC4A4;
}

.nav-login {
  padding: 10px 22px;
  font-size: 14px;
}

.nav-login:hover {
  color: #FFFFFF;
}

.nav-toggle {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: #FFFFFF;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ---------- Hero ---------- */
.hero {
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center 20%;
  background-repeat: no-repeat;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero-navy {
  background: #0F2D72;
}

.hero-navy::before {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 40px 24px;
}

.hero h1 {
  color: #FFFFFF;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 20px;
}

.hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Tagline Bar ---------- */
.tagline-bar {
  background-color: #0F2D72;
  padding: 50px 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 5vw, 52px);
  font-weight: 700;
  letter-spacing: 6px;
  color: #FFFFFF;
  width: 100%;
}

.hero-about {
  background-position: center 40%;
}

/* ---------- Services Overview Card ---------- */
.services-overview {
  max-width: 800px;
  margin: 0 auto;
}

.services-overview-card {
  border-left: 4px solid #0F2D72;
  padding: 40px;
}

.services-overview-list {
  display: grid;
  gap: 28px;
  margin-bottom: 32px;
}

.service-overview-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.service-overview-item .icon-circle {
  width: 44px;
  height: 44px;
  margin: 0;
  flex-shrink: 0;
}

.service-overview-item .icon-circle svg {
  width: 20px;
  height: 20px;
}

.service-overview-item h3 {
  color: #0F2D72;
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.service-overview-item p {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
}

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

/* ---------- Section Headings ---------- */
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: #0F2D72;
  margin-bottom: 16px;
}

.section-subtitle {
  color: #666;
  font-size: 17px;
  margin-bottom: 48px;
  max-width: 600px;
}

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

.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Icons ---------- */
.icon-circle {
  width: 64px;
  height: 64px;
  background: rgba(43, 196, 164, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #2BC4A4;
}

.icon-circle svg {
  width: 28px;
  height: 28px;
}

.icon-circle-lg {
  width: 80px;
  height: 80px;
  margin: 0 0 24px;
}

.icon-circle-lg svg {
  width: 36px;
  height: 36px;
}

.icon-circle-sm {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
}

.icon-circle-sm svg {
  width: 24px;
  height: 24px;
}

/* ---------- Services Grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

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

.service-card h3 {
  color: #0F2D72;
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.service-card p {
  color: #666;
  margin-bottom: 16px;
  font-size: 15px;
}

.learn-more {
  color: #E8600A;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  transition: color 0.3s ease;
}

.learn-more:hover {
  color: #c45209;
}

/* ---------- Two Column Layouts ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.two-col img {
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  width: 100%;
}

.two-col.reverse .col-image,
.two-col.reverse .col-icon {
  order: 2;
}

.two-col.reverse .col-text {
  order: 1;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  text-align: center;
  padding: 0;
}

.cta-banner-homecoming,
.hero.cta-banner-homecoming {
  background-image: none;
  background-size: cover;
  background-position: center 40%;
  background-color: transparent;
  min-height: 700px;
  overflow: hidden;
  padding: 0;
}

.cta-banner-homecoming .cta-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  z-index: 0;
}

.cta-banner-homecoming .hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 100px 24px;
}

.cta-banner-homecoming::before,
.hero.cta-banner-homecoming::before {
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.careers-hero {
  background-position: center center;
}

.careers-hero::before {
  background: rgba(0, 0, 0, 0.45);
}

.careers-cta h1,
.careers-cta h2,
.careers-cta p,
.careers-cta .btn,
.photo-banner h2,
.photo-banner p {
  color: white;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.95);
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.cta-banner .hero-content {
  padding: 100px 24px;
}

/* ---------- Content Blocks ---------- */
.content-block h2 {
  color: #0F2D72;
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  margin-bottom: 20px;
}

.content-block p {
  color: #555;
  margin-bottom: 16px;
}

.content-block .btn {
  margin-top: 8px;
}

/* ---------- Values List ---------- */
.values-list {
  display: grid;
  gap: 16px;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.value-dot {
  width: 8px;
  height: 8px;
  background: #2BC4A4;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
}

.value-item strong {
  font-family: 'Poppins', sans-serif;
  color: #0F2D72;
  display: block;
  margin-bottom: 4px;
}

.value-item span {
  color: #555;
  font-size: 15px;
}

/* ---------- Service Detail ---------- */
.service-detail {
  padding: 80px 0;
}

.service-detail:nth-child(even) {
  background: #f8fafb;
}

.service-detail h2 {
  color: #0F2D72;
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  margin-bottom: 20px;
}

.service-detail p {
  color: #555;
  margin-bottom: 16px;
}

.service-detail .col-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon-circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: #EEF3FC;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(15, 45, 114, 0.12);
  flex-shrink: 0;
}

.service-icon-circle svg {
  width: 120px;
  height: 120px;
}

/* ---------- Benefits Grid ---------- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

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

.benefit-card h3 {
  color: #0F2D72;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.benefit-card p {
  color: #666;
  font-size: 14px;
}

/* ---------- Photo Banner ---------- */
.photo-banner {
  min-height: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0;
}

.photo-banner-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 24px;
  max-width: 700px;
}

.photo-banner-content h2 {
  position: relative;
  z-index: 1;
  color: #FFFFFF;
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  padding: 0;
  margin-bottom: 16px;
}

.photo-banner-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}

.photo-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.photo-banner-drivers {
  background-position: center 30%;
}

.photo-banner-drivers::before {
  background: rgba(0, 0, 0, 0.50);
}

/* ---------- Requirements ---------- */
.requirements-list li {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  color: #555;
  display: flex;
  align-items: center;
  gap: 12px;
}

.requirements-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  background: rgba(43, 196, 164, 0.15);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232BC4A4' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ---------- Forms ---------- */
.form-card {
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 40px;
}

.form-card h2 {
  color: #0F2D72;
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #0F2D72;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  transition: border-color 0.3s ease;
  background: #FFFFFF;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2BC4A4;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ---------- Contact Info ---------- */
.contact-info-block {
  margin-bottom: 28px;
}

.contact-info-block h3 {
  color: #0F2D72;
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.contact-info-block p,
.contact-info-block a {
  color: #555;
  font-size: 15px;
  line-height: 1.8;
}

.contact-info-block a:hover {
  color: #2BC4A4;
}

.contact-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #0F2D72;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 16px;
  margin-bottom: 4px;
}

/* ---------- CTA Section ---------- */
.cta-section {
  background: #0F2D72;
  text-align: center;
}

.cta-section h2 {
  color: #FFFFFF;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 24px;
}

/* ---------- Map ---------- */
.map-section {
  padding: 0;
}

.map-section iframe {
  width: 100%;
  height: 450px;
  border: 0;
  display: block;
}

/* ---------- Stub Page ---------- */
.stub-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.stub-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin-bottom: 32px;
}

.stub-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #0F2D72;
  color: #FFFFFF;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding: 60px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #2BC4A4;
}

.footer-col p,
.footer-col a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  line-height: 1.8;
}

.footer-col a:hover {
  color: #2BC4A4;
}

.footer-tagline {
  color: #2BC4A4;
  font-style: italic;
  font-size: 13px;
  margin-top: 12px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-social{display:flex;justify-content:center;gap:16px;margin-bottom:12px}.footer-social a{color:#FFFFFF;display:inline-flex;transition:color 0.3s ease}.footer-social a:hover{color:#2BC4A4}.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  padding: 20px 24px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.bg-light {
  background: #f8fafb;
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .services-grid,
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tagline-bar {
    letter-spacing: 3px;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .two-col.reverse .col-image,
  .two-col.reverse .col-icon,
  .two-col.reverse .col-text {
    order: unset;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }

  .hamburger {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #0F2D72;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 32px 32px;
    gap: 20px;
    transition: right 0.3s ease;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
  }

  .nav-toggle:checked ~ .main-nav {
    right: 0;
  }

  .nav-toggle:checked ~ .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }

  .nav-toggle:checked ~ .hamburger span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle:checked ~ .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }

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

  .footer-main {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .hero {
    min-height: 500px;
  }

  .form-card {
    padding: 28px;
  }
}
