body {
    margin: 0;
    font-family: Arial, sans-serif;
}

* { box-sizing: border-box; }
body { margin:0; font-family: Arial, sans-serif; }

/* HEADER */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 14px 40px;
  background: rgba(11, 60, 93, 0.95);
  backdrop-filter: blur(8px);

  color: #ffffff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);

  transition: transform 0.35s ease, background 0.35s ease;
}

/* HIDE HEADER */
.header.hide {
  transform: translateY(-100%);
}

/* LOGO */
.logo-box {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.5px;
}

.logo-box img {
  width: 42px;
}

/* NAV */
.nav a {
  margin: 0 16px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  font-size: 18px;
  position: relative;
}

/* NAV HOVER UNDERLINE */
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #f7931e;
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

/* CTA */
.cta-btn {
  background: linear-gradient(135deg, #f7931e, #d97706);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(217,119,6,0.45);
}

/* SPACE FOR FIXED HEADER */
body {
  padding-top: 80px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav {
    display: none; /* can be replaced with hamburger later */
  }
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #ffffff;
  border-radius: 3px;
  transition: all 0.35s ease;
}

/* Responsive */
@media (max-width: 1024px) {

  .desktop-only {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 260px;
    height: calc(100vh - 70px);
    background: rgba(11, 60, 93, 0.98);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    padding: 30px;
    gap: 22px;
    transition: right 0.35s ease;
    box-shadow: -8px 0 30px rgba(0,0,0,0.35);
  }

  .nav.active {
    right: 0;
  }

  .nav a {
    font-size: 18px;
  }
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* HERO */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: white;
}

/* Slider wrapper */
.slides {
  position: relative;
  width: 100%;
}

/* Images */
.slide {
  width: 100%;
  height: auto;
  display: none;
  max-height: 90vh;          /* 🔥 controls height */
  object-fit: unset;
}

/* Active slide */
.slide.active {
  display: block;
}

/* OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;     /* PUSH CONTENT TO BOTTOM */
  align-items: center;           /* CENTER HORIZONTALLY */
  text-align: center;
  padding-bottom: 60px;          /* SPACE FROM BOTTOM */
  color: #ffffff;
  background: linear-gradient(
    rgba(13,27,42,0.25),
    rgba(13,27,42,0.25)
  );
}

/* TEXT */
.hero-overlay h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  max-width: 800px;
}

.hero-overlay p {
  /* margin-top: 1px; */
  font-size: 18px;
  color: #e2e8f0;
}

/* CTA BUTTONS */
.hero-actions {
  margin-top: 35px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-btn {
  padding: 14px 26px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

/* PRIMARY */
.hero-btn.primary {
  background: linear-gradient(135deg, #f7931e, #d97706);
  color: #ffffff;
}

.hero-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(217,119,6,0.4);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero {
    height: 80vh;
  }

  .hero-overlay p {
    font-size: 16px;
  }
}



/* SEARCH */
.search { padding:60px 20px; text-align:center; }
.search-box {
  display:flex;
  gap:10px;
  justify-content:center;
  flex-wrap:wrap;
}

.search-box input, select {
  padding:12px;
  width:200px;
}

/* PROPERTIES */
/* SECTION */
.properties {
  padding: 70px 30px;
  text-align: center;
  background: #f8fafc;
}

.properties h2 {
  font-size: 34px;
  margin-bottom: 40px;
  color: #0b3c5d;
}

/* GRID */
.grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* CARD */
.card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

/* IMAGE */
.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.card:hover img {
  transform: scale(1.08);
}

/* CONTENT */
.card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #0d1b2a;
  margin: 18px 18px 8px;
}

.card p {
  font-size: 14px;
  color: #64748b;
  margin: 0 18px 18px;
}

/* BUTTON */
.card button {
  margin: auto 18px 22px;
  padding: 12px 18px;
  border: none;
  border-radius: 25px;
  background: linear-gradient(135deg, #f7931e, #d97706);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.card button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(217,119,6,0.4);
}

/* ACTIVE (MOBILE TAP) */
.card button:active {
  transform: scale(0.96);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .properties h2 {
    font-size: 26px;
  }

  .card img {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .properties {
    padding: 50px 20px;
  }

  .card h3 {
    font-size: 18px;
  }

  .card p {
    font-size: 13px;
  }
}


/* WHY */
.why-us {
  background: #f8fafc;
  padding: 80px 40px;
  text-align: center;
}

.why-us h2 {
  font-size: 34px;
  margin-bottom: 40px;
  color: #0b3c5d;
}

.why-grid {
  max-width: 1000px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.why-card {
  background: #ffffff;
  padding: 22px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 500;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(0,0,0,0.12);
}

/* CTA */
.cta {
  background:#0d3b66;
  color:white;
  text-align:center;
  padding:60px;
}

/* .cta button {
  background:#f7931e;
  padding:14px 26px;
  border:none;
  border-radius:30px;
  color:white;
} */


/* FOOTER */

 .footer {
  background: #0d1b2a;
  color: #cfd8dc;
  padding: 60px 20px 0;
  font-family: Arial, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

/* BRAND */
.footer-brand img {
  width: 60px;
  margin-bottom: 10px;
}

.footer-brand h3 {
  color: #fff;
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
}

/* LINKS */
.footer-links h4,
.footer-contact h4 {
  color: #fff;
  margin-bottom: 15px;
}

.footer-links a {
  display: block;
  color: #cfd8dc;
  text-decoration: none;
  margin-bottom: 8px;
  font-size: 14px;
}

.footer-links a:hover {
  color: #f7931e;
}

/* CONTACT */
.footer-contact p {
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-contact a {
  color: #cfd8dc;
  text-decoration: none;
}

/* BUTTONS */
.footer-buttons {
  margin-top: 15px;
  display: flex;
  gap: 10px;
}

.call-btn,
.wa-btn {
  padding: 10px 18px;
  border-radius: 25px;
  font-size: 14px;
  text-decoration: none;
  font-weight: bold;
}

.call-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  background: linear-gradient(135deg, #f7931e, #d97706);
  color: #ffffff !important;

  padding: 13px 24px;
  border-radius: 999px;

  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.2px;

  text-decoration: none;
  cursor: pointer;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

/* ICON */
.call-btn i {
  font-size: 14px;
}

/* HOVER */
.call-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(217,119,6,0.45);
}

/* ACTIVE (TAP / CLICK) */
.call-btn:active {
  transform: translateY(0) scale(0.96);
  box-shadow: 0 6px 14px rgba(217,119,6,0.4);
}

/* LINK STATE RESET */
.call-btn:link,
.call-btn:visited,
.call-btn:focus,
.call-btn:active {
  color: #ffffff;
  text-decoration: none;
  outline: none;
}

/* ACCESSIBILITY */
.call-btn:focus-visible {
  box-shadow:
    0 0 0 3px rgba(247,147,30,0.4),
    0 12px 28px rgba(217,119,6,0.45);
}

.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #ffffff !important;

  padding: 13px 24px;
  border-radius: 999px;

  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.2px;

  text-decoration: none;
  cursor: pointer;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

/* ICON */
.wa-btn i {
  font-size: 16px;
}

/* HOVER */
.wa-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(18,140,126,0.45);
}

/* ACTIVE (TAP / CLICK) */
.wa-btn:active {
  transform: translateY(0) scale(0.96);
  box-shadow: 0 6px 14px rgba(18,140,126,0.4);
}

/* LINK STATE RESET */
.wa-btn:link,
.wa-btn:visited,
.wa-btn:focus,
.wa-btn:active {
  color: #ffffff;
  text-decoration: none;
  outline: none;
}

/* ACCESSIBILITY */
.wa-btn:focus-visible {
  box-shadow:
    0 0 0 3px rgba(37,211,102,0.4),
    0 12px 28px rgba(18,140,126,0.45);
}

/* BOTTOM */
.footer-bottom {
  margin-top: 40px;
  padding: 15px;
  text-align: center;
  background: #08131f;
  font-size: 13px;
}
.footer-text {
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.footer-text i {
  color: #ffffff;
}

/* MOBILE */
@media (max-width: 600px) {
  .footer-buttons {
    flex-direction: column;
  }
}


/* MOBILE */
@media(max-width:768px){
  .hero-overlay h1 { font-size:28px; }
}
