/*
Theme Name: Siyamount Realtors Luxury Black & Gold
Theme URI: https://siyamountrealtors.com
Author: Siyamount Dev Team
Description: Ultra-luxury Black & Gold real estate theme tailored for Siyamount Realtors. Fully configurable via WordPress Admin.
Version: 3.8.0
License: GNU General Public License v2 or later
Text Domain: siyamount-luxury
*/

:root {
    --bg-dark: #0a0c10;
    --bg-card: #12161f;
    --bg-elevated: #181d28;
    --gold-primary: #d4af37;
    --gold-bright: #f5d77f;
    --gold-dark: #997926;
    --gold-gradient: linear-gradient(135deg, #f5d77f 0%, #d4af37 50%, #997926 100%);
    --gold-border: rgba(212, 175, 55, 0.3);
    --gold-glow: rgba(212, 175, 55, 0.2);
    --text-light: #f5f5f7;
    --text-muted: #9ba1b0;
    --text-dim: #646a78;
    --font-heading: 'Cinzel', serif, -apple-system, BlinkMacSystemFont;
    --font-body: 'Poppins', sans-serif, -apple-system, BlinkMacSystemFont;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { 
    font-family: var(--font-body); 
    background-color: var(--bg-dark); 
    color: var(--text-light); 
    line-height: 1.6;
    overflow-x: hidden;
}
.container { width: 92%; max-width: 1340px; margin: 0 auto; }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
img { max-width: 100%; height: auto; display: block; }

/* Typography */
h1, h2, h3, h4, h5 { font-family: var(--font-heading); letter-spacing: 0.5px; }
.gold-text { 
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.section-header { text-align: center; margin-bottom: 45px; }
.sub-heading { 
    color: var(--gold-primary); 
    text-transform: uppercase; 
    letter-spacing: 3px; 
    font-size: 13px; 
    font-weight: 600; 
    display: inline-block;
    margin-bottom: 8px;
}
.main-heading { font-size: 2.6rem; color: #fff; font-weight: 700; line-height: 1.2; }
.section-pad { padding: 80px 0; }
.page-banner-pad { padding: 70px 0 40px; text-align: center; border-bottom: 1px solid var(--gold-border); background: var(--bg-card); }

/* Buttons */
.btn-gold {
    background: var(--gold-gradient);
    color: #000 !important;
    padding: 12px 26px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
    filter: brightness(1.1);
}
.btn-outline-gold {
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary) !important;
    padding: 11px 22px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}
.btn-outline-gold:hover {
    background: var(--gold-primary);
    color: #000 !important;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* Section "View More" Wrapper */
.view-more-wrap {
    text-align: center;
    margin-top: 45px;
}

/* Desktop Header & Navbar */
.site-header {
    background: rgba(10, 12, 16, 0.96);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--gold-border);
}
.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}
.brand-logo a {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 2px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.primary-menu {
    display: flex;
    list-style: none;
    gap: 24px;
    align-items: center;
}
.primary-menu > li {
    position: relative;
}
.primary-menu a {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 0;
}
.primary-menu a:hover {
    color: var(--gold-primary);
}

/* Desktop Dropdown Sub-Menu */
.primary-menu .sub-menu,
.primary-menu .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-card);
    border: 1px solid var(--gold-border);
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.85);
    list-style: none;
    min-width: 220px;
    padding: 10px 0;
    display: none;
    z-index: 1001;
}
.primary-menu li:hover > .sub-menu,
.primary-menu li:hover > .dropdown-menu {
    display: block;
}
.primary-menu .sub-menu li a,
.primary-menu .dropdown-menu li a {
    padding: 10px 20px;
    font-size: 12px;
    letter-spacing: 1px;
    color: #d1d5db;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.primary-menu .sub-menu li a:hover,
.primary-menu .dropdown-menu li a:hover {
    background: var(--bg-elevated);
    color: var(--gold-primary);
    padding-left: 24px;
}

/* Header Direct Number CTA */
.header-phone-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-bright) !important;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    padding: 8px 16px;
    border: 1px solid var(--gold-border);
    border-radius: 4px;
    background: rgba(212, 175, 55, 0.08);
}
.header-phone-cta:hover {
    background: var(--gold-primary);
    color: #000 !important;
    box-shadow: 0 0 15px var(--gold-glow);
}
.header-right-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Hero Section */
.hero-slider-section {
    position: relative;
    width: 100%;
    height: 88vh;
    min-height: 620px;
    background: #000;
}
.hero-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,12,16,0.35) 0%, rgba(10,12,16,0.75) 60%, rgba(10,12,16,1) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 920px;
    padding: 20px;
}
.hero-badge {
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--gold-primary);
    color: var(--gold-bright);
    padding: 6px 20px;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 20px;
}
.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #fff;
}
.hero-desc {
    font-size: 1.05rem;
    color: #d1d5db;
    margin-bottom: 30px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

/* Stats Counter Bar */
.stats-bar {
    background: var(--bg-card);
    border-top: 1px solid var(--gold-border);
    border-bottom: 1px solid var(--gold-border);
    padding: 38px 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    text-align: center;
}
.stat-box { border-right: 1px solid rgba(255,255,255,0.08); }
.stat-box:last-child { border-right: none; }
.stat-num {
    font-size: 3rem;
    font-weight: 700;
    font-family: var(--font-heading);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    margin-bottom: 5px;
}
.stat-lbl {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Sector / Vision Section */
.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}
.sector-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 35px 25px;
    border-radius: 8px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}
.sector-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 3px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}
.sector-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-border);
    box-shadow: 0 15px 35px var(--gold-glow);
}
.sector-card:hover::before { transform: scaleX(1); }
.sector-icon {
    font-size: 2.5rem;
    color: var(--gold-primary);
    margin-bottom: 20px;
}
.sector-title { font-size: 1.3rem; color: #fff; margin-bottom: 12px; }
.sector-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* Grid Layout for Projects */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 30px;
}
.project-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.4s ease;
}
.project-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-primary);
    box-shadow: 0 15px 40px rgba(0,0,0,0.8), 0 0 25px var(--gold-glow);
}
.project-thumb {
    position: relative;
    height: 250px;
    overflow: hidden;
}
.project-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.project-card:hover .project-thumb img {
    transform: scale(1.08);
}
.badge-status {
    position: absolute;
    top: 15px; left: 15px;
    background: var(--gold-gradient);
    color: #000;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.project-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}
.project-loc {
    font-size: 13px;
    color: var(--gold-primary);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.project-title {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 10px;
}
.project-desc-short {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 15px;
}
.project-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 20px;
}
.project-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold-bright);
}
.project-type-tag {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
}
.project-actions {
    display: flex;
    gap: 12px;
}

/* Testimonials Grid */
.testimonials-section {
    background: var(--bg-card);
    border-top: 1px solid var(--gold-border);
    border-bottom: 1px solid var(--gold-border);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}
.testimonial-card {
    background: var(--bg-elevated);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    padding: 35px 30px;
    position: relative;
    transition: all 0.3s ease;
}
.testimonial-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--gold-glow);
}
.testimonial-card::after {
    content: '"';
    position: absolute;
    top: 15px; right: 25px;
    font-size: 5rem;
    color: rgba(212, 175, 55, 0.12);
    font-family: var(--font-heading);
    line-height: 1;
}
.stars { color: var(--gold-primary); margin-bottom: 15px; font-size: 14px; }
.testi-text { font-size: 14px; color: #d1d5db; line-height: 1.7; margin-bottom: 20px; }
.client-info h4 { font-size: 16px; color: #fff; margin-bottom: 2px; }
.client-info p { font-size: 12px; color: var(--gold-primary); }

/* Streamlined Enquiry Banner */
.enquiry-cta-section {
    padding: 45px 0 50px 0;
    background: var(--bg-dark);
}
.enquiry-cta-box {
    background: linear-gradient(135deg, #121620 0%, #0d1017 100%);
    border: 1px solid var(--gold-border);
    border-radius: 14px;
    padding: 28px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.6), inset 0 1px 0 rgba(212, 175, 55, 0.15);
    position: relative;
    overflow: hidden;
}
.enquiry-cta-content h2 {
    font-family: var(--font-body);
    font-size: 1.95rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
    letter-spacing: -0.3px;
}
.enquiry-cta-content p {
    font-size: 0.98rem;
    color: #cbd5e1;
    font-weight: 400;
}
.enquiry-cta-btn {
    background: linear-gradient(180deg, #fce183 0%, #e5b842 100%);
    color: #1a1606 !important;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 0 20px rgba(245, 215, 127, 0.4);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.enquiry-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(245, 215, 127, 0.65);
    filter: brightness(1.08);
}

/* Blogs Preview Grid */
.blogs-section {
    background: var(--bg-card);
    border-top: 1px solid var(--gold-border);
}
.blogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}
.blog-card {
    background: var(--bg-elevated);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.blog-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold-primary);
    box-shadow: 0 15px 30px rgba(0,0,0,0.6);
}
.blog-thumb {
    height: 200px;
    overflow: hidden;
}
.blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}
.blog-card:hover .blog-thumb img {
    transform: scale(1.08);
}
.blog-body {
    padding: 25px;
}
.blog-date {
    font-size: 12px;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
}
.blog-title {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.4;
}
.blog-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 15px;
}
.blog-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--gold-bright);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.blog-link:hover {
    color: #fff;
}

/* Footer & Address */
.site-footer {
    background: #05070a;
    border-top: 1px solid var(--gold-border);
    padding: 70px 0 25px;
    color: var(--text-muted);
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    margin-bottom: 45px;
}
.footer-title {
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 8px;
}
.footer-title::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0; width: 35px; height: 2px;
    background: var(--gold-gradient);
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; font-size: 14px; }
.footer-links a:hover { color: var(--gold-primary); padding-left: 5px; }

.footer-contact-item {
    font-size: 13.5px;
    color: #d1d5db;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}
.footer-contact-item i {
    margin-top: 4px;
    font-size: 14px;
}

.social-icons-wrap {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}
.social-icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--gold-border);
    color: var(--gold-bright);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: all 0.3s ease;
}
.social-icon-btn:hover {
    background: var(--gold-primary);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 0 15px var(--gold-glow);
}

.copyright-bar {
    text-align: center;
    font-size: 13px;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 22px;
    color: var(--text-dim);
}

/* ============================================================
   RESPONSIVE MOBILE HEADER & SLIDE-OUT DRAWER STYLING
   ============================================================ */

/* Desktop defaults */
.desktop-navigation { display: block; }
.mobile-menu-toggle { display: none; }
.mobile-nav-drawer { display: none; }
.mobile-menu-backdrop { display: none; }

/* Mobile & Tablet Styles (<= 991px) */
@media (max-width: 991px) {
    .desktop-navigation,
    .desktop-only {
        display: none !important;
    }

    .nav-wrapper {
        padding: 14px 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .brand-logo a {
        font-size: 18px;
        letter-spacing: 1.5px;
    }

    /* Clean Hamburger Button */
    .mobile-menu-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: space-between;
        width: 26px;
        height: 18px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }
    .mobile-menu-toggle span {
        width: 100%;
        height: 2px;
        background: var(--gold-primary);
        border-radius: 2px;
        transition: 0.3s ease;
    }

    /* Isolated Slide-Out Drawer */
    .mobile-nav-drawer {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 82%;
        max-width: 320px;
        height: 100vh;
        height: 100dvh;
        background: #0d1117;
        border-left: 1px solid var(--gold-border);
        box-shadow: -15px 0 35px rgba(0, 0, 0, 0.95);
        padding: 20px;
        z-index: 99999;
        overflow-y: auto;
        transition: right 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    }
    .mobile-nav-drawer.active {
        right: 0 !important;
    }

    /* Drawer Header */
    .mobile-nav-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-bottom: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        margin-bottom: 15px;
    }
    .menu-close-btn {
        background: transparent;
        border: none;
        color: #fff;
        font-size: 28px;
        line-height: 1;
        cursor: pointer;
        padding: 0 4px;
    }
    .menu-close-btn:hover {
        color: var(--gold-primary);
    }

    /* Drawer Menu Links */
    .mobile-nav-body ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .mobile-nav-body li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    .mobile-nav-body a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 13px 4px;
        font-size: 14px;
        color: #f1f5f9;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    .mobile-nav-body a:hover {
        color: var(--gold-bright);
    }

    /* Sub-menu inside Mobile Drawer */
    .mobile-nav-body .sub-menu,
    .mobile-nav-body .dropdown-menu {
        display: none;
        background: rgba(0, 0, 0, 0.4);
        padding-left: 15px;
    }
    .mobile-nav-body li.open-sub > .sub-menu,
    .mobile-nav-body li.open-sub > .dropdown-menu {
        display: block;
    }

    .mobile-drawer-cta {
        margin-top: auto;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    /* Backdrop */
    .mobile-menu-backdrop {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(4px);
        z-index: 99990;
    }
    .mobile-menu-backdrop.active {
        display: block !important;
    }

    /* Layout Adjustments */
    .hero-title { font-size: 2.3rem; }
    .enquiry-cta-box { flex-direction: column; text-align: center; padding: 25px 20px; }
    .enquiry-cta-content h2 { font-size: 1.65rem; }
    .projects-grid { grid-template-columns: 1fr; }
}
/* ===== SIYAMOUNT HEADER LOGO ===== */

.brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.brand a {
    display: flex;
    align-items: center;
}

/* ================================
   HEADER LOGO - DESKTOP & MOBILE
================================ */

.brand-logo img {
    width: 220px !important;
    height: auto !important;
    max-height: 70px !important;
    object-fit: contain !important;
    background: transparent;
    display: block;
}

/* Mobile */
@media (max-width: 780px) {

    .brand-logo img {
        width: 190px !important;
        height: auto !important;
        max-height: 58px !important;
        object-fit: contain !important;
    }

    .brand-logo {
        max-width: calc(100% - 70px);
    }
}

/* Small phones */
@media (max-width: 480px) {

    .brand-logo img {
        width: 170px !important;
        height: auto !important;
        max-height: 54px !important;
        object-fit: contain !important;
    }

    .brand-logo {
        max-width: calc(100% - 65px);
    }
}