:root {
  --primary: #0f1f3d;
  --secondary: #ffffff;
  --accent: #1e293b;
  --light: #f8fafc;

  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background: var(--secondary);
  color: var(--accent);
}

/* ===== CITIES SECTION ===== */
.cities-section {
  padding: 100px 20px;
  background: #ffffff;
  color: #1e293b;
}

.cities-container {
  max-width: 1200px;
  margin: auto;
}

/* ===== HEADER (MATCH BOOKING HEADER STYLE) ===== */
.cities-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 70px;
}

.cities-header h2 {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #64748b; /* soft gray like booking header */
}

.cities-header h3 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  margin-top: 10px;
  color: #0f172a;
}

.cities-header p {
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.8;
  color: #64748b;
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.city-card {
  background: #0f1f3d;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: #ffffff;
  transition: all 0.35s ease;
  box-shadow:(rgba(15,31,61,0.85), rgba(15,31,61,0.85)),
}

.city-card:hover {
  transform: translateY(-8px);
  box-shadow: (rgba(15,31,61,0.85), rgba(15,31,61,0.85)),
}

.city-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.city-content {
  padding: 20px;
}

.city-content h4 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #ffffff;
}

.city-content p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .cities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cities-header h3 {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .cities-section {
    padding: 90px 16px;
  }

  .cities-grid {
    grid-template-columns: 1fr;
  }

  .cities-header h3 {
    font-size: 26px;
  }
}






/* ================= FOOTER ================= */
.site-footer {
  position: relative;
  background:
    linear-gradient(rgba(15,31,61,0.9), rgba(15,31,61,0.9)),
    url('hero.png') center/cover no-repeat;
  color: #ffffff;
  padding: 80px 20px 25px;
  font-family: var(--font-body);
  overflow: hidden;
}

/* OVERLAY */
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.35);
  z-index: 0;
}

/* CONTENT ABOVE OVERLAY */
.footer-container,
.footer-bottom {
  position: relative;
  z-index: 1;
}

/* ================= GRID ================= */
.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* works well with cities */
  gap: 40px;
}

/* ================= BRAND ================= */
.footer-logo {
  width: 150px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.8;
  opacity: 0.95;
}

/* ================= HEADINGS ================= */
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  margin-bottom: 16px;
  font-weight: 600;
  color: #ffffff;
}

/* ================= LINKS ================= */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #ffffff;
  font-size: 14px;
  text-decoration: none;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  opacity: 1;
  padding-left: 6px;
}

/* ================= CONTACT ================= */
/* ===== QUICK CONTACT STYLE ===== */
.footer-contact {
  margin-top: 10px;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  margin-bottom: 14px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  transition: all 0.35s ease;
}

.footer-contact li i {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 15px;
  color: #ffffff;
  flex-shrink: 0;
}

.footer-contact li a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
}

.footer-contact li:hover {
  background: rgba(255,255,255,0.18);
  transform: translateX(4px);
}

.footer-contact li:hover i {
  background: var(--primary);
}

/* MOBILE CENTERING */
@media (max-width: 600px) {
  .footer-contact li {
    justify-content: center;
    text-align: center;
  }
}


/* ================= SOCIAL ================= */
.footer-social {
  margin-top: 18px;
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.35s ease;
}

.footer-social a:hover {
  background: var(--primary);
  transform: translateY(-4px);
}

/* ================= BOTTOM BAR ================= */
.footer-bottom {
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 13px;
  opacity: 0.95;
}

.footer-bottom a {
  color: #ffffff;
  font-weight: 500;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* ================= RESPONSIVE ================= */

/* Tablets */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
    gap: 10px;
  }
}






