body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: #f6f8fc;
  color: #111;
}

/* ================= HEADER ================= */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px;
  background: rgba(11, 31, 59, 0.95);
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

/* ================= LOGO ================= */

/* ================= PREMIUM LOGO ================= */

.logo {
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  min-width: fit-content;
}

/* IMAGE */
.logo img {
  width: auto;
  height: 58px;
  object-fit: contain;
  display: block;
  transition: 0.4s ease;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.15));
}

/* HOVER */
.logo:hover img {
  transform: scale(1.04);
}

/* TEXT */
.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* MAIN TITLE */
.logo-text h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 1px;
  color: white;
  line-height: 1;
}

/* SUBTITLE */
.logo-text span {
  margin-top: 4px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

/* MOBILE */
@media(max-width:768px){

  .logo img{
    height: 48px;
  }

  .logo-text h2{
    font-size: 18px;
  }

  .logo-text span{
    font-size: 9px;
  }

}
/* NAV */
nav a {
  color: white;
  margin-left: 18px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

nav a:hover {
  color: #d4af37;
}

/* ================= HERO CAROUSEL ================= */
.hero {
  height: 520px;
  position: relative;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.2s ease, transform 1.5s ease;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
}

/* DARK OVERLAY */
.overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 60px 40px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0.1),
    transparent
  );
  color: white;
}
/* ================= ABOUT SECTION ================= */

.about-section {
  padding: 100px 40px;
  background: linear-gradient(to bottom, #ffffff, #f6f9ff);
}

.about-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* IMAGE SIDE */
.about-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

/* CONTENT */
.about-content {
  text-align: left;
}

.tag {
  display: inline-block;
  background: rgba(37,99,235,0.1);
  color: #2563EB;
  padding: 8px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.about-content h2 {
  font-size: 46px;
  line-height: 1.2;
  margin-bottom: 25px;
  color: #0B1F3B;
}

.about-content p {
  font-size: 16px;
  line-height: 1.9;
  color: #475569;
  margin-bottom: 20px;
}

.about-content .intro {
  font-size: 18px;
  color: #111827;
  font-weight: 500;
}

/* STATS */
.about-stats {
  display: flex;
  gap: 20px;
  margin-top: 35px;
}

.stat {
  background: white;
  padding: 22px;
  border-radius: 18px;
  flex: 1;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: 0.3s ease;
}

.stat:hover {
  transform: translateY(-6px);
}

.stat h3 {
  font-size: 28px;
  margin: 0;
  color: #2563EB;
}

.stat p {
  margin-top: 8px;
  font-size: 14px;
  color: #64748B;
}

/* ================= MOBILE ================= */

@media(max-width: 950px) {

  .about-container {
    grid-template-columns: 1fr;
  }

  .about-image img {
    height: 400px;
  }

  .about-content h2 {
    font-size: 34px;
  }

  .about-stats {
    flex-direction: column;
  }

}

/* ================= LOCATIONS SECTION ================= */

.locations-section {
  padding: 110px 40px;
  background: linear-gradient(to bottom, #f8fbff, #eef4ff);
}

/* HEADER */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: auto;
  margin-bottom: 60px;
}

.small-tag {
  display: inline-block;
  background: rgba(212,175,55,0.15);
  color: #D4AF37;
  padding: 8px 16px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
}

.section-header h2 {
  font-size: 48px;
  margin-top: 20px;
  color: #0B1F3B;
}

.section-header p {
  font-size: 17px;
  color: #64748B;
  line-height: 1.8;
}

/* GRID */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 30px;
  max-width: 1350px;
  margin: auto;
}

/* CARD */
.location-card {
  position: relative;
  height: 600px;
  overflow: hidden;
  border-radius: 28px;
  cursor: pointer;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

/* IMAGE */
.location-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

/* OVERLAY */
.location-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 40px;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.88),
    rgba(0,0,0,0.35),
    transparent
  );
  color: white;
}

/* HOVER EFFECT */
.location-card:hover img {
  transform: scale(1.08);
}

/* BADGE */
.location-badge {
  display: inline-block;
  background: #D4AF37;
  color: black;
  padding: 8px 14px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 18px;
}

.location-badge.blue {
  background: #2563EB;
  color: white;
}

/* TITLE */
.location-overlay h3 {
  font-size: 34px;
  margin: 0;
  margin-bottom: 15px;
}

/* DESCRIPTION */
.location-overlay p {
  line-height: 1.8;
  font-size: 15px;
  opacity: 0.95;
  margin-bottom: 25px;
}

/* BUTTON */
.location-btn {
  display: inline-block;
  text-decoration: none;
  color: white;
  background: rgba(255,255,255,0.12);
  padding: 12px 20px;
  border-radius: 10px;
  backdrop-filter: blur(8px);
  transition: 0.3s;
}

.location-btn:hover {
  background: #2563EB;
}

/* ================= MOBILE ================= */

@media(max-width: 900px) {

  .section-header h2 {
    font-size: 36px;
  }

  .location-card {
    height: 500px;
  }

}
.overlay h1 {
  font-size: 42px;
  margin: 0;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.overlay p {
  font-size: 18px;
  margin-top: 10px;
  opacity: 0.9;
}

/* ================= SECTIONS ================= */
.section {
  padding: 80px 20px;
  text-align: center;
}

.section h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

/* ================= PROPERTY CARDS ================= */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  margin-top: 30px;
  padding: 0 20px;
}

.card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transition: 0.4s ease;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

.card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.card h3 {
  padding: 15px;
  font-size: 18px;
}

/* ================= CTA BUTTON ================= */
.cta {
  display: inline-block;
  margin-top: 20px;
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  color: white;
  padding: 14px 26px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.cta:hover {
  transform: scale(1.05);
}

/* ================= DARK SECTION ================= */
.dark {
  background: #0b1f3b;
  color: white;
}

/* ================= REVIEWS ================= */
/* ================= REVIEWS SECTION ================= */

.reviews-section {
  padding: 110px 40px;
  background:
    linear-gradient(
      to bottom,
      #0B1F3B,
      #10294d
    );
  color: white;
  position: relative;
  overflow: hidden;
}

/* HEADER */
.reviews-header {
  text-align: center;
  max-width: 800px;
  margin: auto;
  margin-bottom: 70px;
}

.reviews-tag {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  color: #D4AF37;
}

.reviews-header h2 {
  font-size: 50px;
  margin-top: 20px;
  margin-bottom: 15px;
}

.reviews-header p {
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  font-size: 17px;
}

/* GRID */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  max-width: 1300px;
  margin: auto;
}

/* REVIEW CARD */
.review-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 26px;
  padding: 35px;
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* HOVER EFFECT */
.review-card:hover {
  transform: translateY(-10px);
  background: rgba(255,255,255,0.12);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

/* FEATURED CARD */
.review-card.featured {
  border: 1px solid rgba(212,175,55,0.5);
  transform: scale(1.03);
}

/* TOP */
.review-top {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.review-top img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255,255,255,0.15);
}

.review-top h3 {
  margin: 0;
  font-size: 20px;
}

.review-top span {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
}

/* REVIEW TEXT */
.review-card p {
  line-height: 1.9;
  font-size: 15px;
  color: rgba(255,255,255,0.88);
}

/* STARS */
.stars {
  margin-top: 25px;
  color: #FFD700;
  font-size: 20px;
  letter-spacing: 3px;
}

/* ================= MOBILE ================= */

@media(max-width: 900px) {

  .reviews-header h2 {
    font-size: 38px;
  }

  .review-card.featured {
    transform: none;
  }

}
/* ================= CONTACT SECTION ================= */

.contact-section {
  padding: 120px 40px;
  background:
    linear-gradient(
      135deg,
      #f8fbff,
      #eef4ff
    );
}

/* CONTAINER */
.contact-container {
  max-width: 1350px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

/* LEFT SIDE */
.contact-info {
  text-align: left;
}

.contact-tag {
  display: inline-block;
  background: rgba(37,99,235,0.1);
  color: #2563EB;
  padding: 8px 16px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
}

.contact-info h2 {
  font-size: 54px;
  line-height: 1.2;
  margin-top: 22px;
  margin-bottom: 20px;
  color: #0B1F3B;
}

.contact-info p {
  font-size: 17px;
  color: #64748B;
  line-height: 1.9;
  max-width: 650px;
}

/* CONTACT CARDS */
.contact-cards {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-card {
  background: white;
  padding: 22px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
  transition: 0.3s ease;
}

.contact-card:hover {
  transform: translateX(8px);
}

.contact-card .icon {
  width: 55px;
  height: 55px;
  border-radius: 14px;
  background: linear-gradient(135deg,#2563EB,#00c6ff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.contact-card h4 {
  margin: 0;
  color: #0B1F3B;
}

.contact-card p {
  margin: 5px 0 0;
  color: #64748B;
  font-size: 15px;
}

/* ================= FORM BOX ================= */

.contact-form-box {
  background: white;
  padding: 45px;
  border-radius: 28px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

.contact-form-box h3 {
  font-size: 30px;
  margin-bottom: 25px;
  color: #0B1F3B;
}

/* FORM */
form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

form input,
form textarea {
  padding: 16px;
  border-radius: 14px;
  border: 1px solid #dbe4f0;
  font-family: Inter;
  font-size: 15px;
  outline: none;
  transition: 0.3s;
}

form input:focus,
form textarea:focus {
  border-color: #2563EB;
  box-shadow: 0 0 0 4px rgba(37,99,235,0.1);
}

form textarea {
  height: 130px;
  resize: none;
}
/* GOOGLE FORM */
.contact-form-box iframe {
  width: 100%;
  border: none;
  border-radius: 18px;
  background: white;
}
/* BUTTON */
.send-btn {
  text-decoration: none;
  background:
    linear-gradient(
      135deg,
      #25D366,
      #0ea64b
    );
  color: white;
  padding: 16px;
  border-radius: 14px;
  text-align: center;
  font-weight: 700;
  margin-top: 10px;
  transition: 0.3s ease;
}

.send-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(37,211,102,0.3);
}

/* ================= MOBILE ================= */

@media(max-width: 950px) {

  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-info h2 {
    font-size: 40px;
  }

}
/* ================= FOOTER ================= */
/* ================= FOOTER ================= */

.footer {
  background: #071426;
  color: white;
  padding-top: 80px;
  margin-top: 0;
  position: relative;
}

/* CONTAINER */
.footer-container {
  max-width: 1350px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  padding: 0 40px 60px;
}

/* BRAND */
.footer-brand p {
  color: rgba(255,255,255,0.7);
  line-height: 1.9;
  margin-top: 18px;
  max-width: 420px;
}

/* LOGO */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo img {
  width: 48px;
}

.footer-logo h3 {
  margin: 0;
  font-size: 24px;
}

/* SOCIALS */
.socials {
  margin-top: 25px;
  display: flex;
  gap: 12px;
}

.socials a {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  transition: 0.3s ease;
  font-size: 18px;
}

.socials a:hover {
  background: #2563EB;
  transform: translateY(-4px);
}

/* LINKS */
.footer-links h4,
.footer-contact h4 {
  margin-bottom: 22px;
  font-size: 18px;
}

.footer-links a {
  display: block;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  margin-bottom: 14px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #D4AF37;
  transform: translateX(4px);
}

/* CONTACT */
.footer-contact p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 14px;
}

/* BUTTON */
.footer-btn {
  display: inline-block;
  margin-top: 18px;
  text-decoration: none;
  background:
    linear-gradient(
      135deg,
      #25D366,
      #0ea64b
    );
  color: white;
  padding: 14px 22px;
  border-radius: 14px;
  font-weight: 700;
  transition: 0.3s ease;
}

.footer-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(37,211,102,0.3);
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 25px;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255,255,255,0.55);
  margin: 0;
}

/* ================= FLOATING WHATSAPP ================= */

.floating-whatsapp {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background:
    linear-gradient(
      135deg,
      #25D366,
      #0ea64b
    );
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 15px 40px rgba(37,211,102,0.4);
  z-index: 9999;
  animation: pulse 2s infinite;
  transition: 0.3s ease;
}

.floating-whatsapp:hover {
  transform: scale(1.08);
}

/* PULSE EFFECT */
@keyframes pulse {

  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);
  }

}

/* ================= MOBILE ================= */

@media(max-width: 950px) {

  .footer-container {
    grid-template-columns: 1fr;
  }

}
/* ================= FACEBOOK BUTTON ================= */

.facebook-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  padding: 16px 28px;

  background:
    linear-gradient(
      135deg,
      #1877F2,
      #0d5ed7
    );

  color: white;
  text-decoration: none;

  border-radius: 14px;

  font-size: 16px;
  font-weight: 700;

  transition: 0.35s ease;

  box-shadow:
    0 15px 35px rgba(24,119,242,0.28);

  position: relative;
  overflow: hidden;
}

/* HOVER */
.facebook-btn:hover {
  transform: translateY(-4px);
  box-shadow:
    0 20px 45px rgba(24,119,242,0.35);
}

/* GLOW EFFECT */
.facebook-btn::before {

  content: "";

  position: absolute;
  top: 0;
  left: -120%;

  width: 100%;
  height: 100%;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,0.25),
      transparent
    );

  transition: 0.7s;
}

.facebook-btn:hover::before {
  left: 120%;
}