:root {
  --primary-color: #D48C4B; 
  --primary-hover: #9B551F; 
  --secondary-color: #0D1B2A; 
  --dark-color: #0D1B2A;
  --light-color: #F8F9FA;
  --text-color: #111827;
}

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

html, body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

/* --- Floating Smooth White Metallic Navigation Panel --- */
.main-nav {
  position: fixed;
  top: 0; 
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 100%;
  margin: 0;
  border-radius: 0;
  background: linear-gradient(135deg, #ffffff 0%, #f4f5f7 40%, #eef0f3 50%, #ffffff 55%, #e2e5e9 100%);
  border: none;
  border-bottom: 1px solid #c9ced4;
  box-shadow: none;
  padding: 14px 24px;
  z-index: 1050;
  transition: 
    width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
    max-width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
    top 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
    border-radius 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
    box-shadow 0.4s ease,
    background 0.4s ease;
}

.main-nav.scrolled {
  top: 20px; 
  width: 95%;
  max-width: 1400px;
  margin: 0 auto; 
  border-radius: 22px;
  border: 1px solid #c9ced4;
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 1),
    inset 0 -1px 2px rgba(0, 0, 0, 0.05),
    0 15px 35px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.main-nav::before {
  display: none !important;
}

/* Navbar Rivets */
.nav-rivet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ffffff, #8d8d8d);
  position: absolute;
  box-shadow: 1px 1px 2px rgba(0,0,0,0.15), inset -1px -1px 2px rgba(0,0,0,0.1);
  z-index: 1;
  opacity: 0; 
  transition: opacity 0.4s ease;
}

.main-nav.scrolled .nav-rivet {
  opacity: 1;
}

.rivet-tl { top: 12px; left: 16px; }
.rivet-tr { top: 12px; right: 16px; }
.rivet-bl { bottom: 12px; left: 16px; }
.rivet-br { bottom: 12px; right: 16px; }

.main-nav .container {
  position: relative;
  z-index: 2;
}

/* Brand Layout */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 16px; 
  text-decoration: none !important;
}

.logo-wrapper {
  width: 70px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.navbar-brand img {
  height: 50px; 
  width: auto;
  object-fit: contain;
  margin-left: -10px; 
}

.brand-main {
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1;
  color: var(--secondary-color);
  letter-spacing: -0.5px;
  margin-left: -5px; 
}

.brand-sub {
  font-size: 0.75rem;
  color: #64748b; 
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 3px;
  font-weight: 700;
}

/* Navigation Links */
.navbar-nav {
  margin-left: 120px; 
  gap: 15px; 
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}

.nav-link {
  font-weight: 600;
  color: var(--secondary-color) !important;
  padding: 10px 15px !important;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 15px;
  bottom: 5px;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: 0.3s ease;
  border-radius: 10px; 
}

.nav-link:hover::after,
.nav-link.active::after {
  width: calc(100% - 30px);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color) !important;
}

.nav-actions {
  padding-left: 25px;
  margin-left: 25px;
  border-left: 1px solid rgba(0, 0, 0, 0.07);
}

/* Primary Metallic SHINY Copper Button CTA */
.btn-nav-cta {
  height: 56px !important; 
  background: linear-gradient(180deg, #EAA674 0%, #C17B3A 45%, #9B551F 100%); 
  border: 1px solid #9B551F;
  color: #FFFFFF !important;
  padding: 0 28px !important;
  border-radius: 14px; 
  font-weight: 700;
  font-size: 15px;
  margin-left: 15px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex !important;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  white-space: nowrap !important;
  box-shadow:
    inset 0 2px 1px rgba(255, 255, 255, 0.45), 
    inset 0 -2px 2px rgba(0, 0, 0, 0.25), 
    0 6px 12px rgba(193, 123, 58, 0.35); 
}

.btn-nav-cta:hover { 
  transform: translateY(-2px);
  background: linear-gradient(180deg, #F3BA8F 0%, #D48C4B 45%, #AA622A 100%); 
  box-shadow:
    inset 0 2px 1px rgba(255, 255, 255, 0.55),
    inset 0 -2px 2px rgba(0, 0, 0, 0.2),
    0 8px 16px rgba(193, 123, 58, 0.5);
  text-decoration: none;
}

/* Secondary Metallic Steel Accent Button CTA */
.btn-nav-outline {
  height: 56px !important; 
  background: linear-gradient(180deg, #96A6BA, #7D8EA3);
  border: 1px solid #7D8EA3;
  color: #FFFFFF !important;
  padding: 0 28px !important;
  border-radius: 14px; 
  font-weight: 700;
  font-size: 15px;
  margin-left: 10px;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-flex !important;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  white-space: nowrap !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-nav-outline:hover {
  transform: translateY(-1px);
  filter: brightness(1.15);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 4px 10px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

/* --- Hero Section --- */
.hero-section {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 120px 0 100px; 
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(13, 27, 42, 0.90) 0%,
    rgba(13, 27, 42, 0.65) 50%,
    rgba(13, 27, 42, 0.25) 100%
  );
  z-index: 2;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 4rem); 
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 15px;
}

/* Premium Dynamic Glass Content Backdrop Card */
.hero-content {
  position: relative;
  z-index: 3;
  color: white;
  background: rgba(13, 27, 42, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 40px;
  border-radius: 16px;
  display: inline-block; 
}

.hero-tag {
  display: inline-block;
  background: rgba(13, 27, 42, 0.9); 
  color: #FFFFFF;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.trust-badge-item i {
  color: #D48C4B; 
  margin-right: 8px;
  font-size: 1.1rem;
}

.hero-subtitle {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 35px;
  color: #e2e8f0;
  letter-spacing: 0.5px;
}

.btn-hero {
  padding: 15px 35px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 4px;
  margin-right: 15px;
  margin-bottom: 15px;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
}

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

.btn-primary-hero:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  color: white;
}

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

.btn-outline-hero:hover {
  background: white;
  color: var(--dark-color);
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 25px;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 500;
  color: #fff;
}

/* --- Specialization Strip --- */
.specialization-strip {
  background: var(--dark-color);
  color: white;
  padding: 15px 0;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 1px;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.specialization-strip .spec-title {
  color: var(--primary-color);
  margin-right: 10px;
}

.specialization-strip .spec-brand {
  margin: 0 10px;
  color: #cbd5e1;
}

/* --- Quick Features Section --- */
.stats-section {
  background: var(--light-color);
  padding: 50px 0;
  border-bottom: 1px solid #e2e8f0;
}

.stat-box {
  text-align: center;
  padding: 20px;
}

.stat-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- Services Section --- */
.services-section { padding: 80px 0; background: white; }

.section-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--dark-color);
  margin-bottom: 40px;
  text-align: center;
}

.service-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
  height: 100%;
  overflow: hidden; 
}

.service-card:hover {
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transform: translateY(-5px);
  border-color: var(--primary-color);
}

.img-wrapper {
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}

.service-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.service-content {
  padding: 25px 20px;
  text-align: center;
}

.service-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-content p {
  color: #64748b;
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* --- Why Choose Us Section --- */
.why-choose-section {
  padding: 80px 0;
  background: var(--light-color);
}

.why-image {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.checklist {
  list-style: none;
  padding: 0;
}

.checklist li {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  color: var(--secondary-color);
}

.checklist li i {
  color: var(--primary-color);
  font-size: 1.3rem;
  margin-right: 15px;
}

/* --- Gallery Layout --- */
.gallery-section { padding: 80px 0; }

.gallery-wrapper {
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.gallery-img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
  aspect-ratio: 4 / 3;
}

.gallery-wrapper:hover .gallery-img {
  transform: scale(1.03);
}

.img-large { height: 400px; }
.img-small { height: 188px; }

/* --- Fleet Maintenance Section --- */
.fleet-section {
  background: var(--secondary-color);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.fleet-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.fleet-section p {
  font-size: 1.2rem;
  color: #cbd5e1;
  max-width: 700px;
  margin: 0 auto 20px;
}

.fleet-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.fleet-badge {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
}

/* --- Rusted Iron Maintenance Hatch CTA --- */
.emergency-cta {
  background: var(--primary-color); 
  padding: 80px 0;
  position: relative;
  box-shadow: 0 10px 30px rgba(212, 140, 75, 0.4);
}

.emergency-cta-inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 40px;
  border-radius: 12px;
  
  background: 
    url('images/rusted-iron-bg.jpg') center/cover no-repeat,
    radial-gradient(circle at 20% 30%, rgba(212, 140, 75, 0.15), transparent 25%),
    radial-gradient(circle at 80% 70%, rgba(212, 140, 75, 0.12), transparent 25%),
    linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 30%, #4a3b32 50%, #2a2a2a 70%, #1a1a1a 100%);
  
  border: 2px solid #040525; 
  
  box-shadow: 
    inset 0 2px 1px rgba(255, 255, 255, 1), 
    inset 0 -8px 8px rgba(0, 0, 0, 0.8), 
    inset 0 8px 8px rgba(255, 255, 255, 0.5),
    0 10px 20px rgba(0, 0, 0, 0.4), 
    0 20px 40px rgba(0, 0, 0, 0.3);
}

.emergency-cta-inner h2, .emergency-cta-inner p {
  position: relative;
  z-index: 2;
  color: #FFFFFF;
  text-shadow: 2px 3px 5px rgba(0,0,0,0.9), -1px -1px 0 rgba(255,255,255,0.1); 
}

.emergency-cta-inner h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.emergency-cta-inner p {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 30px;
}

.emergency-cta-inner .rivet {
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 25%, #f4f4f4 0%, #888888 40%, #222222 100%);
  box-shadow:
    inset -2px -2px 3px rgba(0,0,0,0.8), 
    inset 1px 1px 2px rgba(255,255,255,0.9), 
    2px 3px 5px rgba(0,0,0,0.7); 
  z-index: 2;
}

.emergency-cta-inner .rivet-tl { top: 20px; left: 20px; }
.emergency-cta-inner .rivet-tr { top: 20px; right: 20px; }
.emergency-cta-inner .rivet-bl { bottom: 20px; left: 20px; }
.emergency-cta-inner .rivet-br { bottom: 20px; right: 20px; }

/* Call Button inside Hatch */
.call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #F5B98A 0%, #C17B3A 40%, #8E4A15 100%);
  color: #ffffff !important;
  font-size: 1.8rem;
  font-weight: 800;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  position: relative;
  z-index: 2;
  border: 1px solid #5a2e0a;
  box-shadow: 
    inset 0 2px 1px rgba(255, 255, 255, 0.6), 
    inset 0 -2px 3px rgba(0, 0, 0, 0.5), 
    0 8px 15px rgba(0,0,0,0.4); 
  transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.call-btn i {
  font-size: 1.5rem;
  margin-right: 15px;
}

.call-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, #FAD0B0 0%, #D48C4B 40%, #A65A1E 100%);
  box-shadow: 
    inset 0 2px 1px rgba(255, 255, 255, 0.8),
    inset 0 -2px 3px rgba(0, 0, 0, 0.4),
    0 12px 20px rgba(0,0,0,0.5);
  text-decoration: none;
}

/* Fallback for legacy giant buttons */
.btn-giant {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 20px 45px;
    background: linear-gradient(#d79a5c, #b86e2d);
    color: #fff !important;
    font-size: 1.4rem;
    font-weight: 700;
    border-radius: 60px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,.25);
    transition: transform 0.2s ease;
}

.btn-giant:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

/* --- Footer --- */
.footer {
  background: var(--dark-color);
  color: #cbd5e1;
  padding: 60px 0 30px;
}

.footer h4 {
  color: white;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 12px; }

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.9rem;
}

/* --- Responsive Overrides --- */
@media (min-width: 992px) {
  .main-nav .container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }
  
  .navbar-collapse { display: contents; }
  
  .navbar-nav {
    display: flex;
    flex-direction: row;
    margin-left: 40px; 
    justify-self: start; 
    gap: 15px; 
  }
  
  .nav-actions {
    justify-self: end; 
    display: flex;
    align-items: center;
    padding-left: 25px;
    margin-left: 0;
    border-left: 1px solid rgba(0, 0, 0, 0.07);
  }
}

@media (max-width: 991px) {
  .brand-text { display: none; }
  .logo-wrapper { width: 120px; height: 70px; }
  .navbar-brand { min-width: auto; margin-right: auto; }
  
  .navbar-collapse { 
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    margin-top: 15px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,1), 0 10px 30px rgba(0,0,0,0.15);
    border: 1px solid #d1d5db;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
  }
  
  .navbar-nav {
    flex-direction: column;
    width: 100%;
    margin-left: 0;
    text-align: center;
    gap: 0;
  }
  
  .navbar-nav .nav-item {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .hero-section { min-height: auto; padding: 140px 0 60px; text-align: center; } 
  .trust-badges { justify-content: center; }
  .btn-hero { width: 100%; margin-right: 0; }
  .stat-box { margin-bottom: 20px; }
  
  .main-nav { 
    width: 100%;
    margin: 0;
    border-radius: 0;
    left: 0;
    transform: none;
    border-left: none;
    border-right: none;
    top: 0; 
  }
  .main-nav::before { border-radius: 0; }
  
  .nav-actions {
    flex-direction: column;
    width: 100%;
    margin-top: 15px;
    padding-left: 0;
    margin-left: 0;
    border-left: none;
  }
  
  .btn-nav-cta, .btn-nav-outline { 
    margin: 10px 0; 
    display: flex !important; 
    text-align: center; 
    width: 100%; 
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal !important;
    padding: 12px 20px !important;
    font-size: 1rem;
    height: auto !important;
    min-height: 56px;
  }

  .why-image { margin-bottom: 30px; min-height: 250px; }
  .specialization-strip .spec-brand { display: inline-block; margin: 5px; }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  .hero-content {
    padding: 24px;
    width: 100%;
    box-sizing: border-box;
  }

  .emergency-cta-inner {
    padding: 35px 20px;
    width: 100%;
    box-sizing: border-box;
  }
  .emergency-cta-inner h2 {
    font-size: 1.8rem;
  }
  .call-btn {
    width: 100%;
    font-size: 1.2rem;
    white-space: normal;
    padding: 12px 20px;
    text-align: center;
  }
}

/* --- Hamburger Menu Icon --- */
.navbar-toggler i {
  font-size: 1.6rem;
  color: var(--secondary-color);
}

/* --- About Page Specific Styles --- */
.about-header {
  background: linear-gradient(rgba(13, 27, 42, 0.85), rgba(13, 27, 42, 0.95)), url('images/volvo/1.jpg') center/cover;
  padding: 220px 0 100px;
  color: white;
  text-align: center;
}

.about-hero-content {
  display: inline-block;
  padding: 40px;
  background: rgba(13, 27, 42, 0.35);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 12px;
}

.full-width-stats {
  background: linear-gradient(rgba(13, 27, 42, 0.88), rgba(13, 27, 42, 0.92)), url('images/volvo/3.jpg') center/cover;
  padding: 100px 0;
  color: white;
  border-top: 5px solid var(--primary-color);
  border-bottom: 5px solid var(--primary-color);
}

.full-width-stats .massive-stat {
  font-size: 4.5rem;
  font-weight: 900;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 10px;
}

.full-width-stats .stat-label {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #fff;
}

.work-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 30px 20px;
  text-align: center;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--secondary-color);
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.work-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.facility-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.facility-img:hover {
  transform: scale(1.03);
}