.heading-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}
.content-text {
    font-size: 18px;
    line-height: 1.8;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #d1d1d1;
    font-family: var(--font-01);
}

.img-custom {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
}

.section-padding {
    padding: 80px 0;
    /*background-color: #000;*/
    background: radial-gradient(circle at center, #0e3552 0%, #000 70%);
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    padding: 120px 0 60px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), #000), url('https://images.unsplash.com/photo-1449844908441-8829872d2607?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
}

/* --- Stats Row --- */
.stats-row {
    border-top: 1px solid rgba(205, 168, 95, 0.3);
    border-bottom: 1px solid rgba(205, 168, 95, 0.3);
    padding: 40px 0;
    margin: 60px 0;
}

.stat-item {
    text-align: center;
    border-right: 1px solid rgba(205, 168, 95, 0.3);
}

.stat-item:last-child {
    border-right: none;
}

.stat-value {
    color: #cda85f;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-family: var(--font-02);
}

.stat-label {
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 400;
    font-family: var(--font-01);
}

/* --- Full Width Divider --- */
.full-width-divider {
    width: 100%;
    height: 450px;
    object-fit: cover;
    margin-bottom: 0;
}

/* --- Light Section (Buying Your Home) --- */
.section-light {
    background-color: #fff;
    color: #000;
    padding: 100px 0;
}

.section-light .content-text {
    color: #444;
}

.section-light .sub-heading {
    color: #888;
}

.section-light .main-heading {
    color: #000;
}

/* Custom Lists */
.custom-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.custom-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 15px;
    font-size:18px;
    line-height: 1.6;
    color: #d1d1d1;
}

.section-light .custom-list li {
    color: #444;
}

.custom-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background-color: #cda85f;
    border-radius: 50%;
}

.list-title {
    font-weight: 700;
    color: #cda85f;
    display: block;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-size:16px;
    letter-spacing: 1px;
}

/* --- Grey Section (Focus) --- */
.section-grey {
    background-color: #f4f4f4;
    color: #000;
    text-align: center;
    padding: 80px 0;
}

.section-grey .main-heading {
    color: #000;
    font-size: 2rem;
    justify-content: center;
    margin-bottom: 20px;
}

.section-grey .content-text {
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

/* --- Pagination --- */
.pagination-row {
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
}

.pagination-row a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.pagination-row a:hover {
    color: #cda85f;
}

/* --- Contact Form --- */
.form-section {
    padding: 80px 0;
}

.form-material {
    background: transparent !important;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    border-radius: 0;
    padding: 15px 0;
    color: #fff;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.form-material::placeholder {
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.form-material:focus {
    box-shadow: none;
    border-bottom-color: #cda85f;
    color: #fff;
}

.btn-submit {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 40px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 30px;
    transition: all 0.3s;
    border-radius: 0;
}

.btn-submit:hover {
    background-color: var(--color-1);
    color: #fff;
}

/* --- Responsive Design --- */
@media (max-width: 991px) {
    .stat-item { border-right: none; border-bottom: 1px solid rgba(205, 168, 95, 0.3); padding: 20px 0; }
    .stat-item:last-child { border-bottom: none; }
    .stats-row { margin: 30px 0; padding: 0; }
    .img-custom { min-height: 300px; margin-top: 30px; }
}

@media (max-width: 768px) {
    .main-heading { font-size: 2rem; }
    .section-padding { padding: 50px 0; }
    .full-width-divider { height: 250px; }
}