:root {
    --primary: #1f2937;
    --accent-red: #ff0000;
    --accent-green: #22c55e;
    --accent-yellow: #ffff00;
    --text-white: #ffffff;
    --text-muted: #d1d5db;
    --bg-dark: #111827;
    --font-main: 'Fira Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-main);
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* --- Top Bar --- */
.top-bar {
    background: #0f172a;
    padding: 0.75rem 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.top-bar-content {
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
}

.top-bar-content a {
    color: inherit;
    text-decoration: none;
}

.top-bar-content a:hover {
    text-decoration: underline;
}

.icon-red {
    color: var(--accent-red);
    margin-right: 0.5rem;
    font-style: normal;
}

/* --- Navigation --- */
.glass-nav {
    background: #ffffff;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 2rem;
}

.logo {
    margin-right: auto;
}

.logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: #374151;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-red);
}

.nav-links li {
    display: flex;
    align-items: center;
}

.nav-links li::after {
    content: "|";
    margin-left: 1.5rem;
    color: #cbd5e1;
}

.nav-links li:last-child::after {
    display: none;
}

/* Hamburger Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: #374151;
    border-radius: 2px;
    transition: 0.3s;
}

/* Animation for Toggle */
.menu-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* --- Hero --- */
.hero {
    padding: 12rem 0 0;
    position: relative;
    min-height: 80vh;
    overflow: hidden;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

/* --- Hero Text Animations --- */
.slide .hero-container {
    opacity: 0;
    transition: opacity 0.5s ease-in-out 1.5s; /* Wait for background fade */
}

.slide.active .hero-container {
    opacity: 1;
}

[class*="anim-fade-"] {
    opacity: 0;
}

.slide.active .anim-fade-left {
    animation: slideInLeft 1s forwards 1.8s;
}

.slide.active .anim-fade-right {
    animation: slideInRight 1s forwards 2s;
}

.slide.active .anim-fade-up {
    animation: slideInUp 1s forwards 2.2s;
}

@keyframes slideInLeft {
    from { transform: translateX(-50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
    from { transform: translateX(50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.hero-container {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-left {
    max-width: 550px;
    background: rgba(0,0,0,0.65); 
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

.hero-pre {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.hero-title-red {
    color: var(--accent-red);
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.experts {
    display: block;
    color: #ffffff;
}

.hero-sub {
    font-size: 0.95rem;
    color: #e5e7eb;
    margin-bottom: 2rem;
    font-weight: 400;
}

/* --- Buttons --- */
.btn {
    padding: 0.75rem 2rem;
    border-radius: 4px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
}

.btn-red {
    background: var(--accent-red);
    color: white;
}

.btn-green {
    background: #00cc00;
    color: white;
    font-size: 1.1rem;
}

.nav-cta.btn-green {
    font-size: 0.95rem;
    padding: 0.6rem 1.5rem;
}

/* --- Hero Cards --- */
.hero-cards {
    display: flex;
    max-width: 1200px;
    margin: -50px auto 4rem; /* Overlap the hero */
    padding: 0 1.5rem;
    gap: 0; /* Connecting cards */
    position: relative;
    z-index: 20;
}

.hero-card {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2.5rem;
    background: #0f172a; /* Navy background */
    color: white;
}

.hero-card.red {
    background: #e11d48; /* Bright red */
    transform: scale(1.05); /* Slightly bigger to emphasize */
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.hero-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.hero-card p {
    font-size: 0.85rem;
    color: #e2e8f0;
}

.hero-card-content {
    flex: 1;
}

.hero-card .icon-circle {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f172a;
    font-size: 1.5rem;
}

.hero-card.red .icon-circle {
    color: #e11d48;
}

/* --- Modal --- */
.modal {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
}

.modal.show {
    opacity: 1;
    visibility: visible;
}

.modal.hidden { display: none; }

.modal-content {
    background: #000;
    width: 95%;
    max-width: 600px;
    padding: 2rem;
    border: 3px solid var(--accent-green);
    position: relative;
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.3);
}

.modal-close {
    position: absolute;
    top: -3px; right: -3px;
    background: var(--accent-green);
    color: #000;
    border: none;
    width: 32px; height: 32px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-title {
    color: var(--accent-yellow);
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.modal-sub {
    font-size: 0.85rem;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.input-group { margin-bottom: 1rem; }
.input-group label { display: block; font-size: 0.8rem; margin-bottom: 0.2rem; font-weight: 600; }
.input-group input {
    width: 100%;
    padding: 0.6rem;
    border: 1px solid #444;
    background: #fff;
    color: #000;
    font-size: 0.95rem;
}

.btn-green-full {
    background: var(--accent-green);
    color: #000;
    width: auto;
    display: inline-block;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: 800;
    text-transform: none;
}

.modal-disclaimer {
    font-size: 0.75rem;
    margin-top: 1rem;
    font-weight: 700;
}

/* --- Grid & Cards --- */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.card {
    background: rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: 8px;
}

.card-icon {
    font-size: 1.5rem;
    color: var(--accent-yellow);
    margin-bottom: 1rem;
}

.hidden { display: none; }
.feedback { margin-top: 1rem; padding: 1rem; text-align: center; border-radius: 4px; }
.feedback.success { background: rgba(34, 197, 94, 0.2); color: #4ade80; }
.feedback.error { background: rgba(239, 68, 68, 0.2); color: #f87171; }

/* --- Subpages --- */
.page-hero {
    padding: 6rem 0 3rem;
    text-align: center;
    background: linear-gradient(to bottom, #0f172a, #020617);
}

.page-hero h1,
.page-hero .block-heading {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.property-grid {
    padding: 3rem 0;
}

.property-card {
    padding: 0;
    overflow: hidden;
}

.property-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.property-card h4,
.property-card p {
    padding: 1.2rem 1.2rem 0.4rem;
}

.property-card p {
    padding-bottom: 1.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.why-auction {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.flex-row {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.image-side img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* --- COMPREHENSIVE MOBILE RESPONSIVENESS --- */
@media (max-width: 968px) {
    /* Top Bar */
    .top-bar-content {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.5rem 1rem;
        padding: 0.5rem 0;
    }
    .top-item {
        font-size: 0.75rem;
        white-space: nowrap;
    }

    /* Navigation */
    .menu-toggle {
        display: flex;
    }
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        padding: 2rem;
        z-index: 1050;
    }
    .nav-links.active {
        display: flex;
        right: 0;
    }
    .nav-links li::after {
        display: none;
    }
    .nav-links a {
        font-size: 1.5rem;
        color: #111827;
    }
    .nav-cta {
        display: none;
    }

    /* Hero Section */
    .hero {
        padding: 8rem 0 2rem;
        min-height: 65vh;
    }
    .hero-left {
        padding: 2rem 1.5rem;
        max-width: 100%;
        text-align: center;
        margin: 1rem;
    }
    .hero-pre {
        font-size: 1.25rem;
    }
    .hero-title-red {
        font-size: 2.4rem;
        line-height: 1.2;
    }
    .hero-sub {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }

    /* Hero Cards */
    .hero-cards {
        flex-direction: column;
        margin: 0 auto 3rem;
        max-width: 100%;
        padding: 0 1rem;
    }
    .hero-card {
        padding: 1.5rem;
        gap: 1rem;
        transform: none !important;
        box-shadow: none !important;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .hero-card h4 {
        font-size: 1rem;
    }
    .hero-card p {
        font-size: 0.8rem;
    }

    /* Grids & Layouts */
    .grid-3 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .grid-2 {
        grid-template-columns: 1fr;
    }
    .flex-row {
        flex-direction: column;
        text-align: center;
        gap: 2.5rem;
    }
    h2 {
        font-size: 1.8rem !important;
    }

    /* Subpages */
    .page-hero {
        padding: 6rem 0 3rem;
    }
    .page-hero h1 {
        font-size: 2.2rem;
    }
    .property-grid {
        padding: 2rem 0;
    }
}

/* --- The Process --- */
.process-section {
    padding: 5rem 0;
    background: #ffffff;
    text-align: center;
    color: #111;
}

.process-section .block-heading {
    color: #111;
}

.section-pre-red {
    color: var(--accent-red);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.block-heading-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
}

.heading-line {
    width: 50px;
    height: 3px;
    background: var(--accent-red);
}

.heading-line.white {
    background: #ffffff;
}

.block-heading {
    font-size: 2.8rem;
    font-weight: 800;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 0;
}

.block-text-red {
    background: var(--accent-red);
    color: #fff !important;
    padding: 0.2rem 1rem;
}

.process-list {
    list-style-type: decimal;
    list-style-position: inside;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.15rem;
    color: #4b5563;
    line-height: 1.8;
    text-align: center;
}

.process-list li {
    margin-bottom: 0.5rem;
}

/* --- Reasons Section --- */
.reasons-section {
    padding: 5rem 0;
    background: var(--accent-red) !important;
    color: #ffffff !important;
    text-align: center;
}

.section-pre-white {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
    text-transform: uppercase;
}

.block-heading.light {
    color: #ffffff !important;
}

.block-text-white {
    background: #ffffff;
    color: var(--accent-red) !important;
    padding: 0.2rem 1rem;
}

.reasons-sub {
    max-width: 800px;
    margin: 0 auto 3.5rem;
    font-size: 1.05rem;
    opacity: 0.9;
    line-height: 1.6;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3.5rem 2.5rem;
    text-align: left;
    max-width: 1100px;
    margin: 0 auto;
}

.reason-item {
    display: flex;
    gap: 1.2rem;
}

.reason-icon {
    min-width: 32px;
    max-width: 32px;
    height: 32px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reason-icon svg {
    width: 100%;
    height: 100%;
}

.reason-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.reason-content p {
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.85;
}

/* --- Footer CTA --- */
.footer-cta-wrapper {
    background: #ffffff;
    padding: 5rem 0;
    position: relative;
}

.footer-cta-box {
    background: #ffffff;
    border: 1px solid #f3f4f6;
    padding: 2.5rem 3rem;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-radius: 8px;
    position: relative;
    z-index: 10;
}

.footer-cta-box::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 10%;
    right: 10%;
    height: 15px;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.1) 0%, transparent 70%);
    z-index: -1;
}

.cta-left {
    max-width: 70%;
}

.cta-left h3 {
    font-size: 1.5rem;
    color: #111827;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.cta-left h3 span {
    color: var(--accent-red);
    font-style: italic;
    font-weight: 800;
}

.cta-left p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* --- Main Footer --- */
.main-footer {
    background: #020617;
    color: #94a3b8;
    padding: 5rem 0 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.address-block {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #ffffff;
    font-weight: 600;
    max-width: 400px;
}

.copyright-bar {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 2rem 0;
    text-align: center;
    font-size: 0.85rem;
}

.bottom-red-line {
    height: 10px;
    background: var(--accent-red);
    width: 100%;
}

/* --- Mobile Fixes for New Sections --- */
@media (max-width: 968px) {
    .block-heading { font-size: 1.8rem !important; flex-wrap: wrap; text-align: center; justify-content: center; }
    .heading-line { display: none; }
    .process-list { font-size: 1rem; text-align: center; list-style-position: outside; padding-left: 1rem; }
    .reasons-grid { grid-template-columns: 1fr; gap: 3rem; }
    .footer-cta-box { flex-direction: column; text-align: center; gap: 2rem; padding: 2rem; }
    .cta-left { max-width: 100%; }
    .cta-left h3 { font-size: 1.4rem; }
    .footer-cta-box .btn-green { width: 100%; text-align: center; }
}