/* ===================================
   Ace Realty - Main Stylesheet
   Deanna Hetland, South Dakota
   =================================== */

/* CSS Variables */
:root {
    --navy: #0a1628;
    --gold: #b5985a;
    --cream: #f8f6f2;
    --warm: #f2ede6;
    --white: #ffffff;
    --text: #2a2a2a;
    --text-light: #6a6a6a;
}

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

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--cream);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Italiana', serif;
    font-weight: 400;
    line-height: 1.3;
    color: var(--navy);
}

h1 { font-size: 4rem; }
h2 { font-size: 3rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

a {
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--navy);
}

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

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.preloader-text {
    font-family: 'Italiana', serif;
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.preloader-bar {
    width: 200px;
    height: 2px;
    background: rgba(181, 152, 90, 0.2);
    position: relative;
    overflow: hidden;
}

.preloader-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold);
    animation: loading 1.5s ease-in-out infinite;
}

@keyframes loading {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.main-nav.scrolled {
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo a {
    font-family: 'Italiana', serif;
    font-size: 1.8rem;
    color: var(--gold);
    transition: color 0.3s ease;
}

.nav-logo a:hover {
    color: var(--white);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-menu > a {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
}

.nav-menu > a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-menu > a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--gold);
    color: var(--navy) !important;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
}

.nav-cta:hover {
    background: var(--white);
    transform: translateY(-2px);
}

.nav-cta::after {
    display: none;
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    cursor: pointer;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--navy);
    padding: 15px 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(10px);
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--white);
    font-size: 0.9rem;
}

.nav-dropdown-menu a:hover {
    background: rgba(181, 152, 90, 0.1);
    color: var(--gold);
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.85) 0%, rgba(10, 22, 40, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 5rem;
    color: var(--white);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--cream);
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 0.9rem;
    letter-spacing: 1px;
    animation: bounce 2s infinite;
}

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

@keyframes bounce {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 10px); }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy);
}

.btn-primary:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(181, 152, 90, 0.3);
}

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--navy);
}

/* Stats Bar */
.stats-bar {
    background: var(--navy);
    padding: 40px 0;
    margin-top: -80px;
    position: relative;
    z-index: 3;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 0 20px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Italiana', serif;
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.stat-label {
    color: var(--cream);
    font-size: 0.95rem;
    font-weight: 300;
}

/* Section Watermark */
.section-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Italiana', serif;
    font-size: 15rem;
    color: rgba(10, 22, 40, 0.02);
    z-index: 0;
    pointer-events: none;
    white-space: nowrap;
}

/* Services Section */
.services-section {
    padding: 120px 0;
    background: var(--cream);
    position: relative;
}

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

.section-header h2 {
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.service-item {
    background: var(--white);
    padding: 50px 35px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.service-number {
    font-family: 'Italiana', serif;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
    display: inline-block;
    position: relative;
}

.service-number::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50%;
    height: 2px;
    background: var(--gold);
}

.service-item h3 {
    margin-bottom: 15px;
    font-size: 1.6rem;
}

.service-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Communities Section */
.communities-section {
    padding: 120px 0;
    background: var(--warm);
    position: relative;
}

.communities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.community-card {
    height: 350px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.community-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.community-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.5) 0%, rgba(10, 22, 40, 0.4) 100%);
    transition: all 0.3s ease;
}

.community-card:hover .community-overlay {
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.6) 0%, rgba(10, 22, 40, 0.2) 100%);
}

.community-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    color: var(--white);
}

.community-content h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 10px;
}

.community-content p {
    font-size: 1rem;
    color: var(--cream);
}

/* Parallax Break */
.parallax-break {
    height: 400px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.parallax-break::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 22, 40, 0.3);
}

/* Listings Section */
.listings-section {
    padding: 120px 0;
    background: var(--cream);
    position: relative;
}

.listings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 35px;
    position: relative;
    z-index: 1;
    margin-bottom: 60px;
}

.listing-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.listing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.listing-image {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.listing-content {
    padding: 30px;
}

.listing-price {
    font-family: 'Italiana', serif;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.listing-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.listing-location {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.listing-details {
    display: flex;
    gap: 20px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.listing-details span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.section-cta {
    text-align: center;
}

/* Testimonials */
.testimonials-section {
    padding: 120px 0;
    background: var(--warm);
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid var(--gold);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 5px;
}

.testimonial-location {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--navy);
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.cta-section p {
    color: var(--cream);
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Footer */
.site-footer {
    background: var(--navy);
    padding: 80px 0 30px;
    color: var(--cream);
    position: relative;
}

.footer-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Italiana', serif;
    font-size: 12rem;
    color: rgba(255, 255, 255, 0.02);
    pointer-events: none;
    white-space: nowrap;
}

.footer-content {
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col h3, .footer-col h4 {
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-col p {
    line-height: 1.8;
    color: var(--cream);
}

.footer-col a {
    display: block;
    color: var(--cream);
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    color: var(--cream);
    font-size: 0.9rem;
}

/* Page Hero */
.page-hero {
    height: 60vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
}

.page-hero-small {
    height: 40vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
}

/* About Page */
.about-story {
    padding: 120px 0;
    background: var(--cream);
    position: relative;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.story-image {
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.story-content h2 {
    margin-bottom: 30px;
}

.story-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text);
}

.why-section {
    padding: 120px 0;
    background: var(--warm);
    position: relative;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.why-item {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
}

.why-number {
    font-family: 'Italiana', serif;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 15px;
    display: inline-block;
    position: relative;
}

.why-number::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40%;
    height: 2px;
    background: var(--gold);
}

.why-item h3 {
    margin-bottom: 15px;
}

.why-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.stats-section-alt {
    padding: 100px 0;
    background: var(--navy);
}

.stats-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
}

.stat-large {
    text-align: center;
}

.stat-number-large {
    font-family: 'Italiana', serif;
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.stat-label-large {
    color: var(--cream);
    font-size: 1.1rem;
}

.credentials-section {
    padding: 100px 0;
    background: var(--cream);
}

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

.credential-item {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
}

.credential-item h3 {
    color: var(--navy);
    margin-bottom: 10px;
}

.credential-item p {
    color: var(--text-light);
}

/* Listings Page */
.listings-page-section {
    padding: 120px 0;
    background: var(--cream);
    position: relative;
}

.listings-grid-full {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.listing-card-large {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    transition: all 0.3s ease;
}

.listing-card-large:hover {
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.listing-image-large {
    height: 400px;
    background-size: cover;
    background-position: center;
}

.listing-content-large {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.listing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.listing-price-large {
    font-family: 'Italiana', serif;
    font-size: 2.5rem;
    color: var(--gold);
}

.listing-status {
    background: var(--navy);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
}

.listing-content-large h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.listing-location-large {
    color: var(--text-light);
    margin-bottom: 20px;
}

.listing-description {
    margin-bottom: 25px;
    line-height: 1.8;
    color: var(--text);
}

.listing-details-large {
    display: flex;
    gap: 25px;
    padding: 20px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 30px;
}

.listing-details-large span {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Community Pages */
.community-overview {
    padding: 120px 0;
    background: var(--cream);
    position: relative;
}

.overview-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.overview-content h2 {
    margin-bottom: 30px;
}

.overview-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.overview-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-box {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.stat-box .stat-number {
    font-family: 'Italiana', serif;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.stat-box .stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

.neighborhoods-section {
    padding: 100px 0;
    background: var(--warm);
}

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

.neighborhood-item {
    background: var(--white);
    padding: 35px;
    border-radius: 8px;
}

.neighborhood-item h3 {
    color: var(--navy);
    margin-bottom: 15px;
}

.neighborhood-item p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.neighborhood-price {
    font-family: 'Italiana', serif;
    font-size: 1.3rem;
    color: var(--gold);
}

.lifestyle-section {
    padding: 120px 0;
    background: var(--cream);
    position: relative;
}

.lifestyle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    position: relative;
    z-index: 1;
}

.lifestyle-item {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
}

.lifestyle-number {
    font-family: 'Italiana', serif;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 15px;
    display: inline-block;
    position: relative;
}

.lifestyle-number::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40%;
    height: 2px;
    background: var(--gold);
}

.lifestyle-item h3 {
    margin-bottom: 15px;
}

.lifestyle-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Buyer/Seller Guides */
.guide-intro {
    padding: 80px 0;
    background: var(--cream);
    text-align: center;
}

.intro-content-center {
    max-width: 800px;
    margin: 0 auto;
}

.intro-content-center h2 {
    margin-bottom: 25px;
}

.intro-content-center p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
}

.process-section {
    padding: 120px 0;
    background: var(--warm);
    position: relative;
}

.process-steps {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.process-step {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.step-number {
    font-family: 'Italiana', serif;
    font-size: 4rem;
    color: var(--gold);
    text-align: center;
}

.step-content h3 {
    margin-bottom: 15px;
}

.step-content p {
    line-height: 1.8;
    color: var(--text);
}

.why-buyers-section {
    padding: 120px 0;
    background: var(--cream);
    position: relative;
}

.why-buyers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    position: relative;
    z-index: 1;
}

.why-buyer-item {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
}

.tips-section {
    padding: 100px 0;
    background: var(--warm);
}

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

.tip-item {
    background: var(--white);
    padding: 35px;
    border-radius: 8px;
}

.tip-item h3 {
    color: var(--navy);
    margin-bottom: 15px;
}

.tip-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.marketing-section {
    padding: 120px 0;
    background: var(--cream);
    position: relative;
}

.marketing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    position: relative;
    z-index: 1;
}

.marketing-item {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
}

.marketing-number {
    font-family: 'Italiana', serif;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 15px;
    display: inline-block;
    position: relative;
}

.marketing-number::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40%;
    height: 2px;
    background: var(--gold);
}

.marketing-item h3 {
    margin-bottom: 15px;
}

.marketing-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.seller-stats-section {
    padding: 80px 0;
    background: var(--navy);
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.stat-item-seller {
    text-align: center;
}

.stat-item-seller .stat-number {
    font-family: 'Italiana', serif;
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.stat-item-seller .stat-label {
    color: var(--cream);
    font-size: 1rem;
}

/* Contact Page */
.contact-section {
    padding: 120px 0;
    background: var(--cream);
}

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

.contact-info h2 {
    margin-bottom: 15px;
}

.contact-tagline {
    color: var(--text-light);
    margin-bottom: 40px;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    margin-bottom: 5px;
}

.contact-item h4 {
    color: var(--gold);
    margin-bottom: 10px;
}

.contact-item p {
    color: var(--text);
    line-height: 1.8;
}

.contact-item a {
    color: var(--navy);
}

.contact-item a:hover {
    color: var(--gold);
}

.contact-note {
    background: var(--warm);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--gold);
}

.contact-note p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

.contact-form-container h3 {
    margin-bottom: 10px;
}

.contact-form {
    margin-top: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(181, 152, 90, 0.1);
}

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

.form-note,
.form-disclaimer {
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
}

.quick-links-section {
    padding: 80px 0;
    background: var(--warm);
}

.quick-links-section h3 {
    text-align: center;
    margin-bottom: 50px;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.quick-link-card {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.quick-link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.quick-link-card h4 {
    color: var(--navy);
    margin-bottom: 10px;
}

.quick-link-card p {
    color: var(--text-light);
}

/* Valuation Page */
.valuation-section {
    padding: 120px 0;
    background: var(--cream);
}

.valuation-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
}

.valuation-benefits h2 {
    margin-bottom: 20px;
}

.valuation-benefits > p {
    margin-bottom: 40px;
    line-height: 1.8;
    color: var(--text);
}

.benefits-list {
    margin-bottom: 40px;
}

.benefit-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 25px;
    margin-bottom: 35px;
}

.benefit-number {
    font-family: 'Italiana', serif;
    font-size: 2.5rem;
    color: var(--gold);
    text-align: center;
}

.benefit-content h3 {
    margin-bottom: 10px;
}

.benefit-content p {
    color: var(--text-light);
    line-height: 1.8;
}

.trust-note {
    background: var(--warm);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--gold);
}

.trust-note p {
    color: var(--text-light);
    line-height: 1.7;
}

.valuation-form-container h3 {
    margin-bottom: 10px;
}

.form-subtitle {
    color: var(--text-light);
    margin-bottom: 30px;
}

.valuation-form {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
}

.how-it-works-section {
    padding: 100px 0;
    background: var(--warm);
    text-align: center;
}

.how-it-works-section h2 {
    margin-bottom: 60px;
}

.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 35px;
}

.how-step {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
}

.how-number {
    font-family: 'Italiana', serif;
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.how-step h3 {
    margin-bottom: 15px;
}

.how-step p {
    color: var(--text-light);
    line-height: 1.8;
}

.valuation-testimonial {
    padding: 80px 0;
    background: var(--cream);
}

.testimonial-box {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 8px;
    border-left: 4px solid var(--gold);
    text-align: center;
}

.testimonial-box p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text);
    font-style: italic;
    margin-bottom: 25px;
}

.testimonial-box .testimonial-author {
    font-weight: 600;
    color: var(--navy);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title { font-size: 4rem; }
    .stats-container { grid-template-columns: repeat(2, 1fr); }
    .story-grid { grid-template-columns: 1fr; }
    .overview-grid { grid-template-columns: 1fr; }
    .listing-card-large { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .valuation-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-menu { display: none; }
    .nav-toggle { display: flex; }
    .hero-title { font-size: 3rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .hero-buttons { flex-direction: column; }
    h1 { font-size: 3rem; }
    h2 { font-size: 2.5rem; }
    .stats-container { grid-template-columns: 1fr; }
    .section-watermark { font-size: 8rem; }
    .process-step { grid-template-columns: 1fr; text-align: center; }
    .form-row { grid-template-columns: 1fr; }
    .stats-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    .section-watermark { display: none; }
}

/* OVERRIDE: Make reveal elements visible by default */
.stats-bar { transform: translateX(-50%) !important; }
.reveal-fade,
.reveal-slide,
.reveal-scale,
.card,
.numbered-section,
.section-header,
.service-item,
.community-card,
.listing-card,
.testimonial-card,
.service-card,
.testimonial,
.card-overlay,
.numbered-item,
.why-item,
.process-step,
.feature-card,
.stat-card,
.about-content {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}
/* Video hero background */
video.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
video.hero-video {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
}
.hero-section { position: relative; overflow: hidden; }

/* Stats bar centering fix */
.stats-bar, section .stats-bar, .hero .stats-bar, .hero-section .stats-bar {
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 90% !important;
    max-width: 1200px !important;
    display: flex !important;
    justify-content: space-around !important;
}

/* Parallax overlay lighter */
.parallax-overlay {
    background: rgba(10, 22, 40, 0.5) !important;
}
.parallax-break {
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
    min-height: 400px;
}
@media (max-width: 768px) {
    .parallax-break { background-attachment: scroll !important; }
}
