/* ============================================
   DELHI LAND PLANNER - Global Stylesheet
   ============================================ */

/* --- VARIABLES --- */
:root {
    --primary: #003366;
    --gold: #D4AF37;
    --gold-gradient: linear-gradient(135deg, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
    --green: #25D366;
    --bg-dark: #050505;
    --bg-card: #121212;
    --text-light: #f4f4f4;
    --text-gray: #a0a0a0;
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: hidden; width: 100%; }
main { display: block; margin: 0; padding: 0; width: 100%; }
body > main, body > div:not(.sticky-header-wrap) { padding-top: 0; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* --- BASE --- */
body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
    padding-top: 85px;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.5px;
}

/* --- HEADER --- */
.site-header {
    background-color: rgba(0, 0, 0, 0.95);
    border-bottom: 1px solid #333;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    backdrop-filter: blur(10px);
}
.header-wrapper {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}
.header-logo a {
    font-size: 26px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    text-decoration: none;
    text-transform: uppercase;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.header-nav { display: flex; align-items: center; gap: 30px; }
.header-nav ul { display: flex; list-style: none; gap: 30px; }
.header-nav ul li a {
    color: #ccc;
    font-weight: 400;
    font-size: 15px;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}
.header-nav ul li a:hover { color: var(--gold); }
.header-nav ul li a::after {
    content: '';
    position: absolute;
    width: 0; height: 1px;
    bottom: -5px; left: 0;
    background: var(--gold);
    transition: width 0.3s;
}
.header-nav ul li a:hover::after { width: 100%; }
.header-cta { display: flex; gap: 15px; }
.h-btn {
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.4s ease;
}
.h-btn-call {
    border: 1px solid var(--gold);
    color: var(--gold);
    background: transparent;
}
.h-btn-call:hover {
    background: var(--gold);
    color: #000;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}
.h-btn-wa {
    background: var(--gold-gradient);
    color: #000;
    border: none;
}
.h-btn-wa:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}
.mobile-menu-icon {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: var(--gold);
}

/* --- FOOTER --- */
.site-footer {
    background-color: #0d0d0d;
    color: #ccc;
    font-size: 14px;
    line-height: 1.7;
}
.footer-top-bar {
    height: 4px;
    background: var(--gold-gradient);
}
.footer-main {
    max-width: 100%;
    margin: 0 auto;
    padding: 60px 40px 40px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.4fr;
    gap: 40px;
}
.footer-brand .footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.footer-tagline {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 14px;
}
.footer-about {
    color: #888;
    font-size: 13.5px;
    margin-bottom: 20px;
}
.gold-text { color: var(--gold); }
.footer-social {
    display: flex;
    gap: 10px;
}
.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: transform 0.25s, box-shadow 0.25s;
    flex-shrink: 0;
}
.footer-social a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}
.footer-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #222;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 9px; }
.footer-links li a {
    color: #888;
    font-size: 13.5px;
    transition: 0.25s;
    display: flex;
    align-items: center;
    gap: 7px;
}
.footer-links li a::before {
    content: "";
    width: 5px;
    height: 1px;
    background: var(--gold);
    display: inline-block;
    transition: width 0.25s;
}
.footer-links li a:hover { color: var(--gold); padding-left: 4px; }
.footer-links li a:hover::before { width: 10px; }
.footer-contact-list { list-style: none; padding: 0; }
.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    color: #888;
    font-size: 13.5px;
}
.footer-contact-list li a { color: #888; transition: 0.25s; }
.footer-contact-list li a:hover { color: var(--gold); }
.fc-icon {
    color: var(--gold);
    margin-top: 2px;
    flex-shrink: 0;
}
.footer-disclaimer {
    max-width: 100%;
    margin: 0 auto;
    padding: 16px 40px;
    border-top: 1px solid #1e1e1e;
    font-size: 11.5px;
    color: #555;
    font-style: italic;
}
.footer-bottom {
    max-width: 100%;
    margin: 0 auto;
    padding: 18px 40px;
    border-top: 1px solid #1e1e1e;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 13px;
    color: #555;
}
.footer-legal { display: flex; align-items: center; gap: 10px; }
.footer-legal a { color: #666; transition: 0.25s; }
.footer-legal a:hover { color: var(--gold); }
.footer-legal span { color: #333; }
.strong { color: #e6b83c; }

/* --- MOBILE STICKY BAR --- */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0; left: 0;
    width: 100%;
    height: 60px;
    background: #fff;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}
.sticky-btn {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 16px;
    color: white;
    text-transform: uppercase;
}
.sticky-call { background-color: var(--primary); }
.sticky-wa { background-color: var(--green); }

/* --- SHARED SECTION STYLES --- */
.section-title { text-align: center; font-size: 2.5rem; margin-bottom: 10px; color: var(--primary); font-weight: 700; }
.section-subtitle { text-align: center; color: #666; margin-bottom: 50px; font-size: 1.1rem; }

/* Page Header (About, Services) */
.page-header {
    background-color: #000;
    padding: 80px 20px;
    text-align: center;
    border-bottom: 1px solid #222;
}
.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.page-header p { max-width: 700px; margin: 0 auto; color: #999; font-size: 1.1rem; line-height: 1.6; }

/* --- RESPONSIVE --- */
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media screen and (max-width: 960px) {
    .site-header { height: 70px; }
    body { padding-top: 68px; }
    .header-nav {
        display: none;
        position: absolute;
        top: 70px; left: 0;
        width: 100%;
        background-color: #000;
        flex-direction: column;
        padding: 40px 0;
        border-bottom: 2px solid var(--gold);
    }
    .header-nav.active { display: flex; animation: slideDown 0.3s ease forwards; }
    .header-nav ul { flex-direction: column; align-items: center; gap: 20px; }
    .header-cta { flex-direction: column; width: 80%; margin-top: 20px; align-items: center; }
    .mobile-menu-icon { display: block; }
}

@media screen and (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        padding: 40px 20px 30px;
        gap: 30px;
    }
    .footer-brand { grid-column: 1 / -1; }
    .footer-bottom { flex-direction: column; text-align: center; padding: 18px 20px 80px; }
    .footer-disclaimer { padding: 16px 20px; }
    .mobile-sticky-bar { display: flex; }
    .footer-links li a { justify-content: flex-start; }
    .section-title { font-size: 1.8rem; }
}
@media screen and (max-width: 480px) {
    .footer-main { grid-template-columns: 1fr; }
}
