/* ==================== VARIABLES & RESETS ==================== */
:root {
    /* Corporate Colors */
    --primary: #000000;
    /* Navy Blue */
    --primary-light: #717074;
    --secondary: #F47D30;
    /* PNG Red */
    --secondary-hover: #F47D30;
    --accent: #F6AD55;
    /* Gold/Yellow */

    /* Background & Text */
    --bg-light: #F7FAFC;
    --bg-white: #FFFFFF;
    --bg-gray: #EDF2F7;
    --text-main: #2D3748;
    --text-muted: #718096;
    --text-light: #A0AEC0;

    /* FONTS */
    --font-main: 'Nunito Sans', Helvetica, Arial, sans-serif;
    --serif: 'Cormorant Garamond', serif;
    --sans: 'Jost', sans-serif;

    /* UI Elements */
    --border: #E2E8F0;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;

    /* Shadows & Effects */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.18);

    /* Transitions */
    --trans-fast: 0.2s ease;
    --trans-normal: 0.3s ease;
    --trans-slow: 0.5s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Avenir', 'Avenir Next', 'Arial', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

section {
    scroll-margin-top: 80px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ==================== TYPOGRAPHY & UTILITIES ==================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
    position: relative;
}

.section-light {
    background-color: var(--bg-white);
}

.section-gray {
    background-color: var(--bg-gray);
}

.section-dark {
    background-color: var(--primary);
    color: var(--bg-white);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--bg-white);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-dark .section-header h2 {
    color: var(--bg-white);
}

.section-header p {
    color: #F7FAFC;
    font-size: 0.98rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-dark .section-header p {
    color: #CBD5E0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--trans-normal);
    border: none;
    gap: 8px;
}

.btn-primary {
    background-color: var(--secondary);
    color: var(--bg-white);
}

.btn-primary:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--bg-white);
    color: var(--bg-white);
}

.btn-outline:hover {
    background-color: var(--bg-white);
    color: var(--primary);
}

.btn-dark {
    background-color: var(--primary);
    color: white;
}

.btn-dark:hover {
    background-color: var(--primary-light);
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-main);
}

.form-control,
.form-select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--trans-fast);
    background-color: var(--bg-white);
}

.form-control:focus,
.form-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
}

/* Animations & Observers */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

/* ==================== HERO SECTION ==================== */
.hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: url('/assets/images/sellhero.webp') center/cover no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    color: var(--bg-white);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 500;
    font-family: var(--serif);
    line-height: 1.2;
    margin-bottom: 20px;
    animation: slideUp 1s ease forwards;
}

.hero p {
    font-size: 0.99rem;
    margin-bottom: 40px;
    opacity: 0.9;
    animation: slideUp 1s ease 0.2s forwards;
    opacity: 0;
}

.hero-btns {
    display: flex;
    gap: 15px;
    animation: slideUp 1s ease 0.4s forwards;
    opacity: 0;
}

.floating-stats {
    position: absolute;
    bottom: -50px;
    right: 10%;
    z-index: 20;
    display: flex;
    gap: 20px;
    animation: float 6s ease-in-out infinite;
}

.stat-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
    min-width: 150px;
    color: var(--text-main);
}

.stat-card .number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-card .label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* ==================== BENEFITS SECTION ==================== */
#benefits {
    background: #4D4D4D;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: #303030;
    padding: 40px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--trans-normal);
    border: 1px solid var(--bg-gray);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--secondary);
    transition: var(--trans-normal);
}

.benefit-card:hover .benefit-icon {
    background: var(--primary);
    color: var(--bg-white);
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--bg-white);
}

.benefit-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ==================== VALUATION CALCULATOR ==================== */
#valuation {
    background: #3D3D3D;
}

.valuation-wrapper {
    background: url('https://images.unsplash.com/photo-1577413693427-0da5f86df442?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover fixed;
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.valuation-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #303030;
}

.valuation-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.valuation-info h3 {
    font-family: var(--serif);
    color: var(--bg-white);
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.valuation-info p {
    color: #E2E8F0;
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.valuation-form-box {
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.calc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.calc-full {
    grid-column: 1 / -1;
}

.valuation-results {
    display: none;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.valuation-results.active {
    display: block;
    animation: slideUp 0.5s ease;
}

.estimate-val {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin: 10px 0;
}

.estimate-range {
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.estimate-range span {
    font-weight: 600;
    color: var(--text-main);
}

/* ==================== HOW IT WORKS (TIMELINE) ==================== */
#how-it-works {
    background: #2D2D2D;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--secondary);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    border-radius: 4px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
    margin-bottom: 40px;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    right: -25px;
    background-color: var(--bg-white);
    border: 4px solid var(--secondary);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--secondary);
    box-shadow: var(--shadow-md);
}

.timeline-item:nth-child(even) .timeline-icon {
    left: -25px;
}

.timeline-content {
    padding: 30px;
    background-color: #303030;
    position: relative;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.step-num {
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.timeline-content h3 {
    color: var(--bg-white);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.timeline-content p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ==================== LISTING FORM ==================== */
.form-section {
    background-color: var(--bg-light);
}

.listing-form {
    background: var(--bg-white);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-section-title {
    font-size: 1.4rem;
    color: var(--primary);
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--bg-gray);
    font-weight: 700;
}

.form-section-title:first-child {
    margin-top: 0;
}

/* Checkboxes */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-main);
}

.checkbox-label input {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary);
}

/* Image Upload Drag & Drop */
.upload-zone {
    border: 2px dashed var(--text-light);
    border-radius: var(--radius-md);
    padding: 40px;
    text-align: center;
    background: var(--bg-gray);
    cursor: pointer;
    transition: var(--trans-fast);
}

.upload-zone:hover,
.upload-zone.dragover {
    border-color: var(--primary);
    background: rgba(26, 54, 93, 0.05);
}

.upload-zone i {
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.upload-zone p {
    color: var(--text-muted);
    margin-bottom: 10px;
}

.upload-zone .btn-upload {
    margin-top: 15px;
}

.upload-requirements {
    font-size: 0.85rem;
    color: var(--secondary);
    margin-top: 10px;
    text-align: center;
}

.image-previews {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.preview-item {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-sm);
}

.preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.remove-img {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(229, 62, 62, 0.9);
    color: white;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: var(--trans-fast);
}

.remove-img:hover {
    background: var(--secondary);
    transform: scale(1.1);
}

.form-error {
    color: var(--secondary);
    font-size: 0.9rem;
    margin-top: 5px;
    display: none;
}

/* ==================== FEATURED PROPERTIES ==================== */
.filters-bar {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    background: var(--bg-white);
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    flex-wrap: wrap;
}

.filter-group {
    flex: 1;
    min-width: 200px;
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.property-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--trans-normal);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}

.property-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.card-img {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.card-body {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 5px;
}

.card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-main);
}

.card-location {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.card-features {
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid var(--border);
    margin-top: auto;
    margin-bottom: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.feature-item i {
    color: var(--text-light);
}

.property-card .btn {
    width: 100%;
}

/* ==================== MARKET INSIGHTS ==================== */
.insights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.insight-item h4 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 10px;
    line-height: 1;
}

.insight-item p {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--bg-white);
}

/* ==================== TESTIMONIALS ==================== */
.testimonial-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px 0;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 20px;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 1px solid var(--border);
}

.test-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 3px solid var(--bg-gray);
}

.test-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 25px;
    position: relative;
}

.test-text::before,
.test-text::after {
    content: '"';
    font-size: 1.5rem;
    color: var(--primary-light);
    opacity: 0.3;
}

.test-author {
    font-weight: 700;
    color: var(--text-main);
    font-size: 1.1rem;
}

.test-location {
    color: var(--secondary);
    font-size: 0.9rem;
    font-weight: 600;
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: var(--trans-fast);
}

.slider-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* ==================== FAQ ACCORDION ==================== */
#faq {
    background: #1D1D1D;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    margin-bottom: 15px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary);
    transition: var(--trans-fast);
}

.faq-question:hover {
    background-color: var(--bg-gray);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background-color: var(--bg-white);
}

.faq-answer-inner {
    padding: 0 25px 25px;
    color: var(--text-muted);
    line-height: 1.7;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--secondary);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* Arbitrary large max-height for transition */

/* ==================== CONTACT SECTION ==================== */
.contact-section {
    background: #0A0A0A;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    padding-right: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(26, 54, 93, 0.1);
    color: var(--secondary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    shrink: 0;
}

.contact-text h4 {
    font-family: var(--serif);
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--bg-white);
}

.contact-text p {
    color: #F7FAFC;
    font-size: 0.85rem;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 15px 30px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--trans-fast);
    margin-top: 20px;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: white;
}

.mini-form {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

/* ==================== BOTTOM CTA ==================== */
.bottom-cta {
    text-align: center;
}

.bottom-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

/* ==================== FLOATING ELEMENTS & MODALS ==================== */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 900;
    box-shadow: var(--shadow-xl);
    border-radius: 50px;
    padding: 15px 30px;
    font-size: 1.1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.sticky-cta.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--secondary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 900;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    border: none;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
}

/* Success Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--trans-normal);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--bg-white);
    width: 90%;
    max-width: 600px;
    border-radius: var(--radius-lg);
    padding: 40px;
    transform: scale(0.9);
    transition: var(--trans-normal);
    box-shadow: var(--shadow-xl);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.modal-icon {
    width: 70px;
    height: 70px;
    background: #C6F6D5;
    color: #38A169;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.modal-header h3 {
    font-size: 1.8rem;
    color: var(--text-main);
}

.modal-body {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
    margin-bottom: 30px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.summary-item span:first-child {
    color: var(--text-muted);
}

.summary-item span:last-child {
    font-weight: 600;
    color: var(--text-main);
    text-align: right;
}

.modal-footer {
    text-align: center;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .valuation-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .insights-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .floating-stats {
        right: 5%;
        bottom: -30px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .floating-stats {
        display: none;
        /* Hide on mobile to clean up space */
    }

    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 80px;
        padding-right: 0;
    }

    .timeline-item:nth-child(even) {
        left: 0%;
    }

    .timeline-icon {
        left: 6px !important;
        right: auto !important;
    }

    .listing-form {
        padding: 30px 20px;
    }

    .image-previews {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-btns {
        flex-direction: column;
    }

    .sticky-cta {
        width: calc(100% - 40px);
        right: 20px;
        left: 20px;
        bottom: 20px;
        text-align: center;
    }

    .back-to-top {
        bottom: 80px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .insights-grid {
        grid-template-columns: 1fr;
    }

    .hero-btns {
        flex-direction: column;
    }

    .image-previews {
        grid-template-columns: 1fr;
    }

    .calc-grid {
        grid-template-columns: 1fr;
    }
}