* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  background: #f5f9fd;
  color: #1f2937;
}

/* ================= NAVBAR ================= */
.navbar {
  background: linear-gradient(90deg, #0b5ed7, #0d6efd);
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-weight: 700;
  font-size: 18px;
}

.logo img {
  width: 34px;
  height: 34px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  margin: 0 10px;
  font-weight: 500;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-phone {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.nav-book {
  background: #22c55e;
  color: white;
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
}

/* ================= HERO ================= */
.hero {
  /*background: linear-gradient(180deg, #e3f1ff, #ffffff);*/
  background: url(../img/banner2.png) fixed no-repeat;
  padding: 70px 16px 40px;
}

.hero-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
  align-items: center;
}

.hero-text h1 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #0b5ed7;
}

.hero-text p {
  font-size: 16px;
  color: #374151;
}

.hero-buttons {
  margin: 18px 0;
}

.btn-green,
.btn-blue {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  margin-right: 10px;
}

.btn-green {
  background: #22c55e;
  color: white;
}

.btn-blue {
  background: #0d6efd;
  color: white;
}

.hero-badges {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
  margin-top: 10px;
}

.hero-image img {
  max-width: 100%;
}

/* ================= SERVICES ================= */
.services {
  padding: 50px 16px;
  text-align: center;
}

.services h2 {
  font-size: 28px;
  margin-bottom: 30px;
}

.service-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.service-card {
  background: white;
  border-radius: 14px;
  padding: 18px 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  font-weight: 600;
}

.service-card img {
  width: 100%;
  height: 110px;
  object-fit: contain;
  border-radius: 25px;
}

.service-card h4 {
  margin: 10px 0 6px;
}

.service-card a {
  margin-top: 8px;
  padding: 8px 14px;
  border-radius: 6px;
  border: none;
  background: #0d6efd;
  color: white;
  font-weight: 600;
  cursor: pointer;
}

/* ================= BOOKING ================= */
.booking-section {
  background: #eef6ff;
  padding: 50px 16px;
  text-align: center;
}

.booking-section h2 {
  font-size: 26px;
  margin-bottom: 20px;
}

.booking-form {
  max-width: 1000px;
  margin: auto;
  background: white;
  padding: 20px;
  border-radius: 14px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

.booking-form input,
.booking-form select {
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #cbd5e1;
  font-size: 14px;
}

.booking-form button {
  background: #22c55e;
  border: none;
  border-radius: 6px;
  padding: 12px;
  color: white;
  font-weight: 600;
  cursor: pointer;
}

/* ================= WHY US ================= */
.why-us {
  padding: 50px 16px;
  text-align: center;
}

.why-us h2 {
  font-size: 26px;
  margin-bottom: 24px;
}

.why-grid {
  max-width: 1000px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.why-card {
  background: white;
  padding: 18px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.05);
  font-weight: 600;
}

/* ================= REVIEWS ================= */
.reviews {
  background: #f8fafc;
  padding: 50px 16px;
  text-align: center;
}

.reviews h2 {
  font-size: 26px;
  margin-bottom: 24px;
}

.review-grid {
  max-width: 900px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.review-card {
  background: white;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.review-image-name {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.review-image-name img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.review-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.review-content p {
  margin: 0;
}

.review-card strong {
  display: block;
  margin-top: 8px;
}

/* ================= AREAS ================= */
.areas {
  background: linear-gradient(180deg, #e3f1ff, #ffffff);
  padding: 50px 16px;
  text-align: center;
}

.areas h2 {
  font-size: 26px;
  margin-bottom: 20px;
}

.area-grid {
  max-width: 900px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.area-grid span {
  background: #0d6efd;
  color: white;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 14px;
}

/* Area Carousel */
.area-section { padding: 40px 20px; background: #eaf4ff; text-align: center; }
.carousel-wrapper { position: relative; display: flex; align-items: center; max-width: 100%; margin: auto; }
.area-carousel { display: flex; gap: 12px; overflow-x: auto; scroll-behavior: smooth; padding: 10px; scrollbar-width: none; }
.area-carousel::-webkit-scrollbar { display: none; }
.area-chip { background: #0d5ed7; color: #fff; padding: 8px 16px; border-radius: 20px; font-size: 14px; white-space: nowrap; }
.carousel-btn { background: #0d5ed7; color: #fff; border: none; width: 36px; height: 36px; border-radius: 50%; cursor: pointer; font-size: 18px; display: flex; align-items: center; justify-content: center; }
.carousel-btn.left { margin-right: 8px; }
.carousel-btn.right { margin-left: 8px; }

/* ================= CONTACT ================= */


/* REMOVE flex from container */
#contact {
  padding: 0px 0;
  background: linear-gradient(180deg, #e3f1ff, #ffffff);
}

#contact .contact-img {
  max-width: 100%;
  height: auto;
}

#contact .btn-custom {
  margin: 30px 0;
  background: transparent;
  border: 2px solid #1e3ce6;
}

#contact .btn-custom:hover {
  color: #1f386e;
  background: #fff;
}


@media (max-width: 767px) {
  #contact .section-title h2 {
    text-align: center;
  }
}

/* Contact */
.contact-section {
  background: #f6faff;
  padding: 60px 20px;
  text-align: center;
}

.contact-section h2 {
  color: #0a4fa3;
  font-size: 28px;
  margin-bottom: 30px;
}

.contact-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.contact-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  flex-shrink: 0;
}

.contact-icon.blue {
  background: #1e73ff;
}

.contact-icon.green {
  background: #25d366;
}

.contact-title {
  font-weight: 600;
  color: #1a2c4f;
  margin-bottom: 4px;
}

.contact-card a {
  color: #0a4fa3;
  font-weight: 600;
  text-decoration: none;
}

.contact-card span {
  display: block;
  font-size: 13px;
  color: #6b7c93;
}

/* Map Card */
.map-card {
  padding: 0;
  overflow: hidden;
  position: relative;
}

.map-card iframe {
  width: 100%;
  height: 140px;
  border: none;
}

.direction-btn {
  position: absolute;
  right: 10px;
  bottom: 10px;
  background: #1e73ff;
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  text-decoration: none;
}

/* Tablet */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 500px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .map-card iframe {
    height: 180px;
  }
}


/* ================= FOOTER ================= */
.footer {
  background: linear-gradient(90deg, #0b5ed7, #0d6efd);
  color: white;
  text-align: center;
  padding: 14px;
}

/* ================= FLOATING BAR ================= */
.floating-bar {
  position: fixed;
  bottom: 10px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 999;
}

.float-call,
.float-whatsapp,
.float-book {
  padding: 10px 14px;
  border-radius: 8px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.float-call { background: #22c55e; }
.float-whatsapp { background: #25d366; }
.float-book { background: #0d6efd; }

/* ================= POPUP ================= */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.popup-box {
  background: white;
  border-radius: 14px;
  padding: 20px;
  width: 90%;
  max-width: 420px;
}

.popup-box h2 {
  margin-top: 0;
  text-align: center;
}

.popup-close {
  width: 100%;
  margin-top: 10px;
  padding: 10px;
  border-radius: 6px;
  border: none;
  background: #6b7280;
  color: white;
  font-weight: 600;
  cursor: pointer;
}

/* ================= PAGES ================= */
.page {
  max-width: 900px;
  margin: auto;
  padding: 40px 16px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-image {
    display: none;
  }
}

@media (max-width: 600px) {
  .nav-links { display: none; }
  .hero-text h1 { font-size: 26px; }
  .nav-actions { display: none;}
  .contact-img {display: none;}
}
