/* === Station Gallery Slider (Full Screen & Hover Icon) === */
.station-gallery-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  max-width: 100vw;
  position: relative;
  height: 80vh;
  background: #000;
}
.station-gallery-slider .slider-images-wrapper {
  width: 100vw;
  height: 80vh;
  display: flex;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  position: relative;
}
.station-gallery-slider .slider-image {
  display: none;
  width: 100vw;
  height: 80vh;
  object-fit: cover;
  object-position: top;
  border-radius: 0;
  box-shadow: none;
  transition: opacity 0.4s;
  background: #000;
  position: absolute;
  top: 0;
  left: 0;
}
.station-gallery-slider .slider-image.active {
  display: block;
  opacity: 1;
  z-index: 1;
}
.station-gallery-slider .slider-prev,
.station-gallery-slider .slider-next {
  background: #fff;
  border: none;
  color: #000;
  font-size: 2rem;
  cursor: pointer;
  padding: 0px 14px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  z-index: 10;
  transition: background 0.2s;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.station-gallery-slider .slider-prev {
  left: 2vw;
}
.station-gallery-slider .slider-next {
  right: 2vw;
}
.station-gallery-slider .slider-prev:hover,
.station-gallery-slider .slider-next:hover {
  background: #f0f0f0;
}
@media (max-width: 900px) {
  .station-gallery-slider .slider-images-wrapper,
  .station-gallery-slider .slider-image {
    height: 60vh;
  }
  .station-gallery-slider {
    height: 60vh;
  }
}
@media (max-width: 600px) {
  .station-gallery-slider .slider-images-wrapper,
  .station-gallery-slider .slider-image {
    height: 40vh;
  }
  .station-gallery-slider {
    height: 40vh;
  }
}




/* Station Detail Page Styles */
.station-detail-container {
  width: 100%;
  /* max-width: 1200px; */
  margin: 0 auto;
  /* padding: 20px; */
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}
.elementor-11 .elementor-element.elementor-element-300290f1{
	align-self:center;
}

.elementor-11 .elementor-element.elementor-element-2a0a9e0b .elementor-nav-menu .elementor-item {
    font-size: 15px !important;
}

.station-detail-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.station-name {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  color: #fff;
  position: absolute;
  background: #d49901;
  border-radius: 0px 8px 8px 0px;
  top: 54%;
  margin-bottom: 10px;
  padding: 20px;
}

.station-detail-header h1 {
  font-size: 32px;
  margin: 0;
  color: #333;
}

.back-button {
  display: inline-block;
  padding: 8px 16px;
  background-color: #f5f5f5;
  color: #333;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  transition: background-color 0.3s;
}

.back-button:hover {
  background-color: #e0e0e0;
}

/* Info Cards */

.station-info-cards {
  gap: 32px;
  width: 100%;
  margin: auto;
  display: flex;
  padding: 0 3%;
  justify-content: center;
  transform: translateY(-20%);
}

.info-card {
  flex: 1;
  height: 128px;
  align-items: center;
  min-width: 250px;
  display: flex;
  background-color: #fff8e1;
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #d49901;
  border-radius: 50%;
  margin-right: 15px;
}

.icon {
  font-size: 24px;
}

.info-content h3 {
  margin: 0 0 5px 0;
  font-size: 20px;
  color: #333;
}

.info-content p {
  margin: 0;
  color: #555;
  font-size: 14px;
}

.station-section h2 {
  position: relative;
  font-size: 28px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  color: #333;
}

.station-section h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 7px;
  background-color: #d49901;
}

/* Fuel Section */
.fuel-types {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.fuel-type {
  background-color: #f5f5f5;
  border-radius: 8px;
  padding: 20px;
  width: 200px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.fuel-icon {
  font-size: 32px;
  margin-bottom: 10px;
}

/* Amenities Section */
.amenities-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.amenity-group {
  flex: 1;
  min-width: 250px;
}

.amenity-group h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #444;
}

.amenity-items {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.amenity-item {
  display: flex;
  align-items: center;
  background-color: #f5f5f5;
  border-radius: 8px;
  padding: 10px 15px;
  width: calc(50% - 8px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.amenity-icon {
  font-size: 20px;
  margin-right: 10px;
}

/* Carwash Section */
/* .carwash-section {
  background-color: #f5f5f5;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 40px;
  background-image: url("../images/carwash-bg.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
}

.carwash-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  z-index: 1;
}

.carwash-section h2,
.carwash-section p,
.carwash-cta {
  position: relative;
  z-index: 2;
}

.carwash-section h2:after {
  background-color: #fff;
}

.carwash-button {
  display: inline-block;
  background-color: #d49901;
  color: #fff;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  margin-top: 15px;
  transition: background-color 0.3s;
}

.carwash-button:hover {
  background-color: #d49901;
}

.arrow {
  display: inline-block;
  transition: transform 0.3s;
}

.carwash-button:hover .arrow {
  transform: translateX(5px);
} */

/* === Carwash Section Container === */
.carwash-section {
  padding: 0px 3% 4%;
  text-align: center;
  background-color: #fff;
  color: #222;
}

/* === Heading === */
.carwash-section h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.carwash-section h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 4px;
  background-color: #d4a009;
  margin: 8px auto 0;
}

/* === Subtext === */
.carwash-section p {
  color: #666;
  font-size: 16px;
  max-width: 700px;
  padding: 0px 24px;
  margin: 0 auto 40px;
}

/* === CTA Box with Background === */
.carwash-card {
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  max-width: 700px;
  margin: 0 auto;
  padding: 80px 30px;
  position: relative;
  overflow: hidden;
}

.carwash-button-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  text-align: center;
}

/* First button default visible */
.first-btn {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s ease, transform 0.4s ease;
  position: relative;
  z-index: 2;
}

/* Second button hidden by default */
.carwash-ctahover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 1;
}

/* Show second button, hide first on hover */
.carwash-button-wrapper:hover .first-btn {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
}

.carwash-button-wrapper:hover .carwash-ctahover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  z-index: 2;
}

/* Button shared styles */
/* .carwash-button {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #222;
  padding: 16px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
  gap: 10px;
} */
/* 
.carwash-button {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #222;
  padding: 16px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-width: 320px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
}

.external-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: inline-block;
} */

/*stat */

.carwash-button {
  display: flex;
  align-items: center;
  height: 150px;
  justify-content: center;
  padding: 16px 30px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 18px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  min-width: 360px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
  gap: 16px;
}

.button-text {
  flex: 1;
  text-align: left;
}

.arrow-icon {
  background-color: #d4a009;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.arrow-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* end  */
/* Yellow arrow icon */
.carwash-button .arrow {
  background-color: #d4a009;
  color: #fff;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
  font-size: 18px;
  transition: transform 0.3s ease;
  transform: rotate(0deg);
}

.carwash-button:hover .arrow {
  transform: translateX(10px) rotate(0deg);
}

.two-line-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 20px 30px;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  min-width: 300px;
}

.second-line-title {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin-bottom: 10px;
}

.second-link {
  font-size: 16px;
  font-weight: 700;
  color: #004080;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.external-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

/* start */

/* end */

/* Map Section */
#station-map {
  height: 580px;
  margin-bottom: 20px;
}

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

.amenity-icon-detail {
  margin-bottom: 20px;
}

.fuel-section {
  padding: 0 3% 4%;
  text-align: center;
}

.fuel-section .section-title {
  font-size: 28px;
  font-weight: 600;
  color: #222;
  position: relative;
  display: inline-block;
  margin-bottom: 40px;
}

.fuel-section .section-title::after {
  content: "";
  width: 40px;
  height: 7px;
  background-color: #d49901;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

.fuel-types {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.fuel-type-card {
  background-color: #f8eed1;
  border-radius: 10px;
  width: 160px;
  height: 130px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.3s ease;
}

/* .fuel-type-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  } */

.fuel-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 8px;
  color: #cc8900;
  font-weight: 600;
  font-size: 14px;
}

.fuel-icon img {
  width: 100%;
  height: 100%;
  margin-bottom: 4px;
}

.fuel-name {
  font-size: 14px;
  font-weight: 500;
  color: #222;
}

.amenities-section {
  padding: 0 3% 4%;
  text-align: center;
}

.section-title {
  font-size: 32px;
  font-weight: 600;
  color: #111;
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
}

.section-subtitle {
  color: #666;
  font-size: 16px;
  max-width: 700px;
  padding: 0px 24px;
  margin: 0 auto 40px;
}

.amenities-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.amenity-card {
  background-color: #f8eed1;
  border-radius: 10px;
  width: 160px;
  height: 150px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: box-shadow 0.3s ease;
}

.amenity-label {
  font-size: 14px;
  font-weight: 500;
  color: #222;
}

.station-info-wrapper {
  width: 100%;
  overflow: hidden;
}

.station-info-inner {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: visible;
}

.station-info-bg {
  width: 100%;
  height: 540px;
  display: block;
  object-fit: cover;
}

.station-name-title{
  font-size: 32px !important;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .station-info-cards {
    flex-direction: column;
  }

  .info-card {
    width: 100%;
  }

  .fuel-type {
    width: calc(50% - 10px);
  }

  .amenity-item {
    width: 100%;
  }

  .station-name {
    top: 33%;
    left: 0;
    text-align: center;
    transform: translate(0%, 0%);
  }
   
  .carwash-button{
    min-width: 100px;
  }

  .station-name-title{
    font-size: 28px !important;
  }

  .amenity-card{
    width: 180px;
    height: 170px;
  }
}

@media (max-width: 480px) {
  .station-detail-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .station-detail-header h1 {
    margin-bottom: 15px;
  }

  .fuel-type {
    width: 100%;
  }
}
