/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Open Sans", sans-serif;
  background-color: #000000 !important;
  color: #ffffff;
}

a {
  text-decoration: none;
  color: rgba(35, 80, 150, 1);
}

a:hover {
  color: #80c792;
  text-decoration: none;
}


h1 {
  font-family: "Garamond", serif;
  font-size: 1.85em;
}

h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: rgba(35, 80, 150, 0.8);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: rgba(35, 80, 150, 0.1);
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #fbfbfb;
  font-size: 15px;
  height: 40px;
  padding: 0;
}

#topbar .contact-info a {
  line-height: 0;
  color: #444444;
  transition: 0.3s;
}

#topbar .contact-info a:hover {
  color: rgba(35, 80, 150, 1);
}

#topbar .contact-info i {
  color: rgba(35, 80, 150, 1);
  line-height: 0;
  margin-right: 5px;
}

#topbar .contact-info .phone-icon {
  margin-left: 15px;
}

#topbar .social-links a {
  color: #6f6f6f;
  padding: 4px 12px;
  display: inline-block;
  line-height: 1px;
  transition: 0.3s;
}

#topbar .social-links a:hover {
  color: rgba(35, 80, 150, 0.8);
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 1s;
  z-index: 997;
  height: 70px;
  background: rgba(0, 0, 0, 0.85); /* Semi-transparent */
  backdrop-filter: blur(10px); /* Frosted glass effect */
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

#header.header-scrolled {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
  font-size: 2.05em;
  margin: 0;
  padding-left:0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
}

#header .logo a {
  color: rgba(35, 80, 150, 0.8);
  ;
}

#header .logo img {
  max-height: 80px; /* new height */
  max-width: 200px; /* new width if needed */
  padding-bottom: 3px;
}


.scrolled-offset {
  margin-top: 70px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  color: #222222; /** I don't know where this is - ignore for now **/
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
color: rgba(35, 80, 150, 0.8);
}

.navbar .getstarted,
.navbar .getstarted:focus {
  color: rgba(35, 80, 150, 1);
  padding: 8px 25px;
  margin-left: 30px;
  border-radius: 4px;
  border: 2px solid rgba(35, 80, 150, 0.8);
  transition: 0.3s;
  font-size: 14px;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  background: rgba(35, 80, 150, 0.8);
  color: #fff;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: 100% ;
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: rgba(35, 80, 150, 0.8);
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
  color: #222222;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #d4af37 !important;
  z-index: 10000000 !important;
  position: fixed;
  top: 15px;
  right: 15px;
}

/* ===============================
   MOBILE NAV TOGGLE
================================ */
@media (max-width: 991px) {
  /* 1. Toggle Button: Fixed at the top right so it doesn't move when menu opens */
  .mobile-nav-toggle {
    display: block !important;
    font-size: 35px !important;
    color: #d4af37 !important;
    z-index: 10001 !important; 
    position: fixed !important; /* Changed to fixed to stay on top of the overlay */
    right: 20px;
    top: 15px;
    cursor: pointer;
  }

  /* 2. Hide standard desktop list */
  .navbar ul {
    display: none;
  }

  /* 3. FULLSCREEN BACKGROUND OVERLAY
     This class is toggled on the <nav id="navbar"> element */
  .navbar-mobile {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(0, 0, 0, 0.98) !important; /* Nearly solid black */
    z-index: 9998 !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
    overflow: hidden;
  }
#navbar.navbar-mobile {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important; /* Force full viewport width */
    height: 100vh !important; /* Force full viewport height */
    background: rgba(0, 0, 0, 0.98) !important;
    margin: 0 !important;
    padding: 0 !important;
    z-index: 9998 !important;
    display: block !important;
  }
  /* 4. THE MENU BOX (The Gold-Bordered Container)
     Centering the list so it doesn't feel like a tiny box */
  .navbar-mobile ul {
    display: flex !important;
    flex-direction: column !important;
    position: absolute !important;
    top: 80px !important; /* Space for the header/logo */
    display: block !important;
    position: absolute !important;
    top: 80px !important;
    left: 10px !important;  /* Tiny 10px margin from edges */
    right: 10px !important;
    width: calc(100% - 20px) !important; /* Forces it to fill width minus margin */
    max-width: none !important; /* Removes template's max-width if it exists */
    height: auto !important;
    padding: 0 !important;
    background: #000 !important;
    border: 1px solid #d4af37 !important;
    border-radius: 8px !important;
    box-shadow: 0px 0px 20px rgba(212, 175, 55, 0.2);
  }

  /* 5. MENU ITEMS */
  .navbar-mobile li {
    width: 100% !important;
    display: block !important;
  }

  /* 6. LINKS: Full width for easy tapping */
  .navbar-mobile a,
  .navbar-mobile a:focus {
    width: 100% !important;
    display: block !important; /* Changed from flex to block to ensure width */
    text-align: center !important;
    padding: 20px !important;
    font-size: 22px !important;
    color: #fff !important;
    border-bottom: 1px solid #222 !important;
  }

  .navbar-mobile a:hover {
    color: #d4af37 !important;
    background: #111;
  }

/* HOVER / ACTIVE */
.navbar-mobile a:hover,
.navbar-mobile .active {
  color: #d4af37;
  background: rgba(212, 175, 55, 0.12);
}

/* CLOSE ICON */
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 30px;
  color: #d4af37;
  z-index: 10001;
}

/* DROPDOWN FIX */
.navbar-mobile .dropdown ul {
  position: static;
  background: none;
  box-shadow: none;
  padding: 10px 0;
}
/* LOCK BACKGROUND WHEN MOBILE MENU IS OPEN */
body.mobile-nav-active {
  overflow: hidden;
}
#hero, .carousel, .py-5 {
    z-index: 1 !important;
  }}
/*--------------------------------------------------------------
# Hero Section - THE ULTIMATE CENTERING FIX
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background-color: #000;
  overflow: hidden;
  position: relative;
  padding: 0;
  margin: 0;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item {
  width: 100%;
  height: 100vh;
}

#hero .carousel-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

#hero .carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.8));
  z-index: 1;
}

/* THE FIX: Spans full width and forces vertical/horizontal centering */
#hero .carousel-container {
  position: relative !important;
  inset: 0 !important; 
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
  z-index: 10 !important;
  width: 100% !important;
  padding: 0 20px;
  pointer-events: none;
}

#hero .container {
  width: 100% !important;
  max-width: 1100px !important;
  margin: 0 auto !important;
}

#hero h1 {
  color: #fff !important;
  font-size: clamp(2.2rem, 10vw, 4.5rem) !important;
  font-weight: 800 ;
  margin-bottom: 20px;
  line-height: 1.1;
  text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

#hero h1 span {
  color: #d4af37;
}

#hero h2 {
  color: #eee;
  font-size: clamp(1rem, 4vw, 1.5rem);
  font-weight: 400;
  max-width: 800px;
  margin: 0 auto 30px auto;
  line-height: 1.4;
}

#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block !important;
  padding: 16px 40px;
  border-radius: 50px;
  transition: 0.3s;
  background: #d4af37 !important; 
  color: #000 !important;
  border: none;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  text-decoration: none;

  /* --- ADD THESE THREE LINES --- */
  position: relative !important;
  z-index: 9999 !important;      /* Pulls button to the front */
  pointer-events: auto !important; /* Forces the mouse to see it */
  cursor: pointer !important
}

#hero .btn-get-started:hover {
  background: #ffffff !important; /* White hover instead of grey */
  color: #000000 !important;    /* Black text */
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.5) !important;
}

/* Responsive Overrides */
@media (max-width: 768px) {
  #hero {
    height: 100vh !important;
  }
  .carousel-control-prev, 
  .carousel-control-next,
  .carousel-indicators {
    display: none !important;
  }
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  background-color: #000 !important;
  /* Very subtle noise/grain texture */
  background-image: url("https://www.transparenttextures.com/patterns/carbon-fibre.png"); 
  background-attachment: fixed;
}

.section-bg {
  background-color: #f8fcf9;
}

.section-title {
  text-align: center;
  padding-bottom: 10px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: rgba(35, 80, 150, 1);
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
  font-size: 14px;
  color: #919191;
}

.section-content {
  padding: 20px 0;
}


/*--------------------------------------------------------------
# Featured Services
--------------------------------------------------------------*/
.featured-services {
  padding: 20px 0;
}

.featured-services .icon-box {
  padding: 20px;
}

.featured-services .icon-box-bg {
  background-image: linear-gradient(0deg, #222222 0%, #2f2f2f 50%, #222222 100%);
}

.featured-services .icon {
  margin-bottom: 15px;
}

.featured-services .icon i {
  color: rgba(35, 80, 150, 1);
  font-size: 42px;
}

.featured-services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.featured-services .title a {
  color: #222222;
  transition: 0.3s;
}

.featured-services .icon-box:hover .title a {
  color: rgba(35, 80, 150, 1);
}

.featured-services .description {
  line-height: 24px;
  font-size: 14px;
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: 28px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: rgba(35, 80, 150, 1);
}

.about .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us {
  padding: 0;
}

.why-us .content-item h4{
    color: rgba(35, 80, 155, 1);
}

.why-us .row {
  overflow: hidden;
}

.why-us .content-item {
  padding: 40px;
  border-left: 1px solid #eee;
  border-bottom: 1px solid #eee;
  margin: -1px;
}

.why-us .content-item span {
  display: block;
  font-size: 24px;
  font-weight: 300;
  color: rgba(35, 80, 150, 0.65);
}

.why-us .content-item h4 {
  font-size: 26px;
  font-weight: 400;
  padding: 0;
  margin: 20px 0;
}

.why-us .content-item p {
  color: black;
  font-size: 15px;
  font-weight: 300;
  margin: 0;
  padding: 0;
}

@media (max-width: 768px) {
  .why-us .content-item {
    padding: 40px 0;
  }
}

/*--------------------------------------------------------------
# Our Clients
--------------------------------------------------------------*/
.clients .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
}

.clients .swiper-slide img:hover {
  opacity: 1;
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #5cb874;
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #5cb874;
}

/*--------------------------------------------------------------
# Services Section - Consolidated & Updated
--------------------------------------------------------------*/

/* 1. Main Card Container */
#services {
  background-color: #000;
  background-image: url("https://www.transparenttextures.com/patterns/carbon-fibre.png");
  padding: 80px 0;
}
.services .icon-box {
background: rgba(15, 15, 15, 0.95) !important;
  border: 1px solid rgba(212, 175, 55, 0.2) !important;
  padding: 0 !important; /* Image spans full width */
  overflow: hidden;
  border-radius: 15px !important;
  transition: all 0.4s ease !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5) !important;
}
.services .icon-box::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, #d4af37);
  transition: 0.5s;
}
.services .icon-box:hover::before {
  left: 100%;
}
/* 2. Top Image/Icon Wrapper (Inner container) */
.service-img-wrap, 
.service-icon-wrap {
  width: 100% !important;
  height: 220px !important;
  margin: 0 0 20px 0 !important;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  
  /* Match the dark background to avoid white flickering */
  background: #111; 
  
  /* Removed golden inner borders - set to transparent or match outer */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1); 
  border-radius: 13px 13px 0 0 !important;
  transition: all 0.3s ease;
}

/* 3. Image & Icon Specifics */
.service-pic {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 0 !important;
}

.service-icon-wrap i {
  font-size: 80px !important;
  color: #feca09; /* CarGent Gold */
  transition: transform 0.3s ease;
}

/* 4. Text Content Styling */
.services .icon-box h4 {
  font-weight: 600;
  margin: 10px 0 15px 0;
  font-size: 22px;
  color: #ffffff; /* White text for dark theme */
}

.services .icon-box p {
  color: #cccccc;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 20px;
  padding: 0 20px;
}

.services .icon-box h3 {
  color: #feca09; /* Gold for "Coming Soon" or Prices */
  font-weight: 700;
}

/* 5. HOVER EFFECTS (White to Gold Transition) */
.services .icon-box:hover {
  border-color: #D4AF37 !important;
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15) !important;
}
.service-content {
  padding: 25px;
}
.services h4 {
  color: #fff !important;
  font-weight: 700;
  letter-spacing: 1px;
}
.services p {
  color: #d1d1d1 !important; /* Silver for readability */
}
.services .icon-box:hover .service-icon-wrap i {
  transform: scale(1.1);
}

/* 6. Button Styling (Black with Gold Outline) */
.services .icon-box .btn-book, 
.services .icon-box .btn-success,
.services .icon-box .btn-outline-secondary {
  background-color: #000000 !important; /* Pure Black */
  border: 2px solid #feca09 !important; /* Gold Border */
  color: #ffffff !important;
  padding: 10px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  transition: 0.3s;
  display: inline-block;
  text-decoration: none;
}

/* Button Hover State */
.services .icon-box .btn-book:hover,
.services .icon-box .btn-success:hover,
.services .icon-box .btn-outline-secondary:hover {
  background-color: #feca09 !important;
  color: #000000 !important;
  transform: scale(1.05);
}
/* Icon color transitions per type */
.services .iconbox-blue i {
  color: #47aeff;
}
.services .iconbox-blue:hover .icon i {
  color: #fff;
}
.services .iconbox-blue:hover .icon path {
  fill: #47aeff;
}

.services .iconbox-orange i {
  color: #ffa76e;
}
.services .iconbox-orange:hover .icon i {
  color: #fff;
}
.services .iconbox-orange:hover .icon path {
  fill: #ffa76e;
}

.services .iconbox-pink i {
  color: #e80368;
}
.services .iconbox-pink:hover .icon i {
  color: #fff;
}
.services .iconbox-pink:hover .icon path {
  fill: #e80368;
}

.services .iconbox-yellow i {
  color: #ffbb2c;
}
.services .iconbox-yellow:hover .icon i {
  color: #fff;
}
.services .iconbox-yellow:hover .icon path {
  fill: #ffbb2c;
}

.services .iconbox-red i {
  color: #ff5828;
}
.services .iconbox-red:hover .icon i {
  color: #fff;
}
.services .iconbox-red:hover .icon path {
  fill: #ff5828;
}

.services .iconbox-teal i {
  color: #11dbcf;
}
.services .iconbox-teal:hover .icon i {
  color: #fff;
}
.services .iconbox-teal:hover .icon path {
  fill: #11dbcf;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: rgba(35, 80, 125, 1);
  padding: 80px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 2px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 4px;
}

.cta .cta-btn:hover {
  background: #fff;
  color: #5cb874;
}

@media (max-width: 1024px) {
  .cta {
    background-attachment: scroll;
  }
}

@media (min-width: 769px) {
  .cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 15px 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border-radius: 3px;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #fff;
  background: #5cb874;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(34, 34, 34, 0.6);
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(34, 34, 34, 0.6);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap img {
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  font-style: italic;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  margin: 0 5px 0 0;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #6ec083;
}

.portfolio .portfolio-wrap:hover::before {
  opacity: 1;
}

.portfolio .portfolio-wrap:hover img {
  transform: scale(1.05);
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #5cb874;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #5cb874;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(34, 34, 34, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  text-align: center;
  margin-bottom: 20px;
  box-shadow: 0px 0px 12px 0px rgba(34, 34, 34, 0.07);
  padding: 30px 20px;
  background: #fff;
}

.team .member img {
  max-width: 60%;
  border-radius: 50%;
  margin: 0 0 30px 0;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

.team .member p {
  padding-top: 10px;
  font-size: 14px;
  font-style: italic;
  color: #aaaaaa;
}

.team .member .social {
  margin-top: 15px;
}

.team .member .social a {
  color: #919191;
  transition: 0.3s;
}

.team .member .social a:hover {
  color: #5cb874;
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  border-top: 3px solid rgba(35, 80, 150, 1);
  border-bottom: 3px solid rgba(35, 80, 150, 1);
  padding: 30px;
  background: #fff;
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .info i {
  font-size: 20px;
  color: rgba(35, 80, 150, 1);
  float: left;
  width: 44px;
  height: 44px;
  background: #eaf6ed;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #222222;
}

.contact .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #555555;
}

.contact .info .social-links {
  padding-left: 60px;
  color: rgba(35, 80, 150, 1);
}

.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}

.contact .info .social-links a:hover {
  background: rgba(35, 80, 150, 1);
  color: #fff;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: rgba(35, 80, 150, 1);
  color: #fff
}

.contact #contact-form {
  width: 100%;
  border-top: 3px solid rgba(35, 80, 150, 1);
  border-bottom: 3px solid rgba(35, 80, 150, 1);
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact #contact-form .form-group {
  padding-bottom: 8px;
}

.contact #contact-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact #contact-form .error-message br+br {
  margin-top: 25px;
}

.contact #contact-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact #contact-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact #contact-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact #contact-form input,
.contact #contact-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact #contact-form input:focus,
.contact #contact-form textarea:focus {
  border-color: rgba(35, 80, 150, 1);
}

.contact #contact-form input {
  height: 44px;
}

.contact #contact-form textarea {
  padding: 10px 12px;
}

.contact #contact-form button[type=submit] {
  background: rgba(35, 80, 150, 1);
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact #contact-form button[type=submit]:hover {
  background: #6ec083;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
/* ======= Breadcrumbs Global Styling ======= */
.breadcrumbs {
  padding: 15px 0;
  background-color: #111111 !important; /* Slightly lighter black for depth */
  color: #ffffff !important; /* Forces text to white */
  min-height: 40px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 66px;
  }
}

/* Page Title (The large text on the left) */
.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 300;
  color: #ffffff !important; /* Starts white */
  transition: 0.3s;
  cursor: pointer;
}

/* Golden hover for Page Title */
.breadcrumbs h2:hover {
  color: #feca09 !important;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

/* Base style for BOTH links and plain text in the list */
.breadcrumbs ol li,
.breadcrumbs ol li a {
  color: #ffffff !important; /* All start white */
  transition: 0.3s;
  text-decoration: none;
}

/* Golden hover for the links (Home) and the current page text (About/Contact) */
.breadcrumbs ol li:hover,
.breadcrumbs ol li a:hover {
  color: #feca09 !important;
  cursor: pointer;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

/* The "/" separator stays white */
.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #ffffff !important;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
 background: #000;
  padding: 0 0 30px 0;
  color: #fff;
  border-top: 12px solid #d4af37; /* Thick Gold Bar */
  position: relative;
}
.footer-logo-container {
  margin-top: -45px; /* Pulls logo up */
  position: relative;
  z-index: 10;
}
.footer-logo-main {
  background: #000;
  padding: 10px 20px;
  border: 2px solid #d4af37;
  border-radius: 5px;
  max-width: 180px;
}

#footer h3 {
  font-size: 24px;
  font-weight: 700;
  color: #d4af37;
  margin-bottom: 20px;
  font-family: "Poppins", sans-serif;
  padding: 0;
  margin: 0 0 15px 0;
}

#footer .footer-links ul li {
  padding: 10px 0;
}

#footer .footer-links ul a {
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
}

#footer p {
  font-size: 15px;
  font-style: italic;
  padding: 0;
  margin: 0 0 40px 0;
}

#footer .social-links {
  margin: 0 0 40px 0;
}

/* Footer Social Links: White BG + Logo Color + Gold Hover */
#footer .social-links a {
 background: #d4af37 !important; /* Gold Circle */
  width: 38px;
  height: 38px;
  border-radius: 50% !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  text-decoration: none !important;
}
/* Individual social logo colors (Boxicons classes) */
#footer .social-links a.twitter { color: #E1306C !important; }    /* Twitter blue */
#footer .social-links a.facebook { color: #1877F2 !important; }   /* Facebook blue */
#footer .social-links a.instagram { color: #E1306C !important; }  /* Instagram pink */
#footer .social-links a.google-plus { color: #00AFF0 !important; }/* Skype/Google blue */
#footer .social-links a.linkedin { color: #0A66C2 !important; }   /* LinkedIn blue */
#footer .social-links a.skype { color: #0A66C2 !important; }   /* LinkedIn blue */

/* Hover effect for all social links */
#footer .social-links a:hover {
  background: #d4af37 !important;   /* gold background */
  color: #000 !important;           /* icon turns black */
}

#footer .copyright {
  margin: 0 0 5px 0;
}

#footer .credits {
  font-size: 13px;
}

#footer .a {
  color: rgba(35, 80, 200, 1);
}


/* ==========================================================
   BLACK & GOLD THEME OVERRIDE (SAFE MODE)
   ========================================================== */

/* Global */
body {
  background-color: #0b0b0b;
  color: #cccccc;
}

/* Links */
a {
  color: #d4af37 !important;
}
a:hover {
  color: #b8962e !important;
}

/* Header & Navbar */
#header,
#topbar {
  background: #0b0b0b !important;
}
#header.header-scrolled {
  background: #0b0b0b !important; /* keep black */
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.2); /* slightly stronger shadow */
}

.navbar a {
  color: #ffffff !important;
}
.navbar a:focus {
  color: #ffffff !important;
}

.navbar a:hover,
.navbar .active,
.navbar li:hover > a {
  color: #feca09 !important; 
}

.navbar .getstarted {
  border-color: #d4af37 !important;
  color: #d4af37 !important;
}
.navbar .getstarted:hover {
  background: #d4af37 !important;
  color: #000 !important;
}

/* Mobile Menu */


.navbar-mobile a {
  color: #ffffff !important;
}
.navbar-mobile a:hover {
  color: #d4af37 !important;
}
/* Hero - Line 1700 Final Fix */
#hero {
  background-color: #000 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}



#hero .container {
  max-width: 90% !important; /* Prevents the squashed 200px look */
  width: 100% !important;
}

#hero h1 {
  color: #ffffff !important;
  font-size: 4rem !important; /* Makes it big and centered */
  width: 100% !important;
  display: block !important;
}

#hero h2, #hero p {
  color: #ffffff !important;
  max-width: 800px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

#hero .btn-get-started,
#hero .btn-get-started-2 {
  background: #d4af37 !important;
  color: #000 !important;
  display: inline-block !important;
}

#hero .btn-get-started:hover,
#hero .btn-get-started-2:hover {
  transform: translateY(-5px) scale(1.05) !important;
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.4) !important;
}
/* Sections */
.section-bg {
  background: #111111 !important;
}
.section-title h2::after {
  background: #d4af37 !important;
}

/* Cards / Boxes */
.services .icon-box,
.team .member,
.contact .info,
.contact #contact-form {
background: #111111 !important;
color: #cccccc !important;
}

/* Icons */
.featured-services .icon i,
.about .content ul i,
.contact .info i {
  color: #d4af37 !important;
}

/* CTA */
.cta {
  background: #000 !important;
}
.cta .cta-btn {
  border-color: #d4af37 !important;
  color: #d4af37 !important;
}
.cta .cta-btn:hover {
  background: #d4af37 !important;
  color: #000 !important;
}

/* Portfolio */
.portfolio #portfolio-flters li.filter-active {
  background: #d4af37 !important;
  color: #000 !important;
}

/* Footer */
#footer {
  background: #000 !important;
}
#footer .social-links a {
  background: #d4af37 !important;
  color: #000 !important;
}
#footer .social-links a:hover {
  background: #b8962e !important;
}
/* ==========================================================
   FINAL TEXT CONTRAST FIX (DO NOT REMOVE)
   ========================================================== */

/* Global text */
p, span, li, label {
  color: #dddddd !important;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  color: #ffffff !important;
}

/* Section descriptions */
.section-title p,
.services p,
.about p,
.why-us p,
.team p,
.portfolio p {
  color: #cccccc !important;
}

/* Cards & boxes */
.services .icon-box h4 a,
.services .icon-box p,
.team .member h4,
.team .member span {
  color: #ffffff !important;
}

/* Contact section */
.contact .info h4,
.contact .info p {
  color: #ffffff !important;
}

/* Forms */
input,
textarea {
  background: #0b0b0b !important;
  color: #ffffff !important;
  border: 1px solid #333 !important;
}

input::placeholder,
textarea::placeholder {
  color: #999999 !important;
}

/* Breadcrumbs */
.breadcrumbs,
.breadcrumbs h2,
.breadcrumbs ol li {
  color: #ffffff !important;
}

/* Portfolio overlay */
.portfolio .portfolio-info h4 {
  color: #ffffff !important;
}
.portfolio .portfolio-info p {
  color: #cccccc !important;
}

/* Footer text */
#footer p,
#footer .copyright,
#footer .credits {
  color: #cccccc !important;
}
/* ==========================================================
   NAVBAR WHITE DEFAULT + GOLD HOVER
   ========================================================== */

/* Default state: all links white */
#header .navbar a,
#header .navbar .getstarted {
  color: #ffffff !important;
  transition: color 0.3s; /* smooth hover */
}

/* Hover: all links turn gold */
#header .navbar a:hover,
#header .navbar li:hover > a {
  color: #d4af37 !important;
}

/* Get Started button */
#header .navbar .getstarted {
  border-color: #ffffff !important;  /* changed from gold to white */
  color: #ffffff !important;
}

#header .navbar .getstarted:hover {
  background: #d4af37 !important;
  color: #000 !important;
  border-color: #d4af37 !important;  /* optional: border turns gold on hover */
}

/* Logo / Company name spacing and hover */
#header .logo a {
  color: #ffffff !important;       /* white by default */
  margin-left: 15px;               /* gap between logo image and text */
  line-height: 62px;               /* vertically center with logo image */
  font-weight: 700;
  transition: color 0.3s;          /* smooth hover */
}

#header .logo a:hover {
  color: #d4af37 !important;       /* turns gold on hover */
}
@media (max-width: 768px) {
  #header {
    height: 50px !important;          /* even more compact */
    display: flex;
    align-items: center;  
    background: rgba(0, 0, 0, 0.85); /* Semi-transparent */
  backdrop-filter: blur(10px); /* Frosted glass effect */
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);            /* vertical centering */
  }

  #header .logo {
    font-size: 1.4em !important;
    line-height: 1;
    margin: 0 auto;                   /* center logo horizontally */
  }

  .navbar {
    padding: 0 !important;
  }

  .navbar a,
  .navbar a:focus {
    padding: 6px 12px !important;     /* balanced tap area */
    font-size: 14px;                  /* slightly smaller text */
  }
}
/* Sets the initial look of the logo text */
.logo-link {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo h1 a, 
.logo-text {
  font-family: "Raleway", sans-serif !important; /* Forces the modern font */
  font-weight: 700 !important;                  /* Makes it bold like your screenshot */
  font-size: 28px;
  letter-spacing: 2px;
  text-transform: uppercase;                         /* Keeps it as 'CarGent Mobile' */
  color: #ffffff !important;                   /* Default White */
  transition: 0.3s;
  text-decoration: none;
}

.logo h1 a:hover,
.logo-link:hover .logo-text {
  color: #D4AF37 !important;                  
}
.carousel-indicators, 
.swiper-pagination, 
.owl-dots {
  display: none !important;
}
/* How It Works Section */
.how-it-works {
  padding: 60px 0;
  background: #000; /* Matching your black theme */
  color: #fff;
}
.how-it-works .step-number {
display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #000;
  border: 2px solid #d4af37;
  color: #d4af37;
  border-radius: 50%;
  font-weight: 700;
  margin-bottom: 15px;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}
.how-it-works-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  border: 1px solid #eee;
  transition: transform 0.3s ease;
}
.icon-box:hover, .how-it-works-img-wrap:hover {
  transform: translateY(-7px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}
.how-it-works .step-text h4 {
  color: #ffffff !important; 
  font-weight: 700;
  margin-top: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 1.1rem;
}
.how-it-works .step-text p {
 color: #d1d1d1 !important; /* Silver-grey is much easier to read than dark grey */
  font-size: 15px;
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 0;
}/* Rectangular Action Image Styles */
.service-img-wrap {
  width: 100%; /* Spans the full width of the service box like the reference */
  height: 220px; /* Provides that wide, cinematic look seen in the GoOil example */
  margin: 0 0 20px 0;
  border-radius: 15px 15px 0 0; /* Smooth, rounded corners instead of a circle */
  border: 1px solid rgba(212, 175, 55, 0.3);/* Subtle border to define the image edges */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #111;
  transition: all 0.3s ease;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05); /* Adds a soft lift effect */
  position: relative;
}

.service-pic {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Essential to ensure the mechanic/car fills the frame without stretching */
  transition: transform 0.6s ease;
}
.btn-book {
  background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%) !important;
  color: #000 !important;
  border: none !important;
  font-weight: 800 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 30px !important;
}

.btn-book:hover {
  background: #fff !important;
  color: #000 !important;
}
/* Hover Effect: Image slightly zooms for a premium feel */
.icon-box:hover .service-pic {
  transform: scale(1.1);
}

.icon-box:hover .service-img-wrap {
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15); /* Deepens shadow on hover */
}

/* Grayscale for "Coming Soon" images - stays the same */
.soon-filter img {
  filter: grayscale(100%);
  opacity: 0.6;
}/* Mobile Optimization for Service Cards */
@media (max-width: 768px) {
  .service-img-wrap, .service-icon-wrap {
    height: 180px !important; /* Slightly shorter height for mobile screens */
  }

  .services .icon-box h4 {
    font-size: 18px; /* Smaller font so titles stay on one line */
  }

  .how-it-works .step-item {
    padding: 0 0 40px 0; /* Remove side borders on mobile for space */
    border-left: none;
    margin-left: 0;
    text-align: center;
  }

  .how-it-works .step-number {
    margin: 0 auto 15px auto; /* Center the step number */
  }
}
/* ==========================================================
   FINAL UNIFIED THEME: NAVBAR & FOOTER FIX
   ========================================================== */

/* 1. Navbar Consistency (White text, Gold hover everywhere) */
#header {
  background: rgba(0, 0, 0, 0.85);
}

#navbar a, #navbar a:focus {
  color: #ffffff !important;
}

#navbar a:hover, #navbar .active, #navbar li:hover > a {
  color: #feca09 !important;
}

/* 2. Unified Footer Background */
#footer {
  background: #000 !important;
  padding: 0 !important;
  color: #fff !important;
  border-top: none !important; /* Removes the old thick bar */
}

/* 3. The Gold Line & Logo Positioning */
.footer-logo-container {
width: 100%;
border-top: 5px solid #d4af37 !important; 
position: relative;
/* Adjust this to move the logo and line away from the text above */
margin-top: 110px !important; 
margin-bottom: 70px !important; 
}

.footer-logo-box {
position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #000 !important;
  padding: 12px 20px !important;
  border: 2px solid #d4af37 !important; 
  border-radius: 8px;
  width: 170px !important; 
  z-index: 99;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 160px !important; 
  z-index: 99;
  display: flex;
  justify-content: center;
}

.footer-logo-main {

  border: none !important; 
  background: transparent !important;
  padding: 0 !important;
  box-shadow: none !important;
  
  width: 100% !important;
  height: auto !important;
  max-width: 140px !important;
}

/* 4. Footer Content Alignment */
#footer h3 {
  color: #feca09 !important;
  font-size: 20px !important;
  margin-bottom: 20px !important;
}

#footer .footer-links {
  text-align: center !important;
}

#footer .footer-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: inline-block;
  text-align: left;
}

#footer .footer-list a {
  color: #d4af37 !important;
  text-transform: none !important;
}

/* 5. Social Links (Gold Circles, Black Icons) */
.social-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.social-links a {
background: #d4af37 !important; /* Default Gold Circle */
  color: #000 !important;        /* Default Black Icon */
  width: 38px;
  height: 38px;
  border-radius: 50% !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  text-decoration: none !important;
}

.social-links a:hover {
background: #ffffff !important; 
  color: #000000 !important;
  transform: translateY(-3px);
}
.social-links a:hover i {
  color: #000 !important;
}

/* 6. MOBILE FIXES */
@media (max-width: 768px) {
  .footer-logo-box {
    width: 130px !important;
  }
  
  #footer .footer-contact, 
  #footer .footer-info {
    text-align: center !important;
    margin-bottom: 30px;
  }
}
/* --- CarGent 4-Step Form Custom Styles --- */

/* 1. Hide steps by default and set transition */
.form-step {
  display: none;
  transition: all 0.4s ease-in-out;
}

/* 2. Show the active step */
.form-step.active {
  display: block;
  animation: slideIn 0.5s forwards;
}

/* 3. Progress Bar Styling */
.progress {
  height: 12px;
  background-color: #e9ecef;
  border-radius: 10px;
  margin-bottom: 30px;
  overflow: hidden;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
}

.progress-bar {
background: linear-gradient(45deg, #D4AF37, #f2d06b) !important;
box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* 4. Heading & Labels */
.step-title {
  color: #D4AF37 !important;
  border-left: 5px solid #000; /* Black accent bar */
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* 5. Button Customization */
.next-btn, .php-email-form button[type="submit"] {
background: linear-gradient(to bottom, #f2d06b 0%, #D4AF37 100%) !important;
  color: #000 !important; /* Professional Black text on Gold */
  font-weight: 700 !important;
  font-size: 1.1rem !important; /* Larger font */
  padding: 15px 40px !important; /* Larger button size */
  border: 1px solid #B8860B !important;
  border-radius: 8px !important;
  text-transform: uppercase;
  transition: 0.3s all ease;
}

.next-btn:hover, .php-email-form button[type="submit"]:hover {
background: #000 !important; /* Flips to Black on hover */
  color: #D4AF37 !important;   /* Gold text on hover */
  border: 1px solid #D4AF37 !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.prev-btn {
  background: #222 !important;
  color: #fff !important;
  font-weight: 600 !important;
  padding: 15px 30px !important;
  border: none !important;
  border-radius: 8px !important;
}

.prev-btn:hover {
  background: #444 !important;
}

/* 6. Smooth Animation */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.php-email-form input:focus, 
.php-email-form select:focus, 
.php-email-form textarea:focus {
  border-color: #D4AF37 !important;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.4) !important;
}
/* Premium Floating Button - Icon Visible */
.floating-contact {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  
  /* Start State: Clear icon, Gold border */
  background: rgba(0, 0, 0, 0.7); 
  border: 2px solid #d4af37;
  color: #d4af37; /* Icon is gold */
  font-size: 28px;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.floating-contact:hover {
  /* Hover State: Solid Gold background */
  background: #d4af37;
  color: #000; /* Icon turns black for perfect contrast */
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}
.how-it-works .step-item {
  padding: 0 20px 30px 40px; /* More left padding to clear the line */
  border-left: 2px solid rgba(212, 175, 55, 0.2); /* Solid gold-tinted line */
  margin-left: 15px;
  position: relative;
  transition: 0.3s;
  z-index: 1;
}

/* Connect the steps with a vertical line */
.how-it-works .step-item::before {
  content: '';
  position: absolute;
  left: -9px; /* Centers exactly on the border-left */
  top: 0;
  width: 15px;
  height: 15px;
  background: #d4af37;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.how-it-works .step-number::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid #d4af37;
  animation: gold-pulse 2.5s infinite;
  z-index: -1;
}
.how-it-works .step-item:last-child::before {
  display: none;
}
@keyframes gold-pulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}
/* Premium Newsletter Refinement */
.elite-signup {
  max-width: 800px;
  margin: 40px auto; /* Centers the box */
  padding: 30px;
  border: 1px solid rgba(212, 175, 55, 0.3); /* Subtle gold border */
  border-radius: 15px;
  background: #0a0a0a;
}

.elite-signup input {
  height: 50px;
  padding-left: 20px !important;
  border-radius: 30px 0 0 30px !important; /* Rounded left side */
}

.elite-signup .btn {
  border-radius: 0 30px 30px 0 !important; /* Rounded right side */
  padding: 0 30px;
  background-color: #d4af37 !important;
  color: #000 !important;
  font-weight: 700;
}
@media (max-width: 768px) {
  .how-it-works-img img {
    max-width: 140px !important;
    margin: 0 auto 30px auto;
    display: block;
  }
  
  .section-title h2 {
    font-size: 24px !important;
  }
}#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #000;
}

#footer .footer-info h3 {
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
}.floating-contact {
  animation: pulse-gold 2s infinite;
}

@keyframes pulse-gold {
  0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}
.area-badge {
  background: #111;
  border: 1px solid #333;
  padding: 5px 15px;
  border-radius: 20px;
  display: inline-block;
  margin: 5px;
  color: #d4af37;
  font-size: 13px;
}
/* --- FLEET PAGE STYLING --- */

.fleet-card {
  background: #0a0a0a;
  border: 1px solid #222;
  padding: 40px 20px;
  text-align: center;
  border-radius: 15px;
  transition: 0.3s;
  height: 100%;
}

.fleet-card:hover {
  border-color: #d4af37;
  transform: translateY(-10px);
}

.gold-icon {
  font-size: 3rem;
  color: #d4af37;
  margin-bottom: 20px;
  display: block;
}

.btn-gold {
  background: #000;
  color: #000;
  font-weight: 700;
  padding: 12px 35px;
  border-radius: 50px;
  border: none;
}

.inspection-banner {
  background: linear-gradient(90deg, #111 0%, #000 100%);
  border-left: 4px solid #d4af37;
  padding: 40px;
  border-radius: 10px;
}

.bg-gold {
  background-color: #d4af37 !important;
}

@media (max-width: 768px) {
  .text-center-mobile { 
    text-align: center !important; 
    margin-top: 20px; 
  }
  .inspection-banner {
    padding: 20px; /* Smaller padding so it doesn't feel cramped */
  }
}
.cargent-floating-contact {
  position: fixed;
  bottom: 30px; 
  right: 20px;
  display: flex !important;
  flex-direction: column !important; /* This stacks them vertically */
  gap: 12px;                        /* This creates space between the circles */
  z-index: 999999;
}

.cargent-fab {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.cargent-fab.whatsapp { background-color: #d4af37; color: black !important; }
.cargent-fab.phone { background-color: #d4af37; color: black !important; }

/* Critical for centering icons */
.cargent-fab i {
  font-size: 24px !important;
  line-height: 0;
}
/* --- BULLETPROOF HOVER LABELS --- */
.cargent-fab {
  position: relative;
}

.cargent-fab::after {
  content: attr(data-label);
  position: absolute;
  /* Push it further left so it's clearly visible */
  right: 75px; 
  top: 50%;
  transform: translateY(-50%);
  
  background-color: #333;
  color: #fff;
  padding: 8px 15px;
  border-radius: 8px;
  font-size: 14px;
  font-family: sans-serif;
  white-space: nowrap;
  
  /* Force it to stay on top */
  z-index: 1000000;
  
  /* Initial State: Hidden */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* The Triangle Pointer */
.cargent-fab::before {
  content: '';
  position: absolute;
  right: 65px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent transparent #333;
  opacity: 0;
  z-index: 1000000;
  transition: opacity 0.3s ease;
}

/* Hover State */
.cargent-fab:hover::after, 
.cargent-fab:hover::before {
  opacity: 1;
  /* Slight slide-in effect */
  transform: translateY(-50%) translateX(-5px); 
}
/* Make labels ALWAYS visible on Mobile */
@media (max-width: 768px) {
  .cargent-fab::after,
  .cargent-fab::before {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(-50%);
  }
}
/* --- WHATSAPP PULSE ANIMATION --- */
.whatsapp-fab {
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Optional: Stop animation when user hovers */
.whatsapp-fab:hover {
  animation: none;
  transform: scale(1.1);
}
/* Ensure Mobile Menu is always on top of the Contact Buttons */


/* If your template uses a mobile-nav-toggle button */
.mobile-nav-toggle {
  z-index: 10000000 !important;
}
/* FORCE HIDE PAGE WHEN MOBILE MENU IS OPEN */
.navbar-mobile ~ * {
  display: none !important;
}

/* KEEP NAVBAR MOBILE VISIBLE */
.navbar-mobile {
  display: flex !important;
}
/* HIDE PAGE CONTENT WHEN MOBILE MENU IS OPEN */
.navbar-mobile {
  isolation: isolate;
}

/* Force-hide all sections behind mobile menu */
.mobile-nav-active section,
.mobile-nav-active main,
.mobile-nav-active footer,
.mobile-nav-active .hero,
.mobile-nav-active .hero-container {
  display: none !important;
}
/* ===============================
   HARD ISOLATION FOR MOBILE MENU
================================ */

body.mobile-nav-active #hero,
body.mobile-nav-active section,
body.mobile-nav-active main,
body.mobile-nav-active footer {
  display: none !important;
}

/* Ensure navbar stays visible */
body.mobile-nav-active header,
body.mobile-nav-active #header,
body.mobile-nav-active #navbar {
  display: block !important;
}
.star-input.active {
  color: #d4af37 !important;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}
.star-input:hover {
  color: #ffc107 !important;
}
.review-card {
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.review-card:hover {
  transform: translateY(-10px);
  border-color: #d4af37 !important;
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.05);
}
/* For Chrome, Safari, and Edge */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #000;
}
::-webkit-scrollbar-thumb {
  background: #D4AF37;
  border-radius: 10px;
}
/* For Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #D4AF37 #000;
}
.trust-ribbon {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #d4af37;
  color: #000;
  font-size: 0.7rem;
  font-weight: 800;
  text-align: center;
  padding: 8px 0;
  z-index: 10000;
  letter-spacing: 1px;
  display: flex;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 -5px 15px rgba(0,0,0,0.3);
}
.trust-ribbon .dot { color: rgba(0,0,0,0.3); }
.hotspot {
  position: absolute;
  color: #d4af37;
  font-size: 1.5rem;
  cursor: pointer;
  transition: transform 0.3s;
  animation: pulse-gold 2s infinite;
}
.hotspot:hover { transform: scale(1.3); color: #fff; }

@keyframes pulse-gold {
  0% { text-shadow: 0 0 0 rgba(212, 175, 55, 0.7); }
  70% { text-shadow: 0 0 15px rgba(212, 175, 55, 0); }
  100% { text-shadow: 0 0 0 rgba(212, 175, 55, 0); }
}
/* Logo Slider Styling */
.logo-slider {
  overflow: hidden;
  padding: 20px 0;
  position: relative;
}

.logo-slide-track {
  display: flex;
  width: calc(250px * 10); /* Adjust based on number of logos */
  animation: scroll 30s linear infinite;
}

/* Container for the logo */
.slide {
  width: 200px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

/* The Fixed Constant Logo Style */
.slide img {
  max-width: 150px;    /* Keeps them uniform and compact */
  max-height: 60px;    /* Prevents them from being too big */
  width: auto;
  height: auto;
  object-fit: contain;
  filter: none !important; 
  opacity: 1 !important;
  mix-blend-mode: screen; 
  
  display: block;
}

.slide img:hover {
  transform: none;
  filter: none;
  opacity: 1;
}
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-250px * 5)); } /* Adjust to loop back */
}
/* --- UPDATED LUXURY SPLASH SCREEN STYLES --- */
#splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #000;
  z-index: 10001;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* Important for the shimmer effect */
  transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
}

/* Logo Animation - Reveal + Breathing Pulse */
.splash-logo {
  max-width: 300px;
  margin-bottom: 40px;
  opacity: 0;
  transform: scale(0.85);
  filter: blur(10px) drop-shadow(0 0 0px rgba(212, 175, 55, 0));
  /* Animation 1: Entrance | Animation 2: Constant Gold Pulse */
  animation: 
    logoReveal 1.5s ease-out forwards, 
    logoPulse 3s ease-in-out infinite 1.5s;
}

@keyframes logoReveal {
  to { 
    opacity: 1; 
    transform: scale(1); 
    filter: blur(0); 
  }
}

@keyframes logoPulse {
  0% { filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.2)); }
  50% { filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.6)); }
  100% { filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.2)); }
}

/* Reflective Shimmer Streak passing over the background */
#splash-screen::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right, 
    transparent, 
    rgba(255, 255, 255, 0.1), 
    transparent
  );
  transform: skewX(-25deg);
  animation: shimmer 4s infinite 2s;
  pointer-events: none;
}

@keyframes shimmer {
  0% { left: -150%; }
  30% { left: 150%; }
  100% { left: 150%; }
}

/* Proceed Button - Delayed appearance */
.proceed-btn {
  padding: 15px 40px;
  background: transparent;
  color: #d4af37;
  border: 2px solid #d4af37;
  border-radius: 50px;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.3s;
  opacity: 0;
  animation: btnFadeIn 0.8s ease-out 1.8s forwards; /* Appears after logo is clear */
}

@keyframes btnFadeIn {
  to { opacity: 1; }
}

.proceed-btn:hover {
  background: #d4af37;
  color: #000;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.6);
}

/* Prevent interaction until splash is gone */
body.splash-active {
  overflow: hidden;
  height: 100vh;
}

.splash-hidden {
  transform: translateY(-100%);
  pointer-events: none;
}