* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   MARKET REPORT SECTION
======================================== */


.market-report {
    background: linear-gradient(0deg, #144633 0%, #427059 100%);
    padding: 200px 0 0 0;
    position: relative;
}

.market-report-header {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.market-report-content {
    color: white;
}

.report-date {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.market-report-content h2 {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0;
}

.report-description {
    color: white;
}

.report-description p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

/* ========================================
   MARKET STATISTICS SECTION
======================================== */

.market-stats {
    background: #f5f5f5;
    padding: 80px 0;
}

.market-stats-content {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-card {
    background: #FFF7EB;
    border-radius: 8px;
    padding: 40px;
    border: 1px solid #e8e8e8;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.stat-card.wide-card {
    max-width: 100%;
}

.stat-left h3 {
    font-size: 22px;
    font-weight: 600;
    color: #144633;
    margin-bottom: 12px;
    line-height: 1.3;
}

.stat-value {
    font-size: 18px;
    font-weight: 600;
    color: #c43b69;
}

.stat-right {
    color: #666;
}

.stat-right p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   MARKET ANALYSIS SECTION
======================================== */

.market-analysis {
    background: #e8e8e8;
    padding: 80px 0;
    position: relative;
}

.market-analysis-content {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
    text-align: center;
}

.market-analysis h2 {
    font-size: 42px;
    font-weight: 600;
    color: #144633;
    margin-bottom: 80px;
    line-height: 1.2;
}

.market-gauge {
    margin-bottom: 60px;
}

.gauge-container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.gauge-track {
    width: 100%;
    height: 20px;
    background: linear-gradient(to right, #427059 0%, #ef4a81 100%);
    border-radius: 10px;
    position: relative;
    margin-top: 20px;
}

.gauge-marker {
    position: absolute;
    top: -60px;
    left: 60%;
    transform: translateX(-50%);
    z-index: 2;
}

.marker-value {
    background: #144633;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    position: relative;
}

.marker-value::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #144633;
}

.gauge-marker::after {
    content: '';
    position: absolute;
    top: 55px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: white;
    border: 3px solid transparent;
    border-radius: 50%;
    box-shadow: 0 0 0 3px #ef4a81;
}

.gauge-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    padding: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.gauge-label {
    font-size: 14px;
    font-weight: 600;
    color: #666;
}

.gauge-label.cold {
    color: #427059;
}

.gauge-label.hot {
    color: #ef4a81;
}

.market-message {
    max-width: 800px;
    margin: 0 auto;
}

.market-status {
    font-size: 18px;
    font-weight: 600;
    color: #144633;
    margin-bottom: 20px;
    line-height: 1.4;
}

.market-details {
    font-size: 16px;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   PRICING ADVICE SECTION
======================================== */

.pricing-advice {
    background: #f5f5f5;
    padding: 80px 0;
}

.pricing-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.pricing-left h3,
.pricing-right-col h3 {
    font-size: 32px;
    font-weight: 600;
    color: #144633;
    margin-bottom: 20px;
    line-height: 1.3;
}

.pricing-left p,
.pricing-right-col p {
    font-size: 16px;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   COMPARABLE PROPERTIES SECTION
======================================== */

.comparable-properties {
    background: #f8f9fa;
    padding: 80px 0;
}

.comparable-content {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
}

.comparable-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 40px;
}

.comparable-title h2 {
    font-size: 42px;
    font-weight: 600;
    color: #144633;
    margin-bottom: 20px;
    line-height: 1.2;
}

.comparable-title p {
    font-size: 16px;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.comparable-description {
    text-align: right;
}

.comparable-description p {
    font-size: 16px;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
    margin: 0;
    max-width: 350px;
    margin-left: auto;
}

.properties-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    margin-bottom: 20px;
}

.properties-table table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.properties-table thead {
    background: linear-gradient(90deg, #EF4A81 0%, #C33A68 100%);
}

.properties-table th {
    padding: 20px 16px;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    color: white;
    border: none;
}

.properties-table td {
    padding: 16px;
    text-align: left;
    font-size: 14px;
    color: #333;
    border-bottom: 1px solid #e8e8e8;
}

.properties-table tbody tr:last-child td {
    border-bottom: none;
}

.properties-table tbody tr:hover {
    background: #f8f9fa;
}

/* ========================================
   COMPARABLE PROPERTIES SELLING SECTION
======================================== */

.comparable-selling {
    background: #F1F1F1;
    padding: 80px 0;
}

.selling-content {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
}

.selling-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 40px;
}

.selling-title h2 {
    font-size: 42px;
    font-weight: 600;
    color: #144633;
    margin-bottom: 20px;
    line-height: 1.2;
}

.selling-title p {
    font-size: 16px;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.selling-description {
    text-align: right;
}

.selling-description p {
    font-size: 16px;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
    margin: 0;
    max-width: 350px;
    margin-left: auto;
}

.selling-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    margin-bottom: 20px;
}

.selling-table table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.selling-table thead {
    background: linear-gradient(90deg, #144633 0%, #427059 100%);
}

.selling-table th {
    padding: 20px 16px;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    color: white;
    border: none;
}

.selling-table td {
    padding: 16px;
    text-align: left;
    font-size: 14px;
    color: #333;
    border-bottom: 1px solid #e8e8e8;
}

.selling-table tbody tr:last-child td {
    border-bottom: none;
}

.selling-table tbody tr:hover {
    background: #f8f9fa;
}

/* ========================================
   HOW WE CAN HELP SECTION
======================================== */

.how-we-help {
    min-height: 100vh;
    background: #f8f9fa;
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

/* Left Semi-Circle */
.help-left {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50vw;
    min-width: 600px;
    height: 522px;
    z-index: 2;
}

.semi-circle-container-left {
    position: relative;
    width: 100%;
    height: 100%;
}

.semi-circle-background-left {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 0 300px 300px 0;
    box-shadow: 0 14px 11px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.house-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0 300px 300px 0;
    overflow: hidden;
}

.house-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.building-icon {
    position: absolute;
    top: 50px;
    right: -47px;
    width: 94px;
    height: 94px;
    background: linear-gradient(135deg, #ef4a81 0%, #c23a67 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 19px 47px rgba(0, 0, 0, 0.4);
    z-index: 4;
}

/* Right Content */
.help-right {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    min-height: 600px;
}

.help-content {
    width: 50%;
    max-width: 600px;
    margin-left: auto;
    padding-left: 60px;
}

.help-content h2 {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    color: #144633;
    margin-bottom: 30px;
}

.help-points {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.help-point {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.help-point .point-icon {
    width: 40px;
    height: 40px;
    background: rgba(196, 59, 105, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 4px;
}

.help-point .point-content {
    flex: 1;
}

.help-point .point-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #c43b69;
    margin-bottom: 8px;
    line-height: 1.3;
}

.help-point .point-content p {
    font-size: 16px;
    font-weight: 400;
    color: #666;
    line-height: 1.5;
    margin: 0 0 8px 0;
}

.help-footer {
    font-size: 16px;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   TRANSPARENCY STATEMENT SECTION
======================================== */

.transparency-statement {
    min-height: 60vh;
    background: url("https://awesomeagents.co.uk/wp-content/themes/awesome-agents-only-wordpress-theme/assets/images/v725_2074.png") center center / cover no-repeat;
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.transparency-statement::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(20, 70, 51, 0.8) 0%, rgba(66, 112, 89, 0.6) 100%);
    z-index: 1;
}

.transparency-content {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    z-index: 2;
    text-align: center;
}

.transparency-content h2 {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    color: white;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.transparency-content p {
    font-size: 18px;
    font-weight: 400;
    color: #f1f1f1;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* ========================================
   PROPERTY VIDEO CTA SECTION
======================================== */

.property-video-cta {
    background: linear-gradient(180deg, #EF4A81 0%, #C33A68 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

/* Left Content */
.video-cta-content {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    min-height: 600px;
}

.video-cta-inner {
    width: 50%;
    max-width: 600px;
    padding-right: 60px;
}

.video-cta-inner h2 {
    font-size: 48px;
    font-weight: 600;
    color: white;
    margin-bottom: 40px;
    line-height: 1.2;
}

.cta-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.cta-step {
    display: flex;
    align-items: center;
    gap: 16px;
}

.step-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-step span {
    font-size: 18px;
    font-weight: 400;
    color: white;
    line-height: 1.4;
}

.cta-footer {
    font-size: 16px;
    color: white;
    line-height: 1.6;
    margin: 0;
}

.cta-footer strong {
    text-decoration: underline;
}

/* Right Image */
.video-cta-right {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50vw;
    height: 600px;
    z-index: 2;
}

.video-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 300px 0 0 300px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.video-image {
    width: 100%;
    height: 100%;
}

.video-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ========================================
   RESPONSIVE STYLES
======================================== */

/* 1200px and below */

/* 768px and below */
@media (max-width: 768px) {

    /* Market Report */
    .market-report {
        padding: 50px 0;
    }

    .market-report-header {
        padding: 0 20px;
        gap: 30px;
    }

    .market-report-content h2 {
        font-size: 32px;
    }

    .report-description p {
        font-size: 15px;
    }

    /* Market Stats */
    .market-stats {
        padding: 50px 0;
    }

    .market-stats-content {
        padding: 0 20px;
        gap: 25px;
    }

    .stat-card {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 25px;
    }

    .stat-left h3 {
        font-size: 20px;
    }

    .stat-value {
        font-size: 16px;
    }

    /* Market Analysis */
    .market-analysis {
        padding: 50px 0;
    }

    .market-analysis-content {
        padding: 0 20px;
    }

    .market-analysis h2 {
        font-size: 28px;
    }

    .market-status {
        font-size: 15px;
    }

    .market-details {
        font-size: 14px;
    }

    /* Pricing Advice */
    .pricing-container {
        padding: 0 20px;
        gap: 30px;
    }

    .pricing-left h3,
    .pricing-right-col h3 {
        font-size: 24px;
    }

    /* Comparable Properties */
    .comparable-content {
        padding: 0 20px;
    }

    .comparable-title h2 {
        font-size: 28px;
    }

    /* Comparable Selling */
    .selling-content {
        padding: 0 20px;
    }

    .selling-title h2 {
        font-size: 28px;
    }

    /* How We Can Help */
    .help-right {
        padding: 0 15px;
    }

    .help-content h2 {
        font-size: 24px;
    }

    /* Transparency Statement */
    .transparency-statement {
        padding: 60px 0;
        min-height: 40vh;
    }

    .transparency-content {
        padding: 0 20px;
    }

    .transparency-content h2 {
        font-size: 28px;
    }

    .transparency-content p {
        font-size: 14px;
    }

    /* Property Video CTA */
    .video-cta-content {
        padding: 0 20px;
    }

    .video-cta-inner h2 {
        font-size: 28px;
    }

    .cta-step span {
        font-size: 14px;
    }

    .video-cta-right {
        height: 280px;
    }
}