:root {
  --primary-color: #16274D;
  --secondary-color: #F26522;
  --bg-white: #FFFFFF;
  --bg-light: #F7F7F5;
  --text-dark: #333333;
  --text-light: #F7F7F5;
  --transition: all 0.3s ease;
  --font-family: 'Inter', system-ui, -apple-system, sans-serif;
  --container-width: 1280px;
}

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

body {
  font-family: var(--font-family);
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.7;
  letter-spacing: -0.01em;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--primary-color);
  line-height: 1.2;
}

.dark-section h1, .dark-section h2, .dark-section h3, .dark-section p {
  color: var(--text-light);
}

.eyebrow {
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 15px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin-bottom: 50px;
}

.dark-section .section-subtitle {
  color: #ccc;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 36px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 8px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--secondary-color), #E65C00);
  color: #fff;
  box-shadow: 0 4px 15px rgba(242, 101, 34, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(242, 101, 34, 0.4);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  backdrop-filter: blur(5px);
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  transform: translateY(-3px);
}

.btn-outline-dark {
  border-color: rgba(22, 39, 77, 0.3);
  color: var(--primary-color);
}

.btn-outline-dark:hover {
  border-color: var(--primary-color);
  background-color: rgba(22, 39, 77, 0.05);
  transform: translateY(-3px);
}

.link-arrow {
  color: var(--secondary-color);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition);
}

.link-arrow:hover {
  gap: 10px;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.4s ease;
}

header.scrolled {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  background-color: rgba(255, 255, 255, 0.95);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1.1;
}

.logo-text span {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1px;
}

.nav-menu {
  display: flex;
  gap: 30px;
}

.nav-link {
  font-weight: 500;
  color: var(--primary-color);
  font-size: 0.95rem;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--secondary-color);
}

.header-right {
  display: flex;
  align-items: center;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--primary-color);
}

/* Hero Section */
.hero {
  padding-top: 140px;
  padding-bottom: 40px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #0d172e 100%);
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at top right, rgba(242,101,34,0.08), transparent 50%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: #fff;
}

.hero-content p {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-btns {
  display: flex;
  gap: 20px;
}

.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: 4px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.hero-image::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  border-top: 4px solid var(--secondary-color);
  border-right: 4px solid var(--secondary-color);
}

/* Trust Stats */
.trust-stats {
  padding: 40px 0 0px;
  position: relative;
  z-index: 10;
  width: 100%;
  margin-top: 60px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.stat-icon {
  font-size: 2rem;
  color: var(--secondary-color);
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: #ccc;
  font-weight: 500;
}

/* Services */
.services {
  padding: 100px 0;
  background-color: var(--bg-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.service-card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.02);
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(22, 39, 77, 0.12);
}

.service-img {
  height: 200px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-card:hover .service-img img {
  transform: scale(1.05);
}

.service-content {
  padding: 30px;
  position: relative;
}

.service-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #fff, #f9f9f9);
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  top: -25px;
  left: 30px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  font-size: 1.2rem;
}

.service-num {
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.service-title {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.service-desc {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 20px;
  min-height: 80px;
}

/* About Section */
.about {
  padding: 120px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text p {
  margin-bottom: 20px;
  color: #555;
  font-size: 1.05rem;
}

.about-image {
  position: relative;
}

.img-main {
  border-radius: 12px;
  box-shadow: 0 30px 60px rgba(22, 39, 77, 0.15);
}

.img-secondary {
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 55%;
  border: 12px solid #fff;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(22, 39, 77, 0.12);
}

.badge {
  position: absolute;
  top: -30px;
  right: -30px;
  background: linear-gradient(135deg, var(--secondary-color), #E65C00);
  color: #fff;
  width: 140px;
  height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-align: center;
  padding: 20px;
  box-shadow: 0 15px 35px rgba(242, 101, 34, 0.35);
  border: 4px solid #fff;
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.badge .badge-val {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.badge .badge-text {
  font-size: 0.8rem;
  font-weight: 500;
}

/* Why Choose Us */
.why-choose {
  padding: 100px 0;
  background-color: var(--bg-light);
  text-align: center;
}

.why-choose .eyebrow {
  justify-content: center;
}

.why-choose .section-title, .why-choose .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.feature-icon {
  width: 80px;
  height: 80px;
  background-color: #fff;
  color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 15px 35px rgba(22, 39, 77, 0.08);
  transition: all 0.4s ease;
}
.feature-item:hover .feature-icon {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 20px 40px rgba(242, 101, 34, 0.15);
  color: #fff;
  background: linear-gradient(135deg, var(--secondary-color), #E65C00);
}

.feature-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
}

/* Fleet */
.fleet {
  padding: 100px 0;
  overflow: hidden;
}

.fleet-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}

.fleet-scroll {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding-bottom: 20px;
  scrollbar-width: none; /* Firefox */
}

.fleet-scroll::-webkit-scrollbar {
  display: none;
}

.fleet-card {
  min-width: 320px;
  flex: 0 0 auto;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: all 0.4s ease;
}
.fleet-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(22, 39, 77, 0.15);
}

.fleet-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: var(--transition);
}

.fleet-card:hover img {
  transform: scale(1.05);
}

.fleet-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(transparent, rgba(17, 24, 32, 0.9));
  padding: 30px 20px 20px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.fleet-cat {
  font-weight: 600;
  font-size: 1.1rem;
}

.fleet-arrow {
  color: var(--secondary-color);
}

/* Clients */
.clients {
  padding: 100px 0;
  background-color: var(--primary-color);
  color: #fff;
  text-align: center;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.client-card {
  background-color: rgba(255, 255, 255, 0.03);
  padding: 35px 20px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

.client-card:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.client-name {
  font-weight: 600;
  font-size: 1rem;
}

/* Final CTA */
.final-cta {
  padding: 120px 0;
  background-color: var(--primary-color);
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.cta-content h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #fff;
}

.cta-content p {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 40px;
}

.cta-btns {
  display: flex;
  gap: 20px;
}

/* Footer */
footer {
  background-color: #0A1326;
  color: #bac4d6;
  padding: 100px 0 30px;
  position: relative;
}
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col h4 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.footer-col p {
  margin-bottom: 15px;
  font-size: 0.95rem;
}

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

.footer-links a {
  transition: var(--transition);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--secondary-color);
}

.contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-icon {
  color: var(--secondary-color);
  font-size: 1.2rem;
  margin-top: 3px;
}

.contact-text {
  font-size: 0.95rem;
}

.contact-text strong {
  color: #fff;
  display: block;
  margin-bottom: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 2.8rem;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cta-bg {
    width: 100%;
    opacity: 0.3;
  }
  .cta-content {
    max-width: 100%;
    text-align: center;
  }
  .cta-btns {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: #fff;
    flex-direction: column;
    align-items: center;
    padding-top: 50px;
    transition: var(--transition);
  }
  .nav-menu.active {
    left: 0;
  }
  .nav-link {
    font-size: 1.2rem;
  }
  .header-right .btn {
    display: none;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content p {
    margin: 0 auto 30px;
  }
  .hero-btns {
    justify-content: center;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .img-secondary {
    display: none;
  }
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
  .fleet-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .hero-btns {
    flex-direction: column;
    width: 100%;
  }
  .hero-btns .btn {
    width: 100%;
  }
  .cta-btns {
    flex-direction: column;
    width: 100%;
  }
  .cta-btns .btn {
    width: 100%;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .clients-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 480px) { .client-name { font-size: 0.85rem; word-break: break-word; text-align: center; } }


/* Internal Page Hero */
.page-hero {
  padding-top: 140px;
  padding-bottom: 80px;
  background-color: var(--primary-color);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  z-index: 1;
}
.page-hero .container {
  position: relative;
  z-index: 2;
}
.page-hero .eyebrow {
  justify-content: center;
}
.page-hero h1 {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 20px;
}

/* Active Nav State */
.nav-link.active {
  color: var(--secondary-color);
  font-weight: 700;
}

/* Form Styles */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 80px 0;
}
.contact-form {
  background: var(--bg-light);
  padding: 40px;
  border-radius: 4px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}
.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: var(--font-family);
  font-size: 1rem;
}
textarea.form-control {
  resize: vertical;
  min-height: 120px;
}
.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.info-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 30px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.info-card-icon {
  font-size: 2rem;
  color: var(--secondary-color);
}
.info-card-content h3 {
  margin-bottom: 10px;
}

/* Fleet Filtering */
.fleet-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 8px 20px;
  border: 1px solid var(--primary-color);
  background: transparent;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--primary-color);
  color: #fff;
}
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}
.fleet-item.hide {
  display: none;
}

/* Detailed Services */
.service-detail-section {
  padding: 80px 0;
}
.service-detail-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 80px;
}
.service-detail-row:nth-child(even) {
  direction: rtl;
}
.service-detail-row:nth-child(even) > * {
  direction: ltr;
}
.service-detail-img img {
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.service-detail-content h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.service-detail-content p {
  margin-bottom: 20px;
  color: #555;
}

@media (max-width: 768px) {
  .contact-grid, .service-detail-row {
    grid-template-columns: 1fr;
  }
  .service-detail-row:nth-child(even) {
    direction: ltr;
  }
}


/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.9);
  backdrop-filter: blur(5px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.show {
  display: block;
  opacity: 1;
}

.lightbox-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80vh;
  border-radius: 8px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
  animation: zoom 0.4s ease;
}

@keyframes zoom {
  from {transform:scale(0.8); opacity: 0;}
  to {transform:scale(1); opacity: 1;}
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus {
  color: var(--secondary-color);
  text-decoration: none;
  cursor: pointer;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.fleet-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.fleet-scroll {
  scroll-behavior: smooth;
  width: 100%;
}
.fleet-scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--bg-white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  font-size: 1.2rem;
}
.fleet-scroll-btn:hover {
  background-color: var(--secondary-color);
  transform: translateY(-50%) scale(1.05);
}
.fleet-scroll-btn.prev-btn {
  left: -24px;
}
.fleet-scroll-btn.next-btn {
  right: -24px;
}
@media (max-width: 768px) {
  .fleet-scroll-btn {
    display: none; /* Hide arrows on mobile where touch scrolling is natural */
  }
}
