/* ================= ABOUT SECTION ================= */

.stx-about-wrap {
  background: #ffffff;
  padding: 70px 16px;
}

.stx-about-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.stx-about-title {
  font-size: 36px;
  color: #01110a;
  margin-bottom: 20px;
  position: relative;
}

.stx-about-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #2d6a4f;
  margin-top: 10px;
}

.stx-about-subtitle {
  font-size: 24px;
  color: #01110a;
  margin: 40px 0 14px;
  position: relative;
}

.stx-about-subtitle::after {
  content: "";
  width: 40px;
  height: 2px;
  background: #2d6a4f;
  display: block;
  margin-top: 8px;
}

.stx-about-mini-title {
  font-size: 20px;
  color: #01110a;
  margin: 34px 0 12px;
  position: relative;
}

.stx-about-mini-title::after {
  content: "";
  width: 30px;
  height: 2px;
  background: #2d6a4f;
  display: block;
  margin-top: 6px;
}

.stx-about-text {
  font-size: 15.5px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 14px;
  max-width: 900px;
}

/* MOBILE */
@media (max-width: 768px) {
  .stx-about-title {
    font-size: 30px;
  }
  .stx-about-wrap{
    padding: 10px 20px;
  }

  .stx-about-subtitle {
    font-size: 22px;
  }
}


/* ===============================
   CAR THEME – STATION TAXI
================================ */

.car-station-section {
  background: #01110a;
  padding: 80px 20px;
  color: #e9f5ef;
}

.car-station-container {
  max-width: 1200px;
  margin: auto;
}

.car-station-header {
  margin-bottom: 50px;
}

.car-station-title {
  font-size: 32px;
  font-weight: 700;
}

.car-station-line {
  display: block;
  width: 70px;
  height: 3px;
  background: #aacc00;
  margin-top: 8px;
  border-radius: 2px;
}

/* GRID */
.car-station-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
}

/* CARD */
.car-station-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  padding: 26px;
  border-radius: 16px;
  text-decoration: none;
  color: #ffffff;
  border: 1px solid rgba(170, 204, 0, 0.15);
  transition: all 0.35s ease;
}

.car-station-card:hover {
  transform: translateY(-6px);
  border-color: #aacc00;
  box-shadow: 0 14px 34px rgba(170, 204, 0, 0.18);
}

/* TITLE */
.car-station-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* DESCRIPTION */
.car-station-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #d8eee4;
}

/* MOBILE */
@media (max-width: 600px) {
  .car-station-title {
    font-size: 26px;
  }

  .car-station-card h3 {
    font-size: 18px;
  }
}



/* ===============================
   AIRPORT TRANSFERS – LIGHT THEME
================================ */

.stx-airport-section {
  background: #ffffff;
  padding: 80px 20px;
}

.stx-airport-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* HEADER */
.stx-airport-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #01110a;
}

.stx-airport-line {
  display: block;
  width: 70px;
  height: 3px;
  background: #2d6a4f;
  margin: 10px auto;
  border-radius: 2px;
}

.stx-airport-header p {
  max-width: 640px;
  margin: 12px auto 50px;
  color: #4a5f57;
  font-size: 16px;
  line-height: 1.6;
}

/* GRID */
.stx-airport-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 30px;
}

/* CARD */
.stx-airport-card {
  text-decoration: none;
  background: rgba(45, 106, 79, 0.05);
  border-radius: 18px;
  padding: 28px 20px;
  transition: all 0.35s ease;
  color: #01110a;
}

.stx-airport-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(45, 106, 79, 0.18);
}

/* IMAGE */
.stx-airport-img {
  width: 90px;
  height: 90px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.stx-airport-img img {
  width: 55px;
  height: auto;
}

/* TITLE */
.stx-airport-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-top: 8px;
}

/* MOBILE */
@media (max-width: 600px) {
  .stx-airport-header h2 {
    font-size: 26px;
  }

  .stx-airport-grid {
    gap: 20px;
  }
}


/* ===============================
   OUR FLEET – DARK THEME
================================ */

.stx-fleet-section {
  background: #01110a;
  padding: 90px 20px;
}

.stx-fleet-container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.stx-fleet-header {
  text-align: center;
  margin-bottom: 50px;
}

.stx-fleet-header h2 {
  color: #e6f2ee;
  font-size: 34px;
  font-weight: 700;
}

.stx-fleet-line {
  display: block;
  width: 70px;
  height: 3px;
  background: #aacc00;
  margin: 10px auto 0;
  border-radius: 3px;
}

/* GRID */
.stx-fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
}

/* CARD */
.stx-fleet-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 18px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.stx-fleet-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

/* IMAGE */
.stx-fleet-card img {
    padding: 20px;
  width: 100%;
  height: auto;
  display: block;
}

/* TITLE */
.stx-fleet-card h3 {
  color: #aacc00;
  font-size: 20px;
  margin: 16px 0 20px;
  font-weight: 600;
}

/* OVERLAY */
.stx-fleet-overlay {
  position: absolute;
  inset: 0;
  background: rgba(1, 17, 10, 0.92);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.stx-fleet-card:hover .stx-fleet-overlay {
  opacity: 1;
}

.stx-fleet-overlay div {
  color: #e6f2ee;
  font-size: 16px;
}

.stx-fleet-overlay span {
  color: #aacc00;
  font-weight: 600;
  margin-right: 6px;
}

/* MOBILE */
@media (max-width: 600px) {
  .stx-fleet-header h2 {
    font-size: 26px;
  }
}



/* ===============================
   SERVICES – LIGHT THEME
================================ */

.stx-services-light {
  background: #ffffff;
  padding: 80px 20px;
}

.stx-services-container {
  max-width: 1100px;
  margin: auto;
}

/* HEADER */
.stx-services-header {
  margin-bottom: 40px;
}

.stx-center {
  text-align: center;
}

.stx-services-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #01110a;
}

.stx-services-line {
  display: block;
  width: 60px;
  height: 3px;
  background: #2d6a4f;
  margin: 12px auto;
  border-radius: 3px;
}

.stx-services-intro {
  max-width: 650px;
  margin: 12px auto 0;
  font-size: 16px;
  line-height: 1.7;
  color: #4a5f57;
}

/* GRID */
.stx-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
}

/* CARD */
.stx-service-card {
  max-width: 280px;
  margin: auto;
  background: rgba(45, 106, 79, 0.04);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stx-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

/* LINK */
.stx-service-card a {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* IMAGE */
.stx-service-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* BODY */
.stx-service-body {
  padding: 14px 16px 18px;
  text-align: center;
}

.stx-service-body h3 {
  font-size: 17px;
  font-weight: 600;
  color: #01110a;
  margin-bottom: 6px;
}

.stx-service-body p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

/* MOBILE */
@media (max-width: 600px) {
  .stx-services-header h2 {
    font-size: 26px;
  }
}


.custom-footer {
  background-color: #01110a; /* dark background */
  color: #e6f2ee; /* text/links color */
  font-family: system-ui, sans-serif;
  padding: 50px 20px 20px 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-col h4 {
  color: #aacc00;
  font-size: 16px;
  margin-bottom: 15px;
  position: relative;
}

.footer-col h4::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #aacc00;
  margin-top: 6px;
}

.footer-col p,
.footer-col ul li {
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li a {
  color: #e6f2ee;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: #aacc00;
}

.footer-bottom {
  border-top: 1px solid #223322;
  text-align: center;
  padding: 15px 10px;
  font-size: 13px;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-social {
  display: flex;
  gap: 10px;
  padding-left: 0;
  list-style: none;
}

.footer-social li img {

}

.footer-social li img:hover {
  filter: brightness(0) invert(0.6) sepia(1) hue-rotate(90deg) saturate(5);
}

@media screen and (max-width: 768px){
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
@media screen and (max-width: 480px){
  .footer-container {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
  }
}


img {
    vertical-align: middle !important;
    border-style: none !important;
}

dl, ol, ul {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}