/* 1. CSS Variables for brand colors */
:root {
  --primary: #0A2145;
  --accent: #247BA0;
  --light: #f9f9f9;
  --dark: #222;
  --text: #333;
}

/* 2. Reset & Global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: #fff;
}
.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
a {
  color: var(--accent);
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}

/* Top Bar */
.top-bar {
  background: var(--primary);
  color: #fff;
  font-size: .9rem;
}

/* split left/right areas */
.top-bar .wrapper {
  display: flex;
  justify-content: space-between;  /* push .top-left & .top-right apart */
  align-items: center;
  padding: .3rem 1rem;
}

/* left side styling */
.top-left {
  display: flex;
  align-items: center;
  color: #fff;
}
.top-left .loc-icon {
  margin-right: .5rem;
  fill: #fff;       /* ensures SVG picks up white color */
}

/* right side stays the same, but group it */
.top-right a {
  color: #fff;
  margin-left: .8rem;
}
.top-right .divider {
  margin: 0 .5rem;
  color: rgba(255,255,255,.5);
}
.top-right a {
  
  display: inline-flex;
  align-items: center;
 
}

.contact-icon {
  margin-right: .4rem;
  fill: #fff;
}


/* 4. Header & Nav */
header {
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,.1);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}
.logo {
  height: 50px;
}
nav ul {
  list-style: none;
  display: flex;
  align-items: center;
}
nav li {
  position: relative;
}
nav a {
  display: block;
  padding: 0 1rem;
  line-height: 3rem;
  font-weight: 500;
}
nav .has-sub:hover .sub-menu {
  display: block;
}
.sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,.1);
}
.sub-menu li a {
  padding: .5rem 1rem;
  white-space: nowrap;
}

/* 5. Mobile Nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  position: relative;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
}
.nav-toggle span::before {
  top: -8px;
}
.nav-toggle span::after {
  top: 8px;
}
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
  nav ul {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #fff;
  }
  nav ul.open {
    display: flex;
  }
  nav a {
    padding: 1rem;
    line-height: 1.2;
  }
}

/* 6. Modal (Contact Form) */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 2000;
}
.modal-content {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  max-width: 500px;
  width: 100%;
  position: relative;
}
.modal-close {
  position: absolute;
  top: .5rem;
  right: .5rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}
.modal form label {
  display: block;
  margin-bottom: 1rem;
}
.modal form input,
.modal form textarea {
  width: 100%;
  padding: .5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* Contact Form Errors & Success */
.form-errors {
  list-style: none;
  padding: 0;
  margin-bottom: 1rem;
  color: #c00;
}
.form-errors li {
  margin-bottom: .5rem;
}
.form-success {
  color: green;
  font-weight: bold;
  margin-bottom: 1rem;
}
.modal-content h2 {
  margin-bottom: 1rem;
}
.modal-content form button {
  margin-top: .5rem;
}

/* ——— AI Chat Floating Button & Modal ——— */
.ai-chat-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--accent);
  color: #fff;
  font-size: 1rem;
  padding: 12px 16px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,.3);
  z-index: 2000;
}
.ai-chat-modal {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 320px;
  height: 400px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,.3);
  display: none;
  flex-direction: column;
  z-index: 2000;
}
.ai-chat-content {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.ai-chat-close {
  position: absolute;
  top: 8px;
  right: 12px;
  background: none;
  border: none;
  font-size: 1.2rem;
  color: #fff;
  cursor: pointer;
  z-index: 10;
}
.ai-chat-header {
  background: var(--primary);
  color: #fff;
  padding: 10px;
  text-align: center;
}
.ai-chat-messages {
  flex: 1;
  padding: 10px;
  overflow-y: auto;
  font-size: 0.9rem;
}
.ai-chat-form {
  display: flex;
  border-top: 1px solid #eee;
  flex: none;
}
.ai-chat-form input {
  flex: 1;
  border: none;
  padding: 8px;
  font-size: 0.9rem;
}
.ai-chat-form button {
  background: var(--accent);
  border: none;
  padding: 0 16px;
  color: #fff;
  cursor: pointer;
}
@keyframes blink-placeholder {
  0%, 100% { opacity: 0; }
  50%      { opacity: 1; }
}
.ai-chat-form input::placeholder {
  color: #888;
  animation: blink-placeholder 1.5s ease-in-out infinite;
}

/* Chat bubbles */
.msg {
  margin: .5rem 0;
  padding: .6rem .8rem;
  border-radius: 8px;
  max-width: 80%;
  word-wrap: break-word;
}
.msg.user {
  background: var(--accent);
  color: #fff;
  margin-left: auto;
  text-align: right;
}
.msg.bot {
  background: var(--light);
  color: var(--dark);
  margin-right: auto;
  text-align: left;
}

/* ——— Hero Section ——— */
.hero {
  position: relative;
  background: url('/images/hero-placeholder-1.jpg') center/cover no-repeat;
  height: 60vh;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}
.hero-overlay {
  position: relative;
  text-align: center;
  z-index: 1;
  max-width: 90%;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: .5rem;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}
.hero-btn {
  background: var(--accent);
  color: #fff;
  padding: .8rem 1.6rem;
  border-radius: 4px;
  font-size: 1rem;
  text-decoration: none;
}
.hero-btn:hover {
  opacity: .9;
}

/* ——— About Preview ——— */
.about {
  padding: 4rem 0;
}
.about-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}
.about-text {
  flex: 1 1 300px;
}
.about-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.about-text p {
  margin-bottom: 1rem;
}
.about-image {
  flex: 1 1 300px;
}

/* ——— Services Grid ——— */
.services {
  background: var(--light);
  padding: 4rem 0;
}
.services h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}
/* Services Grid: 3-up on desktop, 2-up on tablet, 1-up on mobile */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);  /* ← three columns */
  gap: 2rem;
}

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

/* Mobile: one column */
@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.services-card {
  background: #fff;
  padding: 1.5rem;
  box-shadow: 0 2px 5px rgba(0,0,0,.1);
  border-radius: 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.services-card img {
  max-width: 80px;
  margin: 0 auto 1rem;
}
.services-card h3 {
  margin: .5rem 0;
}
.services-card p {
  flex-grow: 1;
  margin-bottom: 1rem;
}
.services-card .btn {
  align-self: center;
}

/* 7. Footer */
footer {
  background: var(--primary);
  color: #fff;
  padding: 2rem 0;
}
.footer-inner {
  text-align: center;
}
.footer-inner p {
  margin: 0;
}

/* ——— Mobile Chat Override ——— */
@media (max-width: 480px) {
  .ai-chat-modal {
    position: fixed;
    bottom: 20px;
    top: auto;
    right: 10px;
    width: calc(100vw - 20px);
    height: 60vh;
    max-height: 400px;
    border-radius: 8px;
    display: none;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0,0,0,.3);
  }
}
/* ——— Why Aspire ——— */
.why-aspire {
  background: var(--light);
  padding: 4rem 0;
}
.why-aspire h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.why-item {
  text-align: center;
}

/* Font Awesome icon styling */
.why-item i {
  color: var(--accent);
  font-size: 2.5rem;    /* scales the icon */
  margin-bottom: 1rem;  /* space before the heading */
}

.why-icon {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--accent);
}

.value-icon {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--accent);
}

/* Headings & text */
.why-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.why-item p {
  margin: 0;
  color: var(--text);
}


/* ——— Certifications ——— */
.certifications {
  background: #fff;
  padding: 4rem 0;
}
.certifications h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}
.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  align-items: center;
}
.cert-grid img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border: 1px solid #ddd;
  padding: 1rem;
  background: #fafafa;
  border-radius: 4px;
}
/* ——— Final Call-to-Action ——— */
.cta {
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 4rem 0;
}
.cta h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.cta p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta .btn {
  background: var(--accent);
  color: #fff;
  padding: 0.8rem 1.6rem;
  border-radius: 4px;
  font-size: 1rem;
  text-decoration: none;
}
.cta .btn:hover {
  opacity: 0.9;
}

/* Banner */
.about-banner {
  background: url('/images/hero-placeholder.jpg') center/cover no-repeat;
  padding: 3rem 0;
  color: #fff;
}
.about-banner h2 {
  text-align: center;
  font-size: 2.5rem;
}

/* Our Story */
.about-intro {
  padding: 4rem 0;
}
.about-intro h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.about-intro p {
  margin-bottom: 1rem;
}

/* Timeline */
.timeline {
  background: var(--light);
  padding: 4rem 0;
}
.timeline h3 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}
.timeline-list {
  list-style: none;
  padding: 0;
}
.timeline-list li {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.timeline-date {
  flex: 0 0 80px;
  font-weight: bold;
}
.timeline-content {
  flex: 1;
  padding-left: 1rem;
}
.timeline-content h4 {
  margin-bottom: .5rem;
}
.timeline-content p {
  margin: 0;
}

/* Mission & Vision */
.mission-vision {
  padding: 4rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 2rem;
  background: #fff;
}
.mv-item h3 {
  font-size: 1.75rem;
  margin-bottom: .5rem;
}
.mv-item p {
  margin: 0;
  line-height: 1.5;
}

/* Team */
.team-section {
  padding: 4rem 0;
}
.team-section h3 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 2rem;
  text-align: center;
}
.team-member img {
  border-radius: 50%;
  margin-bottom: 1rem;
}
.team-member h4 {
  margin-bottom: .5rem;
}
.team-member p {
  margin: 0;
  color: var(--text);
}

/* Core Values */
.core-values {
  background: var(--light);
  padding: 4rem 0;
}
.core-values h3 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 2rem;
  text-align: center;
}
.value-item i {
  color: var(--accent);
  margin-bottom: .5rem;
}
.value-item h4 {
  margin-bottom: .5rem;
  font-size: 1.25rem;
}
.value-item p {
  margin: 0;
}
/* Projects Page Banner */
.projects-banner {
  background: url('/images/hero-placeholder.jpg') center/cover no-repeat;
  padding: 3rem 0;
  color: #fff;
}
.projects-banner h2 {
  text-align: center;
  font-size: 2.5rem;
}

/* Projects Intro */
.projects-intro {
  padding: 3rem 0;
}
.projects-intro h3 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1rem;
}
.projects-intro p {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: var(--text);
}

/* Projects Grid */
.projects-page-grid {
  padding: 4rem 0;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
  gap: 2rem;
}
.project-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
}
.project-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.project-card h4 {
  margin: 1rem;
  font-size: 1.25rem;
}
.project-category {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 0.75rem;
  margin: 0 1rem 0.5rem;
}
.project-card p {
  flex: 1;
  margin: 0 1rem 1rem;
  color: var(--text);
}
.project-card .read-more {
  display: block;
  margin: 0 1rem 1rem;
  color: var(--accent);
  font-weight: bold;
  text-decoration: none;
}
.project-card .read-more:hover {
  text-decoration: underline;
}

/* Services Banner */
.services-banner {
  background: url('/images/hero-placeholder.jpg') center/cover no-repeat;
  padding: 3rem 0;
  color: #fff;
}
.services-banner h2 {
  text-align: center;
  font-size: 2.5rem;
}

/* Optional intro above grid */
.services-intro {
  background: var(--light);
  padding: 2rem 0;
}
.services-intro p {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: var(--text);
}

/* Ensure services section retains its styling */
.services {
  padding: 4rem 0;
}

/* Service Page Banner */
.service-banner {
  background: url('/images/hero-placeholder.jpg') center/cover no-repeat;
  padding: 2.5rem 0;
  color: #fff;
}
.service-banner h2 {
  text-align: center;
  font-size: 2.25rem;
}

/* Service Description */
.service-content {
  padding: 4rem 0;
}
.service-content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.service-content p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* Case Studies */
.case-studies {
  background: var(--light);
  padding: 4rem 0;
}
.case-studies h3 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}
.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 1.5rem;
}
.case-item {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  text-align: center;
  padding-bottom: 1rem;
}
.case-item img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.case-item p {
  margin: 1rem;
  font-size: 0.9rem;
  color: var(--text);
}

/* Reuse existing .cta styles for Request a Quote */

/* ---- Civil Works Banner ---- */
.civil-banner {
  background: url('/images/hero-placeholder.jpg') center/cover no-repeat;
}
.service-banner {
  padding: 2.5rem 0;
  color: #fff;
}
.service-banner h2 {
  text-align: center;
  font-size: 2.25rem;
}

/* ---- Service Description ---- */
.service-content {
  padding: 4rem 0;
}
.service-content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.service-content p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* ---- Our Capabilities ---- */
.capabilities {
  background: var(--light);
  padding: 4rem 0;
}
.capabilities h3 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}
.cap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 2rem;
}
.cap-item {
  background: #fff;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.cap-item i {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
}
.cap-item h4 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}
.cap-item p {
  margin: 0;
  color: var(--text);
  font-size: 0.9rem;
}

/* ---- Our Approach ---- */
.approach {
  padding: 4rem 0;
  background: #fff;
}
.approach h3 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}
.approach-list {
  max-width: 700px;
  margin: 0 auto;
  padding-left: 1.2rem;
  color: var(--text);
}
.approach-list li {
  margin-bottom: 1rem;
  line-height: 1.5;
}

/* Reuse existing .cta styles for the quote section */

/* ---- Building & Housing Banner ---- */
.building-banner {
  background: url('/images/hero-placeholder.jpg') center/cover no-repeat;
}
.service-banner {
  padding: 2.5rem 0;
  color: #fff;
}
.service-banner h2 {
  text-align: center;
  font-size: 2.25rem;
}

/* ---- Service Description ---- */
.service-content {
  padding: 4rem 0;
}
.service-content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.service-content p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* ---- Our Capabilities ---- */
.capabilities {
  background: var(--light);
  padding: 4rem 0;
}
.capabilities h3 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}
.cap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 2rem;
}
.cap-item {
  background: #fff;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.cap-item i {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
}
.cap-item h4 {
  margin-bottom: .5rem;
  font-size: 1.1rem;
}
.cap-item p {
  margin: 0;
  font-size: .9rem;
  color: var(--text);
}

/* ---- Our Approach ---- */
.approach {
  padding: 4rem 0;
  background: #fff;
}
.approach h3 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}
.approach-list {
  max-width: 700px;
  margin: 0 auto;
  padding-left: 1.2rem;
  color: var(--text);
}
.approach-list li {
  margin-bottom: 1rem;
  line-height: 1.5;
}

/* ---- Reuse existing CTA styles ---- */
/* ---- Roads & Earthworks Banner ---- */
.roads-banner {
  background: url('/images/hero-placeholder.jpg') center/cover no-repeat;
}
.service-banner {
  padding: 2.5rem 0;
  color: #fff;
}
.service-banner h2 {
  text-align: center;
  font-size: 2.25rem;
}

/* ---- Service Description ---- */
.service-content {
  padding: 4rem 0;
}
.service-content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.service-content p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* Reuse Capabilities & Approach from other service pages */
/* They live in the same .capabilities, .cap-item, .approach, etc. rules you already added */

/* Ensure the roads icons are sized */
.cap-item i {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

/* Reuse existing .cta styles */
/* ---- Electrical & Telecom Banner ---- */
.electrical-banner {
  background: url('/images/hero-placeholder.jpg') center/cover no-repeat;
}

/* .service-banner already sets padding & text styling */

/* ---- Service Description ---- */
/* .service-content rules already apply */

/* ---- Our Capabilities & Approach ---- */
/* Reuse .capabilities, .cap-item, .approach, and .approach-list rules you already added */

/* If you need to adjust icon sizing specifically for this page: */
.electrical-banner + .service-content + .capabilities .cap-item i {
  font-size: 2.5rem;
  color: var(--accent);
}

/* CTA: reuse existing .cta styles */
/* ---- Logistics Services Banner ---- */
.logistics-banner {
  background: url('/images/hero-placeholder-1.jpg') center/cover no-repeat;
}

/* .service-banner provides padding & text color */

/* ---- Service Description ---- */
/* .service-content rules already apply */

/* ---- Our Capabilities & Approach ---- */
/* Reuse .capabilities, .cap-item, .approach, and .approach-list rules you already added */

/* Ensure icons are styled */
.cap-item i {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

/* ---- CTA ---- */
/* Reuse existing .cta styles */
/* ---- Freight Banner ---- */
.freight-banner {
  background: url('/images/hero-placeholder.jpg') center/cover no-repeat;
}

/* service-banner already handles padding & text color */

/* ---- Capabilities, Approach reuse ---- */
/* .capabilities, .cap-item, .approach-list already defined */

/* Why Choose Us */
.why-choose {
  background: var(--light);
  padding: 4rem 0;
}
.why-choose h3 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}
.why-list {
  list-style: none;
  max-width: 600px;
  margin: 0 auto;
  padding: 0;
}
.why-list li {
  margin-bottom: 1rem;
  font-size: 1rem;
}
.why-list li i {
  color: var(--accent);
  margin-right: .5rem;
}

/* Fleet Showcase */
.fleet-showcase {
  padding: 4rem 0;
}
.fleet-showcase h3 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px,1fr));
  gap: 2rem;
  text-align: center;
}
.fleet-item i {
  color: var(--accent);
  margin-bottom: 1rem;
}
.fleet-item p {
  margin: 0;
  font-size: 1rem;
  color: var(--text);
}

/* Reuse .cta styles */
/* ---- Contact Banner ---- */
.contact-banner {
  background: url('/images/hero-placeholder.jpg') center/cover no-repeat;
  padding: 3rem 0;
  color: #fff;
}
.contact-banner h2 {
  text-align: center;
  font-size: 2.5rem;
}

/* ---- Contact Details ---- */
.contact-details {
  background: var(--light);
  padding: 3rem 0;
}
.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 2rem;
  text-align: center;
}
.detail-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.detail-item p {
  margin: 0;
}
.detail-item a {
  color: var(--accent);
  text-decoration: none;
}
.detail-item a:hover {
  text-decoration: underline;
}

/* ---- Contact Form ---- */
.contact-page-form {
  padding: 4rem 0;
}
.contact-page-form h3 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}
#contact-form {
  max-width: 700px;
  margin: 0 auto;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.form-group label {
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.form-group input,
.form-group textarea {
  padding: 0.6rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
}
#contact-form button {
  display: block;
  margin: 1rem auto 0;
  background: var(--accent);
  color: #fff;
  padding: 0.8rem 1.6rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
}
#contact-form button:hover {
  opacity: 0.9;
}

/* Mobile tweaks */
@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ---- Map Embed ---- */
.map-embed {
  padding-bottom: 4rem;
}
.map-embed iframe {
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* ---- Footer Overlay Z-index Fix ---- */
footer {
  position: relative;
  z-index: 1;
}
/* ---- Privacy Banner ---- */
.privacy-banner {
  background: url('/images/hero-placeholder.jpg') center/cover no-repeat;
  padding: 3rem 0;
  color: #fff;
}
.privacy-banner h2 {
  text-align: center;
  font-size: 2.5rem;
}

/* ---- Privacy Content ---- */
.privacy-content {
  padding: 4rem 0;
  background: #fff;
}
.privacy-content h3 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}
.privacy-content p,
.privacy-content ul {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: var(--text);
}
.privacy-content ul {
  list-style: disc inside;
}
.privacy-content ul li {
  margin-bottom: 0.5rem;
}
.privacy-content a {
  color: var(--accent);
  text-decoration: none;
}
.privacy-content a:hover {
  text-decoration: underline;
}

.about-services-cta {
  background: var(--light);
  padding: 3rem 0;
  text-align: center;
}
.about-services-cta h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}
.about-services-cta p {
  margin-bottom: 1.5rem;
  color: var(--text);
}
.about-services-cta .btn {
  background: var(--accent);
  color: #fff;
  padding: 0.8rem 1.6rem;
  border-radius: 4px;
  font-size: 1rem;
  text-decoration: none;
}
.about .btn {
  background: var(--accent);
  color: #fff;
  padding: 0.8rem 1.6rem;
  border-radius: 4px;
  font-size: 1rem;
  text-decoration: none;
}
/* Logo + Text in Navbar */
.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

/* Icon stays the same */
.logo-icon {
  height: 50px;
  width: auto;
  margin-right: 0.75rem;
}

/* Center both lines of text */
.logo-text {
  display: flex;
  flex-direction: column;
  /* center-align children */
  text-align: center;
}

/* Name styling (will now be centered) */
.logo-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
}

/* Tagline styling (also centered) */
.logo-tagline {
  font-size: 0.75rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-top: 0;    /* tighten up the space if needed */
}

.mission-vision {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 4rem 0;
}
.mission-vision .mv-item {
  flex: 1;
  text-align: center;
}
.mv-icon {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--accent);
}

/* ——— Footer Grid Layout ——— */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}
.footer-col h4 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.footer-col p,
.footer-col li {
  margin-bottom: .5rem;
  color: #fff;
  line-height: 1.4;
}
.footer-col ul {
  list-style: none;
  padding: 0;
}
.footer-col a {
  color: #fff;
  text-decoration: none;
}
.footer-col a:hover {
  text-decoration: underline;
}

/* Footer bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 1rem;
  text-align: center;
  font-size: .9rem;
  color: rgba(255,255,255,0.7);
}

/* Ensure footer background */
footer {
  background: var(--primary);
}
/* ─── Mobile Adjustments ─────────────────────────────────────────────────── */
@media (max-width: 480px) {
  /* 1) Shrink top-right text so phone doesn’t wrap */

 

  /* 2) Ensure header padding on mobile so nav-toggle isn’t flush to edge */
  header .wrapper {
    padding: 0 1rem;          /* reinforce horizontal gutter */
  }
  .nav-toggle {
    margin: 0 0.5rem;         /* give nav-toggle its own breathing room */
  }
}
/* ─── FOOTER: Add side‐gutters on mobile ───────────────────────────────────────── */
@media (max-width: 768px) {
  /* Reinforce the wrapper padding, just in case */
  footer .wrapper.footer-grid {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  /* If your columns themselves are still touching, pad them too */
  footer .footer-col {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}
/* ——— Banner ——— */
.banner.service-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 4rem 0;
  color: #fff;
}
.banner.service-banner .wrapper {
  position: relative;
  z-index: 1;
  text-align: center;
}
.banner.service-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,33,69, 0.5);
  z-index: 0;
}
.banner.service-banner h2 {
  font-size: 2.5rem;
  margin: 0;
  line-height: 1.2;
}

/* ——— Service Content ——— */
.service-content {
  padding: 3rem 0;
}
.service-content h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.service-content ul {
  list-style: disc inside;
  margin: 1rem 0 2rem;
  padding-left: 1rem;
}
.service-content p {
  max-width: 800px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

/* ——— Capabilities Grid ——— */
.capabilities {
  background: var(--light);
  padding: 3rem 0;
}
.capabilities h3 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 2rem;
}
.cap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.cap-item {
  background: #fff;
  border: 1px solid #e0e0e0;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
}
.cap-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
}
.cap-item i {
  color: var(--accent);
  margin-bottom: .75rem;
}

/* ——— Approach List ——— */
.approach {
  padding: 3rem 0;
}
.approach h3 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 2rem;
}
.approach-list {
  max-width: 800px;
  margin: 0 auto;
  padding-left: 1rem;
  counter-reset: step;
}
.approach-list li {
  margin-bottom: 1.25rem;
  line-height: 1.6;
  position: relative;
  padding-left: 2.5rem;
}
.approach-list li::before {
  counter-increment: step;
  content: counter(step) ".";
  position: absolute;
  left: 0; top: 0;
  font-weight: bold;
  color: var(--accent);
}

/* ——— Why Choose Us ——— */
.why-aspire {
  background: var(--light);
  padding: 3rem 0;
}
.why-aspire h3 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 2rem;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.why-item {
  text-align: center;
}
.why-item i {
  color: var(--accent);
  margin-bottom: .5rem;
}
.why-item h4 {
  margin: .5rem 0;
  font-size: 1.1rem;
}

/* ——— Safety & Compliance ——— */
.safety-compliance {
  padding: 3rem 0;
}
.safety-compliance h3 {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 1rem;
}
.safety-compliance p {
  max-width: 700px;
  margin: 0 auto 1rem;
  line-height: 1.6;
  text-align: center;
}
.safety-list {
  max-width: 600px;
  margin: 0 auto 1.5rem;
  list-style: disc inside;
}
.safety-list li {
  margin-bottom: .75rem;
}

/* ——— CTA ——— */
.cta {
  background: var(--primary);
  color: #fff;
  padding: 3rem 0;
  text-align: center;
}
.cta h2 {
  font-size: 2rem;
  margin-bottom: .75rem;
}
.cta p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.5;
}
.cta .btn {
  background: var(--accent);
  color: #fff;
  padding: .75rem 1.5rem;
  border-radius: 4px;
  font-size: 1rem;
  text-decoration: none;
  transition: background .2s;
}
.cta .btn:hover {
  background: darken(var(--accent), 10%);
}

/* ——— Responsive ——— */
@media (max-width: 600px) {
  .banner.service-banner {
    padding: 2.5rem 0;
  }
  .banner.service-banner h2 {
    font-size: 1.75rem;
  }
  .cap-item, .why-item {
    padding: 1rem;
  }
  .approach-list, .safety-list {
    padding-left: 1.5rem;
  }
}
/* ——— Two-column for Fuel Overview ——— */
.service-overview {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 3rem 0;
}

.service-text {
  flex: 1 1 300px;
}

.service-text h3 {
  margin-bottom: 1rem;
}

.service-text ul {
  margin-bottom: 0;
}

.service-image {
  flex: 1 1 300px;
  text-align: center;
}

.service-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Stack on tablets & below */
@media (max-width: 768px) {
  .service-overview {
    flex-direction: column;
  }
}
