* {
  font-family: "Montserrat", sans-serif;
}

html {
  scroll-behavior: smooth;
}


/* =========================================== */
/* =========================================== */
:root {
  --bg: #0f172a;
  --glass: rgba(255, 255, 255, 0.08);
  --blur: blur(18px);
  --primary: #7c3aed;
  --accent: #06b6d4;
  --white: #fff;
}

/* NAVBAR WRAPPER */
.nav-main {
  position: fixed;
  top: 25px;
  width: 100%;
  z-index: 999;
  transition: all 0.5s ease;
}

/* INNER CARD */
.nav-inner {
  max-width: 1200px;
  margin: auto;
  padding: 14px 30px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  /* background: var(--glass); */
  background-color: #000;
  backdrop-filter: var(--blur);

  border-radius: 60px;
  border: 1px solid rgba(255, 255, 255, 0.15);

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);

  transition: all 0.5s ease;
}

/* LOGO */
.logo {
  color: var(--white);
  font-size: 22px;
  font-weight: 600;
}

/* MENU */
.menu {
  display: flex;

  gap: 30px;
  list-style: none;
}

.menu a {
  color: #e2e8f0;
  text-decoration: none;
  position: relative;

}

/* HOVER GLOW */
.menu a:hover {
  color: var(--accent);
  text-shadow: 0 0 10px var(--accent);
}

/* DROPDOWN */
.has-dropdown {
  position: relative;
}

.mega-dropdown {
  position: absolute;
  top: 150%;
  left: -40px;
  background: rgba(15, 23, 42, 0.95);
  padding: 15px;
  width: 200px;
  border-radius: 8px;
  display: none;
  flex-direction: column;
  gap: 5px;
}

.has-dropdown:hover .mega-dropdown {
  display: flex;
}

/* CTA */
.cta-btn {
  background: linear-gradient(45deg, var(--primary), var(--accent));
  padding: 8px 18px;
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
}

/* HAMBURGER */
.hamburger {
  width: 35px;
  height: 30px;
  border: none;
  background: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger span {
  height: 2px;
  background: white;
  border-radius: 5px;
}

/* RIGHT */
.right-area {
  display: flex;
  gap: 15px;
  align-items: center;
}

/* STICKY ANIMATION 🔥 */
.nav-main.sticky {
  top: 0;
}

.nav-main.sticky .nav-inner {
  max-width: 100%;
  border-radius: 0;

  background: #ffffff;

  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);

  animation: slideDown 0.5s ease;
}

/* TEXT DARK */
.nav-main.sticky .logo {
  color: #111;
}

.nav-main.sticky .menu a {
  color: #111;
}

/* HOVER */
.nav-main.sticky .menu a:hover {
  color: var(--primary);
  text-shadow: none;
}

/* DEFAULT (floating state) */
.hamburger span {
  background: #fff;

}

/* 🔥 STICKY → DARK HAMBURGER */
.nav-main.sticky .hamburger span {
  background: #0f172a;
}


/* DEFAULT (FLOATING - DARK UI) */
.mega-dropdown {
  background: rgba(15, 23, 42, 0.95);
}

.mega-dropdown a {
  color: #e2e8f0;
}

/* 🔥 STICKY → LIGHT DROPDOWN */
.nav-main.sticky .mega-dropdown {
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.nav-main.sticky .mega-dropdown a {
  color: #0f172a;
}

/* HOVER */
.nav-main.sticky .mega-dropdown a:hover {
  background: #f1f5f9;
  color: var(--primary);
}


@keyframes slideDown {
  from {
    transform: translateY(-40px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* MOBILE */
@media (max-width: 992px) {
  .menu {
    display: none;
  }
}

/* OFFCANVAS BASE */
.ultra-offcanvas {
  background: linear-gradient(160deg, #020617, #0f172a);
  color: #fff;
  width: 320px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

/* HEADER */
.ultra-offcanvas .offcanvas-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* MENU */
.off-menu {
  list-style: none;
  padding: 10px 5px;
}

/* MENU ITEM */
.off-menu li {
  margin-bottom: 10px;
}

/* LINKS */
.off-menu a {
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 12px 15px;
  border-radius: 12px;

  color: #e2e8f0;
  text-decoration: none;

  transition: all 0.3s ease;
}

/* HOVER EFFECT 🔥 */
.off-menu a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transform: translateX(5px);
}

/* ICON STYLE */
.off-menu a i {
  font-size: 16px;
  color: #06b6d4;
}

/* DROPDOWN HEAD */
.off-head {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 12px 15px;
  border-radius: 12px;

  cursor: pointer;
  color: #e2e8f0;

  transition: 0.3s;
}

/* HOVER */
.off-head:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* ARROW */
.off-head::after {
  content: "⌄";
  transition: 0.3s;
}

/* ROTATE ARROW */
.off-drop.active .off-head::after {
  transform: rotate(180deg);
}

/* DROPDOWN BODY */
.off-drop ul {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  padding-left: 10px;
}

/* ACTIVE */
.off-drop.active ul {
  max-height: 200px;
}

/* SUB LINKS */
.off-drop ul li a {
  font-size: 14px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.03);
}

/* ANIMATION ENTRY */
.off-menu li {
  opacity: 0;
  transform: translateX(20px);
  animation: slideIn 0.4s forwards;
}

.off-menu li:nth-child(1) {
  animation-delay: 0.1s;
}

.off-menu li:nth-child(2) {
  animation-delay: 0.2s;
}

.off-menu li:nth-child(3) {
  animation-delay: 0.3s;
}

.off-menu li:nth-child(4) {
  animation-delay: 0.4s;
}

.off-menu li:nth-child(5) {
  animation-delay: 0.5s;
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ==================================================== */
/* ==================================================== */



/* footer css  */
/* ---------- ROOT CSS VARIABLES ---------- */
:root {
  /* Primary Colors - Modern Earthy & Luxury */
  --footer-bg-dark: #0a1f2e;
  --footer-bg-gradient-start: #0c2a3b;
  --footer-bg-gradient-end: #061520;
  --primary-gold: #c9a87b;
  --primary-gold-light: #e0c8a8;
  --primary-green: #2d6a4f;
  --primary-green-light: #40916c;
  --text-light: #f1f5f9;
  --text-muted: #b9c7d4;
  --border-subtle: rgba(201, 168, 123, 0.25);
  --card-bg-glass: rgba(255, 255, 255, 0.05);
  --hover-transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  --shadow-sm: 0 8px 20px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 12px 28px rgba(0, 0, 0, 0.25);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* dummy content to showcase footer at bottom */
.demo-space {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, #f1f5f9 0%, #e9eef3 100%);
}

.demo-space h2 {
  font-size: 1.8rem;
  color: #1e293b;
  font-weight: 600;
}

.demo-space p {
  color: #475569;
  margin-top: 0.5rem;
}

/* ---------- FOOTER STYLES (UNIQUE & ATTRACTIVE) ---------- */
.property-footer {
  background: linear-gradient(135deg, var(--footer-bg-gradient-start), var(--footer-bg-gradient-end));
  position: relative;
  color: var(--text-light);
  font-family: 'Inter', sans-serif;
  border-top: 1px solid var(--border-subtle);
  overflow: hidden;
}

/* decorative abstract shape */
.property-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(201, 168, 123, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 3.5rem 2rem 2rem;
  position: relative;
  z-index: 2;
}

/* main grid layout */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

/* brand section */
.footer-brand {
  max-width: 320px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.2rem;
}


.logo-text {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  background: linear-gradient(120deg, #fff, var(--primary-gold-light));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.brand-desc {
  color: var(--text-muted);
  line-height: 1.5;
  font-size: 0.95rem;
  margin: 1rem 0 1.2rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--card-bg-glass);
  border-radius: 50%;
  color: var(--primary-gold-light);
  font-size: 1.2rem;
  transition: var(--hover-transition);
  text-decoration: none;
  border: 1px solid rgba(201, 168, 123, 0.3);
}

.social-icon:hover {
  background: var(--primary-gold);
  color: #0a1f2e;
  transform: translateY(-4px);
  border-color: var(--primary-gold);
}

/* footer headings */
.footer-heading {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.4rem;
  position: relative;
  display: inline-block;
  letter-spacing: -0.2px;
}

.footer-heading:after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary-gold);
  border-radius: 3px;
}

/* links list */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.85rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--hover-transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
}

.footer-links a i {
  font-size: 0.8rem;
  color: var(--primary-gold);
  transition: transform 0.2s;
}

.footer-links a:hover {
  color: var(--primary-gold-light);
  transform: translateX(5px);
}

.footer-links a:hover i {
  transform: translateX(3px);
}

/* contact info */
.contact-info {
  list-style: none;
}

.contact-info li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-info li i {
  width: 28px;
  height: 28px;
  background: var(--card-bg-glass);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  color: var(--primary-gold);
  font-size: 0.9rem;
}

/* newsletter section - unique & attractive */
.newsletter-area {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(2px);
  border-radius: 28px;
  padding: 1rem 1.2rem 1.4rem;
  border: 1px solid rgba(201, 168, 123, 0.2);
  transition: var(--hover-transition);
}

.newsletter-area:hover {
  border-color: rgba(201, 168, 123, 0.5);
  background: rgba(255, 255, 255, 0.06);
}

.newsletter-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.8rem;
}

.newsletter-head i {
  font-size: 1.8rem;
  color: var(--primary-gold);
}

.newsletter-head h3 {
  font-size: 1.2rem;
  font-weight: 700;
}

.newsletter-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.newsletter-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(201, 168, 123, 0.3);
  padding: 0.8rem 1rem;
  border-radius: 60px;
  font-size: 0.85rem;
  color: white;
  outline: none;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}

.newsletter-input:focus {
  border-color: var(--primary-gold);
  background: rgba(255, 255, 255, 0.15);
}

.newsletter-input::placeholder {
  color: #b9c7d4;
}

.btn-subscribe {
  background: var(--primary-gold);
  border: none;
  padding: 0 1.6rem;
  border-radius: 60px;
  font-weight: 600;
  font-size: 0.85rem;
  color: #0a1f2e;
  cursor: pointer;
  transition: var(--hover-transition);
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
}

.btn-subscribe:hover {
  background: var(--primary-gold-light);
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(201, 168, 123, 0.4);
}

/* bottom bar */
.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.8rem;
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.legal-links {
  display: flex;
  gap: 1.8rem;
  flex-wrap: wrap;
}

.legal-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.legal-links a:hover {
  color: var(--primary-gold);
}

/* device friendly (mobile) */
@media (max-width: 800px) {
  .footer-container {
    padding: 2.5rem 1.5rem 1.8rem;
  }

  .footer-grid {
    gap: 2rem;
  }

  .footer-brand {
    max-width: 100%;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .btn-subscribe {
    justify-content: center;
    padding: 0.8rem;
  }
}

@media (max-width: 550px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .legal-links {
    justify-content: center;
  }

  .footer-heading:after {
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
  }

  .footer-heading {
    text-align: center;
    display: block;
  }

  .footer-links {
    text-align: center;
  }

  .footer-links a {
    justify-content: center;
  }

  .contact-info li {
    justify-content: center;
  }

  .newsletter-area {
    text-align: center;
  }

  .newsletter-head {
    justify-content: center;
  }
}

/* subtle floating effect */
.footer-brand, .footer-links-col, .contact-col, .newsletter-area {
  animation: fadeInUp 0.5s ease backwards;
}

.footer-brand {
  animation-delay: 0.05s;
}

.footer-links-col {
  animation-delay: 0.1s;
}

.contact-col {
  animation-delay: 0.15s;
}

.newsletter-area {
  animation-delay: 0.2s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================================================== */
/* ================================================== */