/* BODY RESET – top gap hatane ke liye */
body {
    margin: 0;
}

/* ===== BASIC HEADER LAYOUT ===== */

/* HEADER KO FIXED TOP PAR CHIPKAYA GAYA */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    width: 100%;
    background: linear-gradient(120deg, #020617, #020617);
    color: #e5e7eb;
    border-bottom: 1px solid rgba(148,163,184,0.35);
    box-shadow: 0 10px 24px rgba(15,23,42,0.4);
}

.site-header-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

/* BRAND */

.brand-block {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}

.brand-logo {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    background: radial-gradient(circle at 30% 0%, #facc15, #f97316 45%, #0f172a 100%);
    border: 1px solid rgba(248,250,252,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-initials {
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 0.04em;
    color: #f9fafb;
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-name {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #f9fafb;
}

.brand-tag {
    font-size: 11px;
    color: #9ca3af;
}

/* DESKTOP NAV */

.site-nav {
    display: none;
    align-items: center;
    font-size: 13px;
}

/* Yahan se: nav links ko gap + flex */
.nav-links {
    display: flex;
    align-items: center;
    gap: 18px; /* buttons ke beech distance */
}

/* Links ko button jaisa look */
.nav-link {
    position: relative;
    text-decoration: none;
    color: #e5e7eb;
    opacity: 0.9;
    padding: 6px 16px;
    border-radius: 999px;
    border: 1px solid rgba(248,250,252,0.55); /* white border */
    background: rgba(15,23,42,0.7);
    box-shadow:
        0 0 0 1px rgba(148,163,184,0.45),
        0 6px 16px rgba(15,23,42,0.8);
    transition:
        opacity 0.16s ease,
        background 0.18s ease,
        box-shadow 0.18s ease,
        transform 0.16s ease,
        border-color 0.18s ease;
}

/* active page (Home / All properties) */
.nav-link.active {
    background: rgba(248,250,252,0.12);
    border-color: rgba(248,250,252,0.9);
    box-shadow:
        0 0 0 1px rgba(248,250,252,0.7),
        0 8px 20px rgba(15,23,42,0.9);
}

/* hover effect – thoda upar, bright + white glow */
.nav-link:hover {
    opacity: 1;
    background: rgba(248,250,252,0.10);
    border-color: rgba(248,250,252,0.9);
    transform: translateY(-1px);
    box-shadow:
        0 0 12px rgba(248,250,252,0.28),
        0 10px 24px rgba(15,23,42,0.95);
}

/* old underline effect hata diya */
.nav-link::after {
    content: none;
}

/* RIGHT SIDE */

.header-right {
    display: none;
    align-items: center;
    gap: 12px;
}

.whatsapp-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(34,197,94,0.7);
    color: #ecfdf5;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    text-decoration: none;
}

.whatsapp-cta:hover {
    filter: brightness(1.03);
}

.wa-icon-circle {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: rgba(15,23,42,0.9);
    border: 2px solid rgba(187,247,208,0.9);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.wa-icon-circle svg {
    width: 11px;
    height: 11px;
    fill: #bbf7d0;
}

/* SOCIAL ICONS */

.social-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.social-icon {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background: rgba(15,23,42,0.9);
    border: 1px solid rgba(148,163,184,0.9);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: #e5e7eb;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.social-icon svg {
    width: 14px;
    height: 14px;
    fill: #e5e7eb;
}

.social-icon:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(15,23,42,0.7);
    border-color: rgba(129,140,248,0.9);
}

.social-icon.disabled {
    opacity: 0.35;
    cursor: default;
    box-shadow: none;
    border-style: dashed;
}

/* MOBILE MENU BUTTON */

.menu-toggle {
    width: 36px;
    height: 30px;
    border-radius: 999px;
    border: 1px solid rgba(148,163,184,0.9);
    background: rgba(15,23,42,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
}

/* Burger icon (menu-toggle-bars class) */

.menu-toggle-bars {
    position: relative;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #e5e7eb;
    transition: background 0.18s ease;
}

.menu-toggle-bars::before,
.menu-toggle-bars::after {
    content: "";
    position: absolute;
    left: 0;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #e5e7eb;
    transition: transform 0.18s ease, top 0.18s ease, bottom 0.18s ease, opacity 0.18s ease;
}

.menu-toggle-bars::before {
    top: -5px;
}

.menu-toggle-bars::after {
    bottom: -5px;
}

.menu-toggle.is-open .menu-toggle-bars {
    background: transparent;
}

.menu-toggle.is-open .menu-toggle-bars::before {
    top: 0;
    transform: rotate(45deg);
}

.menu-toggle.is-open .menu-toggle-bars::after {
    bottom: 0;
    transform: rotate(-45deg);
}

/* MOBILE MENU PANEL */

.mobile-menu {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 18px 10px;
    display: none;
}

.mobile-menu.open {
    display: block;
}

.mobile-menu-inner {
    margin-top: 4px;
    border-radius: 12px;
    background: #020617;
    border: 1px solid rgba(55,65,81,0.9);
    padding: 8px 10px;
}

.mobile-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-link {
    padding: 7px 6px;
    border-radius: 8px;
    text-decoration: none;
    color: #e5e7eb;
    font-size: 13px;
}

.mobile-link:hover {
    background: rgba(30,64,175,0.9);
}

.mobile-cta-block {
    margin-top: 8px;
    padding-top: 6px;
    border-top: 1px solid rgba(55,65,81,0.9);
    font-size: 12px;
    color: #9ca3af;
}

.mobile-cta-label {
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6ee7b7;
    margin-bottom: 4px;
}

.mobile-wa-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    margin-top: 4px;
    padding: 7px 10px;
    border-radius: 999px;
    background: linear-gradient(135deg,#16a34a,#22c55e);
    color: #ecfdf5;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.mobile-social-row {
    margin-top: 8px;
    display: flex;
    gap: 6px;
}

/* FLOATING ACTIONS (SCROLL TOP + WHATSAPP) */

.floating-actions {
    position: fixed;
    right: 14px;
    bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 120;
}

.scroll-top-btn {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: none;
    background: rgba(15,23,42,0.9);
    color: #e5e7eb;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 22px rgba(15,23,42,0.7);
}

.scroll-top-btn:hover {
    filter: brightness(1.1);
}

.floating-whatsapp {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: linear-gradient(135deg,#16a34a,#22c55e);
    box-shadow: 0 10px 26px rgba(22,163,74,0.6);
    color: #ecfdf5;
    font-weight: 700;
    font-size: 12px;
}

.floating-wa-inner {
    display: inline-block;
}

/* RESPONSIVE BREAKPOINTS */

@media (min-width: 768px) {
    .site-nav,
    .header-right {
        display: flex;
    }
    .menu-toggle {
        display: none;
    }
    .mobile-menu {
        display: none !important;
    }
}
