/* =========================================
   LUXURY CITY TAXI SECTION
========================================= */

.city-taxi-section {
  padding: 60px 20px 60px;
  background: #f8f9fc;
  position: relative;
}

/* Gold Accent Line */
.city-taxi-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: #c8a95b;
}

/* Container */
.city-container {
  max-width: 1200px;
  margin: auto;
}

/* GRID LAYOUT */
.city-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 100px;
  align-items: center;
}

/* =========================================
   TEXT CONTENT
========================================= */

.city-badge {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c8a95b;
  font-weight: 600;
  margin-bottom: 25px;
}

.city-content h2 {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
  color: #111827;
}

.city-content h2 span {
  color: #c8a95b;
}

.city-lead {
  font-size: 19px;
  font-weight: 500;
  color: #1f2937;
  line-height: 1.8;
  margin-bottom: 20px;
}

.city-content p {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.9;
  margin-bottom: 35px;
}

/* SERVICE LIST */

.city-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.city-list li {
  font-size: 16px;
  margin-bottom: 16px;
  color: #374151;
  padding-left: 25px;
  position: relative;
}

.city-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #c8a95b;
  font-size: 20px;
  top: -2px;
}

/* BUTTON */

.city-btn {
  display: inline-block;
  padding: 16px 40px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  background: #111827;
  color: #fff;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.city-btn:hover {
  background: #c8a95b;
  color: #111;
  transform: translateY(-4px);
}

/* =========================================
   IMAGE
========================================= */

.city-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.08);
  transition: 0.5s ease;
}

.city-image img:hover {
  transform: scale(1.04);
}

/* =========================================
   TRUST BAR
========================================= */

.city-trust {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 30px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}

.trust-item {
  font-size: 15px;
  font-weight: 500;
  color: #374151;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 992px) {

  .city-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .city-content h2 {
    font-size: 32px;
  }

  .city-trust {
    margin-top: 50px;
    gap: 20px;
  }

  .trust-item {
    width: 100%;
    text-align: center;
  }
}
/* =========================================
   WHATSAPP BUTTON - PREMIUM STYLE
========================================= */

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 45px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 60px;
  text-decoration: none;
  letter-spacing: 1px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Subtle Shine Effect */
.whatsapp-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255,255,255,0.3);
  transform: skewX(-25deg);
  transition: 0.6s;
}

.whatsapp-btn:hover::before {
  left: 130%;
}

/* Hover Effect */
.whatsapp-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(37, 211, 102, 0.6);
}

/* Optional Icon Style */
.whatsapp-btn .wa-icon {
  font-size: 18px;
}

/* =========================================
   MOBILE IMPROVEMENT
========================================= */

@media (max-width: 600px) {
  .whatsapp-btn {
    width: 100%;
    justify-content: center;
    padding: 16px 25px;
    font-size: 14px;
  }
}
/* =========================================
   MOBILE FIXED WHATSAPP BUTTON
========================================= */

.mobile-wa-btn {
  display: none; /* hidden on desktop */
}

/* Mobile Only */
@media (max-width: 768px) {

  .mobile-wa-btn {
    position: fixed;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 500px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    text-decoration: none;
    padding: 16px 20px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
    z-index: 9999;
    animation: pulseWhatsApp 2s infinite;
  }

  .mobile-wa-btn .wa-icon {
    font-size: 18px;
  }

}

/* Pulse Animation */
@keyframes pulseWhatsApp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}
