/* ---------------------------------------------------- */
/* PROPIO REALTORS - PREMIUM LUXURY STYLING CORE SYSTEM  */
/* ---------------------------------------------------- */

:root {
    --primary-dark: #070b11;
    --section-bg-dark: #0a0f18;
    --card-bg: rgba(15, 22, 32, 0.75);
    --gold: #dfab4c;
    --gold-hover: #c9963b;
    --light-gray: #a6adb9;
    --muted-text: #707783;
    --border-color: rgba(223, 171, 76, 0.15);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset Rules & Core Typography */
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--primary-dark);
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

.serif-font {
    font-family: 'Playfair Display', Georgia, serif;
}

.tracking-wide { 
    letter-spacing: 2px; 
}

.text-gold { 
    color: var(--gold); 
}

.text-light-gray { 
    color: var(--light-gray); 
}

.extra-small { 
    font-size: 0.75rem; 
    color: var(--muted-text); 
}

.logo {
    width: 100%;
    height: auto;
    max-height: 85px;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.footer-logo {
    width: 100%;
    height: auto;
    max-width: 130px;
    object-fit: contain;
}

section {
    padding: 100px 0;
    background-color: var(--primary-dark);
    position: relative;
}

/* ---------------------------------------------------- */
/* Reusable UI Component Elements                       */
/* ---------------------------------------------------- */
.btn-gold {
    background-color: var(--gold);
    border: 1px solid var(--gold);
    border-radius: 4px;
    color: #000 !important;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition-smooth);
}

.btn-gold:hover {
    background-color: var(--gold-hover);
    border-color: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(223, 171, 76, 0.3);
}

.btn-outline-gold {
    border: 1px solid var(--gold);
    color: var(--gold);
    border-radius: 4px;
    font-size: 13px;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
}

.btn-outline-gold:hover {
    background-color: var(--gold);
    color: #000 !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(223, 171, 76, 0.2);
}

.btn-outline-white {
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.03);
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition-smooth);
}

.btn-outline-white:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: #fff;
    transform: translateY(-2px);
}

/* Universal Luxury Glass Cards */
.luxury-card {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    transition: var(--transition-smooth);
}

/* Custom Section Titles */
.section-tag {
    font-size: 12px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
    display: inline-block;
}

/* ---------------------------------------------------- */
/* Hero Header Section Area                             */
/* ---------------------------------------------------- */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

#heroCarousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.carousel-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-overlay {
    position: absolute;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background: linear-gradient(180deg, rgba(7, 11, 17, 0.9) 0%, rgba(7, 11, 17, 0.45) 50%, rgba(7, 11, 17, 0.95) 100%);
    z-index: 1;
}

/* Navbar Navigation styling */
.navbar {
    transition: var(--transition-smooth);
}

.navbar-brand .logo-icon {
    font-family: 'Playfair Display', serif; 
    font-size: 24px; 
    color: var(--gold);
    border: 1px solid var(--gold); 
    width: 38px; 
    height: 38px;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-weight: bold;
}

.navbar-brand .logo-text { 
    font-size: 14px; 
    line-height: 1.1; 
    letter-spacing: 1px; 
    color: #fff; 
}

.nav-link { 
    font-size: 12.5px; 
    font-weight: 500; 
    letter-spacing: 1.5px; 
    color: rgba(255, 255, 255, 0.7) !important; 
    padding: 0.5rem 1.4rem !important; 
    transition: var(--transition-smooth);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1.4rem;
    right: 1.4rem;
    height: 1px;
    background-color: var(--gold);
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

.nav-link.active, .nav-link:hover { 
    color: var(--gold) !important; 
}

.nav-link.active::after {
    transform: scaleX(1);
}

.hero-content { 
    padding-top: 120px; 
    padding-bottom: 80px; 
    flex-grow: 1; 
}

/* ---------------------------------------------------- */
/* Subpage Sub-Hero Header Area                        */
/* ---------------------------------------------------- */
.subpage-hero {
    position: relative;
    padding: 40px 0 80px 0;
    background: linear-gradient(rgba(7, 11, 17, 0.8), rgba(7, 11, 17, 0.92)), url('../images/home-sub-banner.jpg') no-repeat center center;
    background-size: cover;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb-container {
    background: rgba(15, 22, 32, 0.6);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: inline-flex;
    align-items: center;
}

.breadcrumb-item {
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.breadcrumb-item a {
    color: var(--light-gray);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.breadcrumb-item a:hover {
    color: var(--gold);
}

.breadcrumb-item.active {
    color: var(--gold);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--muted-text);
}

/* ---------------------------------------------------- */
/* Why Choose Us                                        */
/* ---------------------------------------------------- */
.feature-card {
    padding: 40px 30px;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(223, 171, 76, 0.6);
    box-shadow: 0 15px 40px rgba(223, 171, 76, 0.08);
}

/* ---------------------------------------------------- */
/* About Us Custom Styles                               */
/* ---------------------------------------------------- */
.about-image-frame {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.about-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 420px;
    transition: var(--transition-smooth);
}

.about-image-frame:hover img {
    transform: scale(1.03);
}

.about-experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(7, 11, 17, 0.95);
    border: 1px solid var(--gold);
    backdrop-filter: blur(10px);
    padding: 22px 32px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

/* Team Section Styles */
.team-card {
    overflow: hidden;
}

.team-img-wrapper {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.team-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.team-card:hover .team-img-wrapper img {
    transform: scale(1.05);
}

.team-social-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(7, 11, 17, 0.9) 0%, transparent 100%);
    padding: 20px;
    display: flex;
    justify-content: center;
    gap: 12px;
    transform: translateY(100%);
    transition: var(--transition-smooth);
}

.team-card:hover .team-social-overlay {
    transform: translateY(0);
}

.team-social-overlay .social-circle {
    width: 32px;
    height: 32px;
    background: rgba(223, 171, 76, 0.1);
}

/* ---------------------------------------------------- */
/* Client Grid Logo Items Styling                       */
/* ---------------------------------------------------- */
.clients-section {
    background: linear-gradient(135deg, rgba(7, 11, 17, 0.95) 0%, rgba(10, 15, 24, 0.98) 100%);
    position: relative;
    overflow: hidden;
}

.clients-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(223, 171, 76, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.clients-section::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 80% 50%, rgba(223, 171, 76, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.client-grid-divider {
    border-top: 1px solid var(--border-color);
    border-left: 1px solid var(--border-color);
}

.client-logo-item {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff !important;
    padding: 25px;
       border-right: 2px solid rgb(0 0 0 / 14%);
    border-bottom: 2px solid rgb(0 0 0 / 14%);
    transition: var(--transition-smooth);
    background: transparent;
}

.client-logo-item img {
    max-width: 65%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(0%) brightness(1.1);
    /* filter: grayscale(100%) brightness(0.7); */
    transition: var(--transition-smooth);
}

.client-logo-item:hover {
    background: rgba(223, 171, 76, 0.02);
}

.client-logo-item:hover img {
    filter: grayscale(0%) brightness(1.1);
    transform: scale(1.03);
}

/* ---------------------------------------------------- */
/* Section 3: Featured Listings Architecture Gallery    */
/* ---------------------------------------------------- */
.property-card {
    overflow: hidden;
    height: 100%;
}

.property-img-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.property-img-wrapper img {
    width: 100%; 
    height: 100%; 
    object-fit: cover;
    transition: var(--transition-smooth);
}

.property-card:hover .property-img-wrapper img {
    transform: scale(1.06);
}

.location-badge {
    position: absolute; 
    top: 15px; 
    left: 15px;
    background: rgba(7, 11, 17, 0.85);
    backdrop-filter: blur(8px); 
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(223, 171, 76, 0.2);
    color: #fff; 
    padding: 5px 14px; 
    font-size: 11px; 
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.prop-spec-icon {
    font-size: 13px; 
    color: var(--gold); 
    margin-right: 5px;
}

.property-card:hover {
    border-color: rgba(223, 171, 76, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* ---------------------------------------------------- */
/* Section 4: Workflow Map & Reviews Grid System       */
/* ---------------------------------------------------- */
.step-node {
    position: relative;
    text-align: center;
    padding: 0 10px;
}

.step-circle {
    width: 68px; 
    height: 68px; 
    border: 1px solid var(--gold);
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    margin: 0 auto 24px auto; 
    background-color: var(--primary-dark);
    color: var(--gold); 
    font-size: 22px;
    transition: var(--transition-smooth);
    box-shadow: 0 5px 15px rgba(223, 171, 76, 0.1);
}

.step-node:hover .step-circle {
    background-color: var(--gold);
    color: #000;
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(223, 171, 76, 0.35);
}

/* Connective vector arrow dash indicator lines */
@media (min-width: 992px) {
    .step-node:not(:last-child)::after {
        content: ''; 
        position: absolute; 
        top: 34px; 
        left: calc(50% + 42px);
        width: calc(100% - 84px); 
        height: 1px;
        border-top: 1px dashed rgba(223, 171, 76, 0.35); 
        z-index: 1;
    }
}

@media (max-width: 991px) {
    .navbar-collapse{
        background-color: #000;
    }
    .navbar-collapse .btn-outline-gold{
        margin: 10px 20px;
    }
    .reveal{
        opacity: 1 !important;
    }
}
/* Testimonial Panel Slider Custom Layout Overrides */
.testimonial-box {
    background: rgba(15, 22, 32, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    height: 100%;
    transition: var(--transition-smooth);
}

.testimonial-box:hover {
    border-color: rgba(223, 171, 76, 0.3);
    background: rgba(15, 22, 32, 0.75);
}

.avatar-img {
    width: 48px; 
    height: 48px; 
    border-radius: 50%; 
    object-fit: cover;
    border: 1px solid var(--gold);
}

.carousel-indicators [data-bs-target] {
    width: 8px; 
    height: 8px; 
    border-radius: 50%; 
    background-color: var(--muted-text); 
    border: none; 
    margin: 0 5px;
    transition: var(--transition-smooth);
}

.carousel-indicators .active {
    background-color: var(--gold); 
    width: 16px; 
    border-radius: 4px;
}

.italic-quote {
    font-style: italic;
    font-weight: 300;
}

/* ---------------------------------------------------- */
/* Section 5: Lead Capture Application Container        */
/* ---------------------------------------------------- */
.inquiry-section {
    background: linear-gradient(rgba(7, 11, 17, 0.88), rgba(7, 11, 17, 0.88)), url('https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?auto=format&fit=crop&w=1920&q=80') center center no-repeat;
    background-size: cover;
    border-top: 1px solid var(--border-color);
}

.white-sheet-form {
    background-color: #f8f9fa;
    border-radius: 12px;
    color: #212529;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.white-sheet-form .form-control, .white-sheet-form .form-select {
    background-color: #ffffff; 
    border: 1px solid #dee2e6; 
    color: #212529; 
    padding: 14px 18px; 
    border-radius: 6px;
    font-size: 14px;
    transition: var(--transition-smooth);
}

.white-sheet-form .form-control:focus, .white-sheet-form .form-select:focus {
    border-color: var(--gold); 
    box-shadow: 0 0 0 0.25rem rgba(223, 171, 76, 0.2);
    outline: none;
}

/* Dark themed contact cards for Contact Page */
.contact-detail-card {
    padding: 35px 30px;
    height: 100%;
}

.contact-detail-card:hover {
    border-color: rgba(223, 171, 76, 0.4);
    transform: translateY(-5px);
}

.contact-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background: rgba(223, 171, 76, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 20px;
    margin-bottom: 20px;
}

/* Dark maps container */
.map-container {
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

/* Accordion luxury styling */
.accordion-item {
    background-color: var(--card-bg) !important;
    border: 1px solid rgba(255,255,255,0.06) !important;
    margin-bottom: 12px;
    border-radius: 8px !important;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.accordion-item:hover {
    border-color: rgba(223, 171, 76, 0.2) !important;
}

.accordion-button {
    background-color: transparent !important;
    color: #ffffff !important;
    font-size: 15px;
    padding: 20px 24px;
    border: none !important;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: var(--gold) !important;
    border-bottom: 1px solid rgba(223, 171, 76, 0.1) !important;
}

.accordion-button::after {
    filter: invert(1) sepia(100%) saturate(1000%) hue-rotate(330deg); /* Style the arrows gold */
}

.accordion-body {
    color: var(--light-gray);
    font-size: 14.5px;
    line-height: 1.7;
    padding: 24px;
}

/* ---------------------------------------------------- */
/* Global Master Core Footer Section                    */
/* ---------------------------------------------------- */
footer {
    background-color: #04070b;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0px 0 40px 0;
}

.footer-link {
    color: var(--light-gray); 
    text-decoration: none; 
    font-size: 14px; 
    transition: var(--transition-smooth); 
    display: inline-block; 
    margin-bottom: 12px;
}

.footer-link:hover { 
    color: var(--gold); 
    transform: translateX(4px);
}

.social-circle {
    width: 38px; 
    height: 38px; 
    border-radius: 50%; 
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    color: #fff; 
    text-decoration: none; 
    margin-right: 12px; 
    transition: var(--transition-smooth);
}

.social-circle:hover { 
    border-color: var(--gold); 
    color: var(--gold) !important; 
    background: rgba(223, 171, 76, 0.08); 
    transform: translateY(-3px);
}

/* Stats Counter Grid homepage override styling */
.stats-container {
    background: rgba(7, 11, 17, 0.85);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.stat-box { 
    border-bottom: 1px solid rgba(223, 171, 76, 0.1); 
}

@media (min-width: 992px) {
    .stat-box { 
        border-bottom: none; 
        border-right: 1px solid rgba(223, 171, 76, 0.1); 
    }
}

/* ---------------------------------------------------- */
/* Service Image Cards Layout Styling                   */
/* ---------------------------------------------------- */
.service-card {
    position: relative;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(223, 171, 76, 0.4);
    box-shadow: 0 15px 40px rgba(223, 171, 76, 0.08);
}

.service-img-wrapper {
    height: 200px;
    overflow: hidden;
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.service-card:hover .service-img-wrapper img {
    transform: scale(1.06);
}

.service-img-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(7, 11, 17, 0.95) 100%);
    pointer-events: none;
}

.service-icon-badge {
    position: absolute;
    bottom: -22px;
    left: 24px;
    width: 48px;
    height: 48px;
    background: var(--gold);
    color: #000000;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 8px 20px rgba(223, 171, 76, 0.35);
    z-index: 2;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon-badge {
    transform: scale(1.08) translateY(-2px);
    background-color: var(--gold-hover);
    box-shadow: 0 10px 25px rgba(223, 171, 76, 0.5);
}


.carousel-control-next, .carousel-control-prev{
        width: 5% !important;
}
/* Animation Pack */
.reveal{opacity:0;transform:translateY(50px);transition:all .8s ease}
.reveal.active{opacity:1;transform:translateY(0)}
.card,.service-card,.btn,.nav-link{transition:all .35s ease}
.card:hover,.service-card:hover{transform:translateY(-12px);box-shadow:0 18px 40px rgba(0,0,0,.18)}
.btn:hover{transform:translateY(-4px) scale(1.03);}
.nav-link{position:relative}
.nav-link:after{content:'';position:absolute;bottom:-4px;left:0;width:0;height:2px;background:#dfab4c;transition:.3s}
.nav-link:hover:after{width:100%}
img{transition:transform .6s ease}
.card:hover img,.service-card:hover img{transform:scale(1.06)}

.policy-effective {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(223, 171, 76, 0.08);
    border: 1px solid rgba(223, 171, 76, 0.2);
    border-radius: 4px;
    padding: 8px 16px;
    font-size: 12px;
    color: var(--gold);
    letter-spacing: 0.5px;
    margin-top: 20px;
}
.policy-highlight {
    background: rgba(223, 171, 76, 0.07);
    border-left: 3px solid var(--gold);
    border-radius: 0 6px 6px 0;
    padding: 16px 20px;
    margin: 20px 0;
}
.policy-toc {
    background: rgba(223, 171, 76, 0.04);
    border: 1px solid rgba(223, 171, 76, 0.12);
    border-radius: 8px;
    padding: 30px 35px;
    margin-bottom: 40px;
}
.policy-toc ol li a {
    font-size: 13.5px;
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.2s;
}
.policy-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
    transition: border-color 0.3s ease;
}
.policy-card-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(223, 171, 76, 0.1);
    border: 1px solid rgba(223, 171, 76, 0.25);
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 16px;
}
.policy-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
}
.policy-card p, .policy-card li {
    font-size: 14.5px;
    color: var(--light-gray);
    line-height: 1.8;
    margin-bottom: 10px;
}