/* =========================================
   The Recipe for Home - Isaac Smith
   Real Estate Sales Associate
   ========================================= */

/* =========================================
   CSS RESET & BASE STYLES
   ========================================= */

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

:root {
    /* Brand Colors */
    --midnight-espresso: #1F1A17;
    --smoked-cognac: #8C5A3C;
    --velvet-forest: #1F3D2B;
    --brushed-brass: #C9A24D;
    --warm-bone: #EFE7DC;
    
    /* Typography */
    --font-display: 'Playfair Display SC', serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Cormorant', serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--midnight-espresso);
    color: var(--warm-bone);
    line-height: 1.8;
    font-weight: 300;
    overflow-x: hidden;
}

/* =========================================
   TYPOGRAPHY
   ========================================= */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.3;
    color: var(--warm-bone);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    letter-spacing: 0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    letter-spacing: 0.02em;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    margin-bottom: 1.5rem;
    color: var(--warm-bone);
    opacity: 0.95;
}

a {
    color: var(--brushed-brass);
    text-decoration: none;
    transition: var(--transition-smooth);
}

a:hover {
    color: var(--warm-bone);
}

/* =========================================
   LAYOUT & CONTAINERS
   ========================================= */

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

section {
    padding: var(--spacing-xl) 0;
    position: relative;
}

/* =========================================
   NAVIGATION
   ========================================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(31, 26, 23, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(201, 162, 77, 0.1);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.nav-logo img {
    height: 60px;
    width: auto;
    transition: var(--transition-smooth);
}

.navbar.scrolled .nav-logo img {
    height: 50px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-link {
    color: var(--warm-bone);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brushed-brass);
    transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--brushed-brass);
    transition: var(--transition-smooth);
}

/* =========================================
   HERO SECTION
   ========================================= */

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--midnight-espresso) 0%, var(--velvet-forest) 100%);
    overflow: hidden;
}

.hero-texture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(
            0deg,
            rgba(201, 162, 77, 0.02) 0px,
            transparent 1px,
            transparent 2px,
            rgba(201, 162, 77, 0.02) 3px
        ),
        repeating-linear-gradient(
            90deg,
            rgba(201, 162, 77, 0.02) 0px,
            transparent 1px,
            transparent 2px,
            rgba(201, 162, 77, 0.02) 3px
        );
    opacity: 0.5;
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 900px;
    padding: var(--spacing-md);
    animation: fadeInUp 1.2s ease-out;
}

.hero-logo {
    margin-bottom: var(--spacing-md);
    animation: fadeIn 1.5s ease-out;
}

.hero-logo img {
    height: 120px;
    width: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
}

.hero-title {
    margin-bottom: var(--spacing-sm);
    color: var(--warm-bone);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    color: var(--brushed-brass);
    font-family: var(--font-display);
    margin-bottom: var(--spacing-sm);
    letter-spacing: 0.1em;
}

.hero-tagline {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: var(--warm-bone);
    opacity: 0.9;
    margin-bottom: var(--spacing-lg);
}

.scroll-indicator {
    position: absolute;
    bottom: var(--spacing-md);
    left: 50%;
    transform: translateX(-50%);
    color: var(--brushed-brass);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    cursor: pointer;
}

/* =========================================
   BUTTONS
   ========================================= */

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 2px solid var(--brushed-brass);
    background: var(--brushed-brass);
    color: var(--midnight-espresso);
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before,
.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--warm-bone);
    transition: var(--transition-smooth);
    z-index: -1;
}

.btn-primary:hover,
.btn-secondary:hover {
    color: var(--midnight-espresso);
    border-color: var(--warm-bone);
}

.btn-primary:hover::before,
.btn-secondary:hover::before {
    left: 0;
}

.btn-secondary {
    background: transparent;
    color: var(--brushed-brass);
}

.btn-secondary:hover {
    background: var(--brushed-brass);
    color: var(--midnight-espresso);
}

/* =========================================
   SECTION TITLES
   ========================================= */

.section-title {
    margin-bottom: var(--spacing-sm);
    color: var(--warm-bone);
}

.section-title.centered {
    text-align: center;
}

.title-accent {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--brushed-brass), transparent);
    margin-bottom: var(--spacing-md);
}

.title-accent.centered {
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: var(--warm-bone);
    opacity: 0.9;
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

/* =========================================
   ABOUT SECTION
   ========================================= */

.about {
    background: linear-gradient(180deg, var(--midnight-espresso) 0%, var(--velvet-forest) 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.about-image {
    position: relative;
}

.image-frame {
    position: relative;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(201, 162, 77, 0.1), rgba(201, 162, 77, 0.05));
    border: 2px solid rgba(201, 162, 77, 0.3);
}

.image-frame::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid rgba(201, 162, 77, 0.2);
    z-index: -1;
}

.placeholder-image {
    aspect-ratio: 3/4;
    background: rgba(31, 61, 43, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--brushed-brass);
    border: 2px dashed rgba(201, 162, 77, 0.3);
}

.placeholder-image i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.placeholder-image p {
    font-size: 0.875rem;
    opacity: 0.7;
    text-align: center;
}

.about-intro {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    color: var(--brushed-brass);
    margin-bottom: var(--spacing-md);
}

.about-text p {
    margin-bottom: var(--spacing-md);
    line-height: 2;
}

.signature-text {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 1.125rem;
    color: var(--brushed-brass);
    margin-top: var(--spacing-md);
}

.credentials {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
}

.credential-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm);
    background: rgba(201, 162, 77, 0.05);
    border-left: 3px solid var(--brushed-brass);
}

.credential-item i {
    color: var(--brushed-brass);
    font-size: 1.25rem;
}

.credential-item span {
    font-size: 1rem;
    color: var(--warm-bone);
}

/* =========================================
   SERVICES SECTION
   ========================================= */

.services {
    background: var(--midnight-espresso);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.service-card {
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, rgba(201, 162, 77, 0.05), rgba(31, 61, 43, 0.1));
    border: 1px solid rgba(201, 162, 77, 0.2);
    transition: var(--transition-smooth);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--brushed-brass);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--brushed-brass);
    border-radius: 50%;
    background: rgba(201, 162, 77, 0.1);
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    background: var(--brushed-brass);
    transform: scale(1.1) rotate(5deg);
}

.service-icon i {
    font-size: 2rem;
    color: var(--brushed-brass);
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon i {
    color: var(--midnight-espresso);
}

.service-card h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--warm-bone);
}

.service-card p {
    font-size: 1rem;
    line-height: 1.8;
    opacity: 0.9;
}

/* =========================================
   WHY CHOOSE SECTION
   ========================================= */

.why-choose {
    background: linear-gradient(180deg, var(--velvet-forest) 0%, var(--midnight-espresso) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.feature-item {
    text-align: center;
    padding: var(--spacing-md);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 162, 77, 0.1);
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.feature-item:hover .feature-icon {
    background: var(--brushed-brass);
    transform: scale(1.1);
}

.feature-icon i {
    font-size: 2rem;
    color: var(--brushed-brass);
    transition: var(--transition-smooth);
}

.feature-item:hover .feature-icon i {
    color: var(--midnight-espresso);
}

.feature-item h3 {
    margin-bottom: var(--spacing-sm);
    font-size: 1.5rem;
}

.feature-item p {
    font-size: 1rem;
    opacity: 0.9;
}

/* =========================================
   PROPERTIES SECTION
   ========================================= */

.properties {
    background: var(--midnight-espresso);
}

/* Coming Soon Message */

.coming-soon-message {
    text-align: center;
    padding: var(--spacing-xl) var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.coming-soon-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 162, 77, 0.05);
    border: 2px solid rgba(201, 162, 77, 0.3);
    border-radius: 50%;
}

.coming-soon-icon i {
    font-size: 4rem;
    color: var(--brushed-brass);
    opacity: 0.7;
}

.coming-soon-message h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--warm-bone);
    font-size: 2rem;
}

.coming-soon-message p {
    font-size: 1.125rem;
    line-height: 1.9;
    color: var(--warm-bone);
    opacity: 0.9;
    margin-bottom: var(--spacing-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.property-card {
    background: rgba(31, 61, 43, 0.2);
    border: 1px solid rgba(201, 162, 77, 0.2);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.property-card:hover {
    transform: translateY(-10px);
    border-color: var(--brushed-brass);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.property-image {
    position: relative;
    overflow: hidden;
}

.property-placeholder {
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, rgba(31, 61, 43, 0.4), rgba(31, 26, 23, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brushed-brass);
    transition: var(--transition-smooth);
}

.property-card:hover .property-placeholder {
    transform: scale(1.05);
}

.property-placeholder i {
    font-size: 4rem;
    opacity: 0.5;
}

.property-status {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    background: var(--brushed-brass);
    color: var(--midnight-espresso);
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.property-status.featured {
    background: var(--smoked-cognac);
    color: var(--warm-bone);
}

.property-content {
    padding: var(--spacing-md);
}

.property-title {
    margin-bottom: var(--spacing-xs);
    font-size: 1.5rem;
}

.property-location {
    color: var(--brushed-brass);
    font-size: 0.95rem;
    margin-bottom: var(--spacing-xs);
}

.property-location i {
    margin-right: 0.5rem;
}

.property-details {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: var(--spacing-sm);
}

.property-description {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.property-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-sm);
    border-top: 1px solid rgba(201, 162, 77, 0.2);
}

.property-price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--brushed-brass);
    font-weight: 700;
}

.property-link {
    color: var(--warm-bone);
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.property-link:hover {
    color: var(--brushed-brass);
}

.property-link i {
    margin-left: 0.5rem;
    transition: var(--transition-smooth);
}

.property-link:hover i {
    transform: translateX(5px);
}

.view-all-wrapper {
    text-align: center;
    margin-top: var(--spacing-xl);
}

/* =========================================
   TESTIMONIALS SECTION
   ========================================= */

.testimonials {
    background: linear-gradient(180deg, var(--velvet-forest) 0%, var(--midnight-espresso) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.testimonial-card {
    padding: var(--spacing-lg);
    background: rgba(201, 162, 77, 0.05);
    border: 1px solid rgba(201, 162, 77, 0.2);
    border-left: 4px solid var(--brushed-brass);
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-left-width: 6px;
}

.quote-icon {
    color: var(--brushed-brass);
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
    opacity: 0.5;
}

.testimonial-text {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 1.125rem;
    line-height: 1.9;
    margin-bottom: var(--spacing-md);
    color: var(--warm-bone);
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    color: var(--brushed-brass);
    font-family: var(--font-display);
    font-size: 1.125rem;
}

.testimonial-author span {
    font-size: 0.95rem;
    opacity: 0.8;
}

/* =========================================
   CONTACT SECTION
   ========================================= */

.contact {
    background: var(--midnight-espresso);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-lg);
}

.contact-intro {
    font-size: 1.125rem;
    line-height: 1.9;
    margin-bottom: var(--spacing-lg);
    opacity: 0.95;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.contact-item {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 162, 77, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.25rem;
    color: var(--brushed-brass);
}

.contact-text h4 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
    color: var(--brushed-brass);
}

.contact-text p,
.contact-text a {
    font-size: 1rem;
    color: var(--warm-bone);
    opacity: 0.95;
}

.contact-text a:hover {
    color: var(--brushed-brass);
}

.social-links h4 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    margin-bottom: var(--spacing-sm);
    color: var(--brushed-brass);
}

.social-icons {
    display: flex;
    gap: var(--spacing-sm);
}

.social-icons a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 162, 77, 0.1);
    border: 1px solid rgba(201, 162, 77, 0.3);
    border-radius: 50%;
    color: var(--brushed-brass);
    transition: var(--transition-smooth);
}

.social-icons a:hover {
    background: var(--brushed-brass);
    color: var(--midnight-espresso);
    transform: translateY(-3px);
}

/* License Info */

.license-info {
    margin-top: var(--spacing-lg);
    padding: var(--spacing-md);
    background: rgba(201, 162, 77, 0.05);
    border: 1px solid rgba(201, 162, 77, 0.2);
    border-left: 3px solid var(--brushed-brass);
}

.license-info h4 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    margin-bottom: var(--spacing-sm);
    color: var(--brushed-brass);
}

.license-number,
.license-state {
    font-size: 0.95rem;
    color: var(--warm-bone);
    margin-bottom: 0.5rem;
    opacity: 0.95;
}

.license-number span,
#licenseNumber,
#licenseNumberAbout,
#licenseNumberContact,
#footerLicenseNumber {
    color: var(--brushed-brass);
    font-weight: 500;
}

/* Lead Qualifier CTA */

.contact-form-wrapper {
    background: linear-gradient(135deg, rgba(31, 61, 43, 0.2), rgba(31, 26, 23, 0.3));
    padding: var(--spacing-lg);
    border: 1px solid rgba(201, 162, 77, 0.2);
}

.lead-qualifier-cta {
    text-align: center;
    padding: var(--spacing-xl) var(--spacing-lg);
}

.cta-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 162, 77, 0.1);
    border: 2px solid var(--brushed-brass);
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.lead-qualifier-cta:hover .cta-icon {
    background: var(--brushed-brass);
    transform: scale(1.05);
}

.cta-icon i {
    font-size: 3rem;
    color: var(--brushed-brass);
    transition: var(--transition-smooth);
}

.lead-qualifier-cta:hover .cta-icon i {
    color: var(--midnight-espresso);
}

.lead-qualifier-cta h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--warm-bone);
    font-size: 2rem;
}

.cta-description {
    font-size: 1.125rem;
    line-height: 1.9;
    color: var(--warm-bone);
    opacity: 0.95;
    margin-bottom: var(--spacing-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-large i {
    transition: var(--transition-smooth);
}

.btn-large:hover i {
    transform: translateX(5px);
}

.cta-note {
    margin-top: var(--spacing-md);
    font-size: 0.95rem;
    color: var(--warm-bone);
    opacity: 0.7;
    font-style: italic;
}

/* Contact Form Integration Placeholder */

.form-integration-placeholder {
    text-align: center;
    padding: var(--spacing-lg);
}

.placeholder-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 162, 77, 0.1);
    border: 2px dashed rgba(201, 162, 77, 0.3);
    border-radius: 50%;
}

.placeholder-icon i {
    font-size: 3rem;
    color: var(--brushed-brass);
    opacity: 0.7;
}

.form-integration-placeholder h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--warm-bone);
}

.placeholder-description {
    font-size: 1.125rem;
    color: var(--warm-bone);
    opacity: 0.9;
    margin-bottom: var(--spacing-lg);
}

.integration-instructions {
    text-align: left;
    background: rgba(31, 26, 23, 0.5);
    padding: var(--spacing-md);
    border-left: 3px solid var(--brushed-brass);
    margin-bottom: var(--spacing-md);
}

.integration-instructions h4 {
    color: var(--brushed-brass);
    margin-bottom: var(--spacing-sm);
    font-size: 1.125rem;
}

.integration-instructions ul {
    list-style: none;
    padding-left: 0;
}

.integration-instructions ul li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--warm-bone);
    opacity: 0.95;
}

.integration-instructions ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--brushed-brass);
    font-weight: bold;
}

.integration-instructions code {
    background: rgba(201, 162, 77, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
    color: var(--brushed-brass);
}

.placeholder-example {
    text-align: left;
    background: rgba(31, 61, 43, 0.3);
    padding: var(--spacing-md);
    border: 1px solid rgba(201, 162, 77, 0.2);
}

.placeholder-example p {
    margin-bottom: var(--spacing-sm);
}

.code-block {
    display: block;
    background: rgba(31, 26, 23, 0.8);
    padding: var(--spacing-sm);
    border-radius: 5px;
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
    color: var(--brushed-brass);
    overflow-x: auto;
    line-height: 1.8;
    white-space: pre-wrap;
}

/* License Info Styling */

.license-info {
    margin-top: var(--spacing-lg);
    padding: var(--spacing-md);
    background: rgba(201, 162, 77, 0.05);
    border: 1px solid rgba(201, 162, 77, 0.2);
    border-left: 4px solid var(--brushed-brass);
}

.license-info h4 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    margin-bottom: var(--spacing-sm);
    color: var(--brushed-brass);
}

.license-number {
    font-size: 1rem;
    font-weight: 500;
    color: var(--warm-bone);
    margin-bottom: 0.5rem;
}

.license-number span {
    color: var(--brushed-brass);
    font-family: 'Courier New', monospace;
    letter-spacing: 0.1em;
}

.license-state {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 0;
}

/* =========================================
   FOOTER
   ========================================= */

.footer {
    background: var(--velvet-forest);
    padding: var(--spacing-xl) 0 var(--spacing-md);
    border-top: 1px solid rgba(201, 162, 77, 0.2);
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-logo {
    height: 80px;
    width: auto;
    margin-bottom: var(--spacing-sm);
}

.footer-tagline {
    font-family: var(--font-display);
    font-size: 1.125rem;
    color: var(--brushed-brass);
    margin-bottom: 0;
}

.footer-slogan {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 0;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    margin-bottom: var(--spacing-sm);
    color: var(--brushed-brass);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    color: var(--warm-bone);
    opacity: 0.9;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.footer-links ul li a:hover {
    color: var(--brushed-brass);
    padding-left: 5px;
}

.footer-contact p {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    opacity: 0.9;
}

.footer-contact i {
    color: var(--brushed-brass);
    margin-right: 0.5rem;
    width: 20px;
}

#footerLicenseNumber {
    font-family: 'Courier New', monospace;
    letter-spacing: 0.05em;
    color: var(--brushed-brass);
}

.footer-equal-housing {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.equal-housing-logo {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 162, 77, 0.1);
    border: 2px solid var(--brushed-brass);
    border-radius: 50%;
    margin-bottom: var(--spacing-sm);
}

.equal-housing-logo i {
    font-size: 1.5rem;
    color: var(--brushed-brass);
}

.footer-equal-housing p {
    font-size: 0.875rem;
    line-height: 1.5;
    opacity: 0.9;
}

.footer-bottom {
    border-top: 1px solid rgba(201, 162, 77, 0.2);
    padding-top: var(--spacing-md);
    text-align: center;
}

.footer-legal {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    flex-wrap: wrap;
}

.footer-legal a {
    color: var(--warm-bone);
    opacity: 0.9;
    font-size: 0.875rem;
}

.footer-legal a:hover {
    color: var(--brushed-brass);
}

.footer-legal span {
    opacity: 0.5;
}

.footer-copyright,
.footer-disclaimer,
.footer-managed {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.footer-managed a {
    color: var(--brushed-brass);
    font-weight: 500;
    transition: var(--transition-smooth);
}

.footer-managed a:hover {
    color: var(--warm-bone);
    text-decoration: underline;
}

/* =========================================
   ANIMATIONS
   ========================================= */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */

@media (max-width: 1024px) {
    :root {
        --spacing-xl: 4rem;
        --spacing-lg: 3rem;
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .about-image {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-xl: 3rem;
        --spacing-lg: 2rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(31, 26, 23, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        padding: var(--spacing-lg);
        transition: var(--transition-smooth);
        backdrop-filter: blur(10px);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .hero-logo img {
        height: 80px;
    }
    
    .services-grid,
    .features-grid,
    .properties-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand {
        align-items: center;
    }
    
    .footer-links ul {
        text-align: center;
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-xl: 2rem;
        --spacing-lg: 1.5rem;
        --spacing-md: 1rem;
    }
    
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 0.875rem 2rem;
        font-size: 0.875rem;
    }
    
    .property-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-sm);
    }
}

/* =========================================
   ACCESSIBILITY
   ========================================= */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for keyboard navigation */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--brushed-brass);
    outline-offset: 2px;
}

/* Screen reader only content */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}
