/* ===== Global Reset ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    overflow-x: hidden;
    background: #000;
}

/* ===== Background Video ===== */
.bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(35%) blur(2px);
    z-index: -1;
}

/* ===== HERO SECTION ===== */
.hero {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    padding-left: 6%;
    position: relative;
}

/* ===== Glassmorphism Main Card ===== */
.hero-card {
    max-width: 650px;
    padding: 40px;
    border-radius: 25px;
    backdrop-filter: blur(18px);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 0 35px rgba(0,0,0,0.5);
}

.headline {
    font-size: 48px;
    line-height: 58px;
    font-weight: 700;
    color: #fff;
}

.grad {
    background: linear-gradient(90deg,#00c6ff,#ff5e62);
    -webkit-background-clip: text;
    color: transparent;
    animation: glow 4s infinite linear;
}

@keyframes glow {
    0% { filter: drop-shadow(0 0 2px #00c6ff); }
    50% { filter: drop-shadow(0 0 6px #ff5e62); }
    100% { filter: drop-shadow(0 0 2px #00c6ff); }
}

.subtext {
    color: #ddd;
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 35px;
}

/* CTA Buttons */
.cta-group {
    display: flex;
    gap: 15px;
}

.cta-btn {
    padding: 12px 20px;
    border-radius: 12px;
    background: rgba(255,255,255,0.1);
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
    text-decoration: none;
    transition: 0.3s;
}

.cta-btn:hover {
    background: rgba(255,255,255,0.3);
}

.highlight {
    background: linear-gradient(90deg,#00c6ff,#ff5e62);
    border: none;
}

/* ===== Floating Contact Card ===== */
.contact-card {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    padding: 25px;
    width: 260px;
    border-radius: 20px;
    backdrop-filter: blur(18px);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
}

.contact-btn {
    display: block;
    margin-top: 15px;
    text-align: center;
    background: #00c6ff;
    padding: 10px 0;
    border-radius: 10px;
    color: black;
    text-decoration: none;
    font-weight: 600;
}

/* Responsive */
@media(max-width:900px) {
    .hero {
        flex-direction: column;
        padding-left: 0;
        text-align: center;
        padding-top: 20%;
    }

    .contact-card {
        position: static;
        transform: none;
        margin-top: 30px;
    }
}
/* ====================================
   🔵 LIVE REAL ESTATE STATS SECTION
======================================= */

.stats-section {
    padding: 120px 6%;
    color: #fff;
    text-align: center;
    position: relative;
}

.stats-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 18px;
    background: linear-gradient(90deg, #00c6ff, #ff5e62);
    -webkit-background-clip: text;
    color: transparent;
}

.stats-subtitle {
    color: #ccc;
    font-size: 18px;
    max-width: 650px;
    margin: 0 auto 60px;
}

/* Grid Layout */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 30px;
}

/* Glassmorphism Cards */
.stat-card {
    padding: 40px 20px;
    border-radius: 22px;
    backdrop-filter: blur(16px);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 0 25px rgba(0,0,0,0.6);
    text-align: center;
    transition: 0.35s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.14);
}

/* Animated Number */
.stat-number {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(90deg,#00c6ff,#ff5e62);
    -webkit-background-clip: text;
    color: transparent;
    animation: glowStats 4s infinite linear;
}

@keyframes glowStats {
    0% { filter: drop-shadow(0 0 2px #00c6ff); }
    50% { filter: drop-shadow(0 0 6px #ff5e62); }
    100% { filter: drop-shadow(0 0 2px #00c6ff); }
}

.stat-label {
    font-size: 16px;
    color: #ddd;
}

/* Responsive */
@media(max-width: 700px) {
    .stats-title {
        font-size: 32px;
    }
    .stat-number {
        font-size: 32px;
    }
}
/* ====================================
   🔵 ABOUT THE REALTOR (E-E-A-T)
======================================= */

.about-realtor {
    padding: 140px 6%;
    color: #fff;
}

.about-container {
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Image Box */
.about-img-box {
    flex: 1;
    min-width: 320px;
}

.about-img {
    width: 100%;
    border-radius: 30px;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.25);
    box-shadow: 0 0 40px rgba(0,0,0,0.7);
    filter: drop-shadow(0 0 25px rgba(0,198,255,0.4));
}

/* Content */
.about-content {
    flex: 1.4;
    min-width: 350px;
}

.about-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 18px;
    background: linear-gradient(90deg,#00c6ff,#ff5e62);
    -webkit-background-clip: text;
    color: transparent;
}

.about-text {
    color: #dedede;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Trust Bar */
.trust-bar {
    display: flex;
    gap: 25px;
    margin: 35px 0;
    flex-wrap: wrap;
}

.trust-item {
    padding: 18px 28px;
    border-radius: 20px;
    backdrop-filter: blur(12px);
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.18);
    text-align: center;
    font-size: 16px;
    color: #ddd;
}

.trust-item span {
    display: block;
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(90deg,#00c6ff,#ff5e62);
    -webkit-background-clip: text;
    color: transparent;
}

/* Badges */
.badges {
    display: flex;
    gap: 18px;
    margin-bottom: 35px;
}

.badges img {
    width: 70px;
    filter: brightness(0.95);
    opacity: 0.9;
}

/* CTA Button */
.about-btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 14px;
    background: linear-gradient(90deg,#00c6ff,#ff5e62);
    text-decoration: none;
    color: #000;
    font-weight: 700;
    transition: 0.3s ease;
}

.about-btn:hover {
    opacity: 0.8;
}

/* Responsive */
@media(max-width: 900px) {
    .about-container {
        text-align: center;
    }
    .trust-bar {
        justify-content: center;
    }
    .badges {
        justify-content: center;
    }
}
/* ======================================
   🔵 SERVICE AREAS — FUTURISTIC GRID
======================================= */

.service-areas {
    padding: 140px 6%;
    text-align: center;
    color: #fff;
}

.areas-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 14px;
    background: linear-gradient(90deg,#00c6ff,#ff5e62);
    -webkit-background-clip: text;
    color: transparent;
}

.areas-subtitle {
    font-size: 18px;
    color: #ccc;
    max-width: 750px;
    margin: 0 auto 60px;
}

/* GRID */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 26px;
}

/* Area Card */
.area-card {
    padding: 22px 18px;
    border-radius: 20px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    backdrop-filter: blur(14px);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 0 25px rgba(0,0,0,0.45);
    transition: 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* Hover Animations */
.area-card:hover {
    transform: translateY(-10px) scale(1.04);
    background: rgba(255, 255, 255, 0.14);
    box-shadow: 0 0 40px rgba(0,198,255,0.4);
}

/* Neon glow behind card */
.area-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: radial-gradient(circle, rgba(0,198,255,0.4), transparent 70%);
    opacity: 0;
    transition: 0.4s ease;
}

.area-card:hover::before {
    opacity: 1;
}

/* Mobile Responsive */
@media(max-width: 700px) {
    .areas-title {
        font-size: 32px;
    }
    .area-card {
        font-size: 16px;
        padding: 18px;
    }
}
/* ======================================
   🔵 FEATURED PROPERTIES — LUXURY GRID
======================================= */

.featured-properties {
    padding: 140px 6%;
    color: #fff;
    text-align: center;
}

.fp-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(90deg,#00c6ff,#ff5e62);
    -webkit-background-clip: text;
    color: transparent;
}

.fp-subtitle {
    font-size: 18px;
    color: #ccc;
    max-width: 750px;
    margin: 0 auto 60px;
}

/* GRID */
.fp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 35px;
}

/* Property Card */
.fp-card {
    border-radius: 25px;
    overflow: hidden;
    backdrop-filter: blur(14px);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: 0.4s ease;
    box-shadow: 0 0 30px rgba(0,0,0,0.55);
    position: relative;
    transform: translateY(0px);
}

.fp-card:hover {
    transform: translateY(-14px) scale(1.03);
    box-shadow: 0 0 45px rgba(0,198,255,0.45);
}

/* Image */
.fp-img-box {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.fp-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.35s ease;
}

.fp-card:hover .fp-img {
    transform: scale(1.09);
    filter: brightness(1.15);
}

/* Info Area */
.fp-info {
    padding: 25px;
    text-align: left;
}

.fp-price {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 6px;
    background: linear-gradient(90deg,#00c6ff,#ff5e62);
    -webkit-background-clip: text;
    color: transparent;
}

.fp-meta {
    color: #d8d8d8;
    font-size: 16px;
}

.fp-location {
    color: #aaa;
    margin: 10px 0 18px;
    font-size: 15px;
}

/* Button */
.fp-btn {
    display: inline-block;
    padding: 12px 22px;
    background: linear-gradient(90deg,#00c6ff,#ff5e62);
    color: #000;
    font-weight: 700;
    border-radius: 14px;
    text-decoration: none;
    transition: 0.3s ease;
}

.fp-btn:hover {
    opacity: 0.85;
}

/* Responsive */
@media(max-width: 700px) {
    .fp-title {
        font-size: 32px;
    }
    .fp-img-box {
        height: 210px;
    }
}
/* ======================================
   🔵 WHY CHOOSE — TRUST ENGINEERING
======================================= */
.container-wide { max-width: 1200px; margin: 0 auto; padding: 0 6%; }
.container-narrow { max-width: 1000px; margin: 0 auto; padding: 0 6%; }

.why-choose {
  padding: 100px 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.65), rgba(0,0,0,0.72));
  color: #fff;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
  align-items: stretch;
}
.why-card {
  padding: 28px;
  border-radius: 18px;
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform .35s ease, box-shadow .35s ease;
  text-align: left;
}
.why-card:hover { transform: translateY(-10px); box-shadow: 0 14px 40px rgba(0,198,255,0.08); }
.why-icon { font-size: 30px; margin-bottom: 10px; display:inline-block; }
.why-card h3 { font-size: 20px; margin-bottom: 10px; background: linear-gradient(90deg,#00c6ff,#ff5e62); -webkit-background-clip: text; color: transparent; }
.why-card p { color: #dcdcdc; line-height: 1.6; font-size: 15px; }

/* ======================================
   🔵 INSIGHTS TEASERS
======================================= */
.insights-teasers { padding: 90px 0; background: rgba(255,255,255,0.02); color: #fff; }
.insights-title { font-size: 32px; font-weight:700; margin-bottom:8px; background: linear-gradient(90deg,#00c6ff,#ff5e62); -webkit-background-clip: text; color: transparent; text-align:center; }
.insights-sub { color: #cfcfcf; text-align:center; margin-bottom:36px; }
.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
  gap: 22px;
  align-items: stretch;
}
.insight-card {
  display: flex;
  gap: 16px;
  padding: 18px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform .3s ease;
}
.insight-card:hover { transform: translateY(-8px); box-shadow: 0 30px 60px rgba(0,0,0,0.6); }
.insight-thumb { width: 140px; height: 100px; object-fit: cover; border-radius: 10px; flex-shrink:0; }
.insight-body h3 { margin: 0 0 8px 0; font-size: 18px; }
.insight-body p { margin: 0 0 12px 0; color: #d2d2d2; font-size: 14px; }
.insight-cta { display:inline-block; padding: 8px 14px; border-radius: 10px; background: linear-gradient(90deg,#00c6ff,#ff5e62); color: #000; font-weight:700; text-decoration:none; }

/* ======================================
   🔵 PREMIUM FOOTER / CONTACT
======================================= */
.premium-footer {
  padding: 56px 6%;
  background: linear-gradient(180deg, rgba(8,8,10,1), rgba(12,12,16,1));
  color: #fff;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto 24px;
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 1fr;
  gap: 28px;
  align-items: start;
}
.footer-left { }
.footer-logo { width: 120px; display:block; margin-bottom:12px; filter: drop-shadow(0 6px 12px rgba(0,0,0,0.6)); }
.footer-left h3 { margin-bottom: 8px; font-size: 20px; background: linear-gradient(90deg,#00c6ff,#ff5e62); -webkit-background-clip: text; color: transparent; }
.footer-desc { color: #cfcfcf; margin-bottom: 12px; max-width: 380px; }
.contact-quick a.footer-contact {
  display:block;
  color:#fff;
  text-decoration:none;
  margin:6px 0;
  font-weight:600;
  opacity:0.95;
}
.footer-mid h4, .footer-right h4 { margin-bottom:12px; }
.footer-links { list-style:none; padding:0; margin:0; color:#d0d0d0; }
.footer-links li { margin-bottom:8px; }
.footer-links a { color:#d0d0d0; text-decoration:none; }
.footer-links a:hover { text-decoration: underline; }

/* Footer form */
.footer-form { display:flex; flex-direction:column; gap:10px; max-width:320px; }
.footer-form input { padding:10px 12px; border-radius:10px; border:1px solid rgba(255,255,255,0.06); background: rgba(0,0,0,0.35); color:#fff; outline:none; }
.footer-cta { padding:10px 12px; border-radius:10px; border:none; cursor:pointer; font-weight:700; background: linear-gradient(90deg,#00c6ff,#ff5e62); color:#000; }
.license { margin-top:10px; color:#a8a8a8; font-size:13px; }

/* bottom */
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.03); margin-top:20px; padding-top:18px; text-align:center; color:#9f9f9f; font-size:14px; }

/* Responsive */
@media(max-width:980px) {
  .footer-grid { grid-template-columns: 1fr; text-align:center; gap:20px; }
  .footer-left, .footer-mid, .footer-right { justify-content:center; }
  .insight-card { flex-direction: column; align-items:center; text-align:center; }
  .insight-thumb { width:100%; height:180px; max-width:420px; border-radius:12px; }
  .why-grid { grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); }
}
.nav-toggle {
  position: relative;
  z-index: 99999; /* makes the X clickable above the menu */
}
