/* --- Global Variables --- */
:root {
    /* ... existing colors ... */
    --accent-color-light: #e6ffe6; /* Light green background for diamond */
    --accent-color-dark: #38b000; /* Dark green for diamond icon */
    --text-color: #333; /* Dark text color */
    --dark-btn-bg: #1e3f5f; /* Dark button background for "Learn More" */
    --tagline-color: #3b74b1; /* Blue for 'Meet Your Local Expert' */
}

/* Common Padding Utility */
.section-padding {
    padding: 80px 0; /* Ya jitna padding aapko image mein chahiye */
}

/* Dark Button Style */
.btn-dark-primary {
    background-color: var(--dark-btn-bg);
    color: var(--text-color-light);
    border-color: var(--dark-btn-bg);
    margin-top: 20px;
}
.btn-dark-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* --- Global Reset & Utilities --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: var(--font-body);
    line-height: 1.6;
}
.container {
    max-width: 1200px; 
    width: 90%;
    margin: 0 auto;
}
a { text-decoration: none; }
#content, .site-main { padding: 0; margin: 0; } /* Elementor ke liye zaroori */

/* --- Button Styling --- */
.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: capitalize;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}


/* ==================================================== */
/* HEADER STYLING */
/* ==================================================== */

.site-header {
    background-color: #0c192c; /* Default background for internal pages */
    padding: 20px 0;
    width: 100%;
    z-index: 100;
}

/* Transparent floating header for Hero section only */
.site-header.hero-float {
    position: absolute; 
    top: 0;
    background: transparent; 
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Styling */
.site-logo .logo-text {
    font-size: 24px;
    font-weight: bold;
    color: var(--text-color-light); /* White for the dark hero background */
}

/* Navigation Styling */
.main-menu-list {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.main-menu-list li {
    margin: 0 15px;
}

.main-menu-list li a {
    color: var(--text-color-light); 
    font-weight: 500;
}

/* Header CTA button: Simple white outline */
.header-cta .header-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: var(--text-color-light);
    padding: 10px 20px;
}
.header-cta .header-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}


/* ==================================================== */
/* HERO SECTION STYLING */
/* ==================================================== */

.hero-section {
    position: relative;
    height: 100vh; 
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    
    /* !!! BACKGROUND IMAGE URL ZAROOR CHANGE KAREIN !!! */
    background-image: url('../images/hero-bg.jpg'); 
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark-overlay-color); 
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 5; 
    color: var(--text-color-light);
    max-width: 800px;
}

.hero-content h1 {
    font-size: 80px; 
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.85;
}

.hero-buttons .btn {
    margin: 0 10px;
    font-size: 16px;
}

/* Primary Button (Download Free Guide) */
.btn-cta-download {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--secondary-color);
}
.btn-cta-download:hover {
    background-color: #2a5f97; 
    border-color: #2a5f97;
}

/* Secondary Button (View Listings) */
.btn-cta-view {
    background-color: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}
.btn-cta-view:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* --- Expert Section Styling --- */
.expert-section {
    background: var(--secondary-color); /* White background */
}

.expert-layout {
    display: flex;
    align-items: center;
    gap: 60px; /* Space between image and content */
}

/* Left Side: Image Wrapper */
.expert-image-wrap {
    flex: 0 0 50%; /* Image ko 50% width do */
    max-width: 50%;
    position: relative;
    border-radius: 10px; /* Rounded corners */
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.expert-photo {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Right Side: Content */
.expert-content {
    flex: 0 0 50%; /* Content ko 50% width do */
    max-width: 50%;
    padding: 30px 0;
}

.section-tagline {
    color: var(--tagline-color);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.expert-content h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--text-color);
}

.expert-bio {
    margin-bottom: 30px;
    color: #555;
    line-height: 1.7;
}

/* Features Grid Styling */
.expert-features-grid {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    width: 50%; /* Two items per row */
    padding: 10px 0;
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--accent-color-light);
    border-radius: 5px;
    font-size: 20px; /* Emoji size ke liye, ya FontAwesome icon use karein */
    margin-right: 15px;
    color: var(--accent-color-dark); /* Agar FontAwesome use kar rahe hain */
}

.feature-text h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.feature-text p {
    font-size: 14px;
    margin: 0;
    color: #777;
}

/* --- Outline Button Styling --- */
.btn-outline-primary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 10px 25px;
    font-size: 14px;
    font-weight: 500;
}
.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

/* Section Header Layout */
.section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.section-header-flex h2 {
    font-size: 36px;
    color: var(--text-color);
    margin-bottom: 10px;
}
.section-description {
    max-width: 600px;
    color: #666;
}

/* --- Neighborhoods Grid Styling --- */
.neighborhoods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
    gap: 25px; /* Space between cards */
}

.neighborhood-card {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.neighborhood-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.card-image-wrap {
    width: 100%;
    height: 450px; /* Card ki height */
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end; /* Content ko bottom mein laane ke liye */
    transition: transform 0.5s ease;
}

/* Image Zoom on Hover */
.neighborhood-card:hover .card-image-wrap {
    transform: scale(1.03);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient: Taki bottom mein text clear dikhe */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 60%);
    z-index: 1;
}

.card-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    color: var(--text-color-light);
}

.card-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.card-content p {
    font-size: 14px;
    font-weight: 300;
    opacity: 0.8;
}