/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --luxury-black: #0a0a0a;
    --luxury-dark: #1a1a1a;
    --luxury-gold: #d4af37;
    --luxury-gold-light: #f4e4bc;
    --luxury-gold-dark: #b8941f;
    --luxury-white: #ffffff;
    --luxury-cream: #f5f5f0;
    --luxury-gray: #2a2a2a;
    --luxury-gray-light: #4a4a4a;
    --luxury-accent: #8b7355;
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --text-light: #999999;
    
    /* Alternative richer gold option - uncomment to use */
    /* --luxury-gold: #c9a961; */
    /* --luxury-gold-light: #e8d5a8; */
    /* --luxury-gold-dark: #a0823f; */
    --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-luxury: 0 20px 60px rgba(0, 0, 0, 0.3);
    --shadow-gold: 0 10px 40px rgba(212, 175, 55, 0.2);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--luxury-cream);
    font-weight: 300;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

/* Abstract Background Elements */
.abstract-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.abstract-shape {
    position: absolute;
    opacity: 0.03;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--luxury-accent) 100%);
    filter: blur(60px);
    animation: float 20s infinite ease-in-out;
}

.abstract-shape:nth-child(1) {
    width: 600px;
    height: 600px;
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.abstract-shape:nth-child(2) {
    width: 800px;
    height: 800px;
    top: 50%;
    right: -300px;
    animation-delay: 5s;
}

.abstract-shape:nth-child(3) {
    width: 500px;
    height: 500px;
    bottom: -150px;
    left: 20%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-soft);
    z-index: 1000;
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    box-shadow: var(--shadow-luxury);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.logo h2 {
    font-size: 1.75rem;
    color: var(--luxury-gold);
    margin-bottom: 0.15rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    letter-spacing: 0.1em;
}

.logo .tagline {
    font-size: 0.7rem;
    color: var(--text-light);
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--luxury-white);
    font-weight: 300;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    position: relative;
    padding: 0.5rem 0;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-icon {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

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

.nav-link:hover {
    color: var(--luxury-gold);
}

.nav-link:hover .nav-icon {
    transform: scale(1.1);
}

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

.nav-link.cta-button {
    background: transparent;
    color: var(--luxury-gold);
    padding: 0.75rem 2rem;
    border: 1px solid var(--luxury-gold);
    border-radius: 0;
    position: relative;
    overflow: hidden;
}

.nav-link.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--luxury-gold);
    transition: var(--transition-smooth);
    z-index: -1;
}

.nav-link.cta-button:hover {
    color: var(--luxury-black);
}

.nav-link.cta-button:hover::before {
    left: 0;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--luxury-gold);
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--luxury-black) 0%, var(--luxury-dark) 50%, var(--luxury-black) 100%);
    color: var(--luxury-white);
    text-align: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    transition: var(--transition-smooth);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    opacity: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, transparent 48%, rgba(212, 175, 55, 0.03) 49%, rgba(212, 175, 55, 0.03) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(212, 175, 55, 0.03) 49%, rgba(212, 175, 55, 0.03) 51%, transparent 52%);
    background-size: 60px 60px;
    opacity: 0.5;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1.2s ease;
}

.hero-title {
    font-size: 6rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    background: linear-gradient(135deg, var(--luxury-white) 0%, var(--luxury-gold-light) 50%, var(--luxury-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    position: relative;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--luxury-gold), transparent);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    font-weight: 300;
    opacity: 0.9;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--luxury-gold-light);
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.btn {
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 0;
    font-size: 0.9rem;
    font-weight: 400;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: var(--transition-smooth);
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn-icon {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

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

.btn-primary {
    background: var(--luxury-gold);
    color: var(--luxury-black);
    border: 1px solid var(--luxury-gold);
}

.btn-primary:hover {
    color: var(--luxury-black);
    box-shadow: var(--shadow-gold);
    transform: translateY(-3px);
}

.btn-primary:hover .btn-icon {
    transform: translateX(2px);
}

.btn-secondary:hover .btn-icon {
    transform: translateX(2px);
}

.btn-primary::before {
    background: var(--luxury-gold-light);
}

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

.btn-secondary:hover {
    color: var(--luxury-black);
    border-color: var(--luxury-gold);
}

.btn-secondary::before {
    background: var(--luxury-gold);
}

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

.btn-large {
    padding: 1.4rem 4rem;
    font-size: 1rem;
}

.btn-outline {
    background: transparent;
    color: var(--luxury-black);
    border: 1px solid var(--luxury-black);
}

.btn-outline:hover {
    background: var(--luxury-black);
    color: var(--luxury-white);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator span {
    display: block;
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, var(--luxury-gold), transparent);
    position: relative;
    margin: 0 auto;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--luxury-gold);
    border-radius: 50%;
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(30px);
    }
}

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

/* Section Styles */
section {
    padding: 8rem 0;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 4rem;
    color: var(--luxury-black);
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 300;
    letter-spacing: 0.05em;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 1px;
    background: var(--luxury-gold);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 4rem;
    text-align: center;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* About Section */
.about {
    background: var(--luxury-black);
    color: var(--luxury-white);
    position: relative;
    text-align: center;
}

.about-content-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4rem 0;
}

.about-title {
    font-size: 4rem;
    color: var(--luxury-white);
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.about-logo-wrapper {
    margin-bottom: 2rem;
}

.about-logo-circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: contain;
    display: block;
    border: 2px solid var(--luxury-gold);
    padding: 20px;
    background: var(--luxury-dark);
}

.image-placeholder-circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--luxury-dark) 0%, var(--luxury-black) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--luxury-gold);
    border: 3px solid var(--luxury-gold);
    margin: 0 auto;
}

.about-subtitle {
    font-size: 1.5rem;
    color: var(--luxury-white);
    margin-bottom: 2rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.about-phone {
    font-size: 1.5rem;
    color: var(--luxury-white);
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 0.1em;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--luxury-gold), transparent);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-text {
    padding: 2rem 0;
}

.about-text .section-title {
    text-align: left;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.about-text .section-title::after {
    left: 0;
    transform: none;
}

.about-text .section-subtitle {
    text-align: left;
    color: var(--luxury-gold);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.phone-link {
    display: inline-block;
    font-size: 2rem;
    color: var(--luxury-black);
    text-decoration: none;
    font-weight: 400;
    margin-bottom: 2rem;
    transition: var(--transition-smooth);
    font-family: 'Cormorant Garamond', serif;
    position: relative;
    padding-bottom: 0.5rem;
}

.phone-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--luxury-gold);
    transition: var(--transition-smooth);
}

.phone-link:hover {
    color: var(--luxury-gold);
}

.phone-link:hover::after {
    width: 100%;
}

.about-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 2;
    font-weight: 300;
}

.about-image {
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--luxury-gold);
    z-index: -1;
}

.about-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
    display: block;
    transition: var(--transition-smooth);
    margin: 0 auto;
}

.about-img:hover {
    transform: scale(1.05);
}

.image-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, var(--luxury-black) 0%, var(--luxury-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--luxury-gold);
    font-size: 1.2rem;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 0.1em;
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 48%, rgba(212, 175, 55, 0.1) 49%, rgba(212, 175, 55, 0.1) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(212, 175, 55, 0.1) 49%, rgba(212, 175, 55, 0.1) 51%, transparent 52%);
    background-size: 40px 40px;
    opacity: 0.3;
}

/* Stats Section */
.stats {
    background: var(--luxury-black);
    color: var(--luxury-white);
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--luxury-gold), transparent);
}

.stats .section-title {
    color: var(--luxury-white);
}

.stats .section-title::after {
    background: var(--luxury-gold);
}

.stats .section-subtitle {
    color: var(--luxury-gold-light);
}

.stats-header {
    text-align: center;
    margin-bottom: 5rem;
}

.stats-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 3rem 2.5rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: var(--transition-smooth);
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--luxury-gold);
    box-shadow: var(--shadow-gold);
}

.stat-card.highlight {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-color: var(--luxury-gold);
}

.stat-number {
    font-size: 4.5rem;
    font-weight: 300;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 1rem;
    color: var(--luxury-gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--luxury-gold-light);
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.stats-description {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
    font-size: 1.2rem;
    color: var(--luxury-gold-light);
    line-height: 2;
    font-weight: 300;
}

.get-it-sold-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.get-it-sold-image {
    width: 100%;
    overflow: hidden;
}

.grid-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 300px;
}

.get-it-sold-text {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.get-it-sold-text h4 {
    font-size: 1.5rem;
    color: var(--luxury-gold);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.get-it-sold-text p {
    color: var(--luxury-gold-light);
    line-height: 2;
    font-weight: 300;
}

.guide-to-buyers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 4rem;
    align-items: center;
}

.guide-image {
    width: 100%;
    overflow: hidden;
}

.guide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.guide-text {
    padding: 2rem;
}

.guide-text h4 {
    font-size: 1.8rem;
    color: var(--luxury-gold);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.guide-text p {
    color: var(--luxury-gold-light);
    line-height: 2;
    font-weight: 300;
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 3rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition-smooth);
    position: relative;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 0;
    background: var(--luxury-gold);
    transition: var(--transition-smooth);
}

.feature-card:hover::after {
    height: 100%;
}

.feature-card:hover {
    transform: translateX(10px);
    border-color: var(--luxury-gold);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.feature-card h4 {
    font-size: 1.8rem;
    color: var(--luxury-gold);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.feature-card p {
    color: var(--luxury-gold-light);
    line-height: 2;
    font-weight: 300;
}

/* Listings Search Section */
.listings-search {
    background: var(--luxury-cream);
    position: relative;
    padding-bottom: 2rem;
}

.search-form-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--luxury-white);
    padding: 5rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: var(--shadow-soft);
    position: relative;
}

.search-form-wrapper::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, var(--luxury-gold), transparent, var(--luxury-gold));
    z-index: -1;
    opacity: 0;
    transition: var(--transition-smooth);
}

.search-form-wrapper:hover::before {
    opacity: 0.3;
}

.search-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.75rem;
    font-weight: 400;
    color: var(--luxury-black);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem 1.25rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 0;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: var(--transition-smooth);
    background: var(--luxury-cream);
    color: var(--luxury-black);
    font-weight: 300;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--luxury-gold);
    background: var(--luxury-white);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Gallery Section */
.gallery {
    background: var(--luxury-white);
    padding-top: 0;
    margin-top: 4rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition-smooth);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item:hover {
    transform: scale(1.05);
    border-color: var(--luxury-gold);
    box-shadow: var(--shadow-luxury);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--luxury-dark) 0%, var(--luxury-black) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--luxury-gold);
    font-size: 1rem;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 0.1em;
    position: relative;
}

.gallery-image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 48%, rgba(212, 175, 55, 0.1) 49%, rgba(212, 175, 55, 0.1) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(212, 175, 55, 0.1) 49%, rgba(212, 175, 55, 0.1) 51%, transparent 52%);
    background-size: 50px 50px;
    opacity: 0.2;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

/* Services Section */
.services {
    background: var(--luxury-cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.service-card {
    background: var(--luxury-white);
    padding: 4rem 3rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), transparent);
    opacity: 0;
    transition: var(--transition-smooth);
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px) rotateX(2deg);
    border-color: var(--luxury-gold);
    box-shadow: var(--shadow-luxury);
}

.service-card:hover .service-img {
    transform: scale(1.1);
}

.service-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-bottom: 2rem;
    display: block;
}

.service-img-circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 2rem;
    display: block;
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.service-card h3 {
    font-size: 2rem;
    color: var(--luxury-black);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 2;
    font-weight: 300;
    font-size: 1.05rem;
}

/* Contact Section */
.contact {
    background: var(--luxury-black);
    color: var(--luxury-white);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--luxury-gold), transparent);
}

.contact .section-title {
    color: var(--luxury-white);
}

.contact .section-title::after {
    background: var(--luxury-gold);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-item h3 {
    font-size: 1.8rem;
    color: var(--luxury-gold);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.contact-item h4 {
    font-size: 1.3rem;
    color: var(--luxury-gold);
    margin-bottom: 1rem;
    font-weight: 400;
}

.contact-item p {
    color: var(--luxury-gold-light);
    line-height: 2;
    margin-bottom: 0.75rem;
    font-weight: 300;
}

.contact-item .note {
    font-size: 0.95rem;
    font-style: italic;
    opacity: 0.8;
}

.phone-link-large {
    font-size: 2.5rem;
    color: var(--luxury-gold);
    text-decoration: none;
    font-weight: 400;
    transition: var(--transition-smooth);
    display: inline-block;
    font-family: 'Cormorant Garamond', serif;
    position: relative;
    padding-bottom: 0.5rem;
}

.phone-link-large::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--luxury-gold);
    transition: var(--transition-smooth);
}

.phone-link-large:hover {
    color: var(--luxury-gold-light);
}

.phone-link-large:hover::after {
    width: 100%;
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.03);
    padding: 4rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 0;
    background: var(--luxury-gold);
    transition: var(--transition-smooth);
}

.contact-form-wrapper:hover::before {
    height: 100%;
}

.contact-form-wrapper h3 {
    font-size: 2rem;
    color: var(--luxury-gold);
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-form input,
.contact-form textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--luxury-white);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--luxury-gold-light);
    opacity: 0.6;
}

.contact-form input:focus,
.contact-form textarea:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--luxury-gold);
}

.whatsapp-link {
    margin-top: 2rem;
    text-align: center;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: #25D366;
    color: var(--luxury-white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: none;
    transition: var(--transition-smooth);
    border: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    font-size: 1rem;
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: var(--transition-smooth);
    z-index: -1;
}

.whatsapp-btn:hover::before {
    left: 0;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    background: #20BA5A;
}

.whatsapp-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

/* Social Media Section */
.social-media {
    background: var(--luxury-black);
    padding: 4rem 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.social-media-wrapper {
    text-align: center;
}

.social-title {
    font-size: 1.5rem;
    color: var(--luxury-gold);
    margin-bottom: 1.5rem;
    margin-top: 0;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Social links within contact section */
.contact-item .social-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    text-align: left;
}

.contact-item .social-links {
    justify-content: flex-start;
    gap: 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    color: var(--luxury-white);
    text-decoration: none;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    transition: var(--transition-smooth);
    font-weight: 400;
    letter-spacing: 0.05em;
}

.social-link:hover {
    transform: translateY(-3px);
    border-color: var(--luxury-gold);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-gold);
}

.social-link.linkedin:hover {
    background: #0077B5;
    border-color: #0077B5;
    color: var(--luxury-white);
}

.social-link.yelp:hover {
    background: #FF1A1A;
    border-color: #FF1A1A;
    color: var(--luxury-white);
}

.social-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    border-radius: 0;
    background: var(--luxury-gold);
    color: var(--luxury-black);
    border: 1px solid var(--luxury-gold);
    font-size: 24px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 999;
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 300;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
    background: var(--luxury-gold-light);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--luxury-gold), var(--luxury-gold-light));
    z-index: 10000;
    width: 0%;
    transition: width 0.1s ease-out;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.5);
}

/* Gallery Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(10px);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: var(--luxury-white);
    font-size: 48px;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-smooth);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--luxury-white);
    font-size: 48px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
}

.lightbox-prev {
    left: -80px;
}

.lightbox-next {
    right: -80px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(212, 175, 55, 0.3);
    border-color: var(--luxury-gold);
    transform: translateY(-50%) scale(1.1);
}

@media (max-width: 768px) {
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
    }
}

/* Enhanced Service Card Hover Effects - Additional styles */
.service-card {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.service-img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* Enhanced Form Validation Styles */
.form-group {
    position: relative;
}

input.error,
textarea.error {
    border-color: #e74c3c !important;
    background-color: rgba(231, 76, 60, 0.05);
}

input.focused,
textarea.focused {
    border-color: var(--luxury-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

input.filled:not(.error),
textarea.filled:not(.error) {
    border-color: #27ae60;
}

.error-message {
    display: none;
    color: #e74c3c;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    font-weight: 400;
}


/* Logos Section */
.logos-section {
    background: transparent;
    padding: 2.5rem 0;
    margin-top: 0;
    margin-bottom: 6rem;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    align-items: center;
    justify-items: center;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    max-width: 120px;
    height: auto;
    object-fit: contain;
}

.logo-placeholder {
    padding: 2rem;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 300;
}

/* Footer */
.footer {
    background: var(--luxury-black);
    color: var(--luxury-gold-light);
    text-align: center;
    padding: 3rem 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer p {
    margin: 0;
    font-weight: 300;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--luxury-black);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-luxury);
        padding: 3rem 0;
        gap: 2rem;
        border-top: 1px solid rgba(212, 175, 55, 0.2);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }

    .hero-title {
        font-size: 3.5rem;
    }

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

    .section-title {
        font-size: 2.5rem;
    }

    .about-content-centered {
        padding: 3rem 0;
    }

    .about-title {
        font-size: 2.5rem;
    }

    .about-photo-circle {
        width: 250px;
        height: 250px;
    }

    .get-it-sold-grid {
        grid-template-columns: 1fr;
    }

    .guide-to-buyers {
        grid-template-columns: 1fr;
    }

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

    .service-img-circle {
        width: 250px;
        height: 250px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .stats-content {
        grid-template-columns: 1fr;
    }

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

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

    .features-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .search-form-wrapper {
        padding: 3rem 2rem;
    }
}

@media (max-width: 568px) {
    .container {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    section {
        padding: 5rem 0;
    }

    .stat-number {
        font-size: 3.5rem;
    }
}
