/* CSS Variables */
:root {
    --primary-green: #1E452E;
    --primary-gold: #C9A24B;
    --white: #FFFFFF;
    --light-gray: #F8F8F8;
    --text-dark: #333333;
    --text-light: #666666;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 15px 50px rgba(0, 0, 0, 0.15);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary-green);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

/* Header */
.header {
    background: linear-gradient(135deg, var(--primary-green) 0%, #2a5f42 100%);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--white);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-gold);
}

.phone-btn {
    background: var(--primary-gold);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.phone-btn:hover {
    background: #d4b05c;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(201, 162, 75, 0.4);
}

/* Hero Section */
.hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 69, 46, 0.85) 0%, rgba(30, 69, 46, 0.6) 100%);
    z-index: 2;
}

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

.badge {
    display: inline-block;
    background: var(--primary-gold);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-price {
    margin-bottom: 30px;
}

.price-main {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-gold);
    font-family: 'Playfair Display', serif;
}

.price-sub {
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 5px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.btn-primary:hover {
    background: #d4b05c;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 162, 75, 0.4);
}

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

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

.btn-full {
    width: 100%;
}

/* Quick Info Bar */
.quick-info {
    background: var(--white);
    padding: 40px 0;
    box-shadow: var(--shadow);
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

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

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.info-item i {
    font-size: 2.5rem;
    color: var(--primary-gold);
}

.info-text {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-value {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-green);
}

/* Section Styles */
section {
    padding: 80px 0;
}

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

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

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

/* Gallery Section */
.gallery {
    background: var(--light-gray);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    aspect-ratio: 4/3;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 69, 46, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--white);
}

.gallery-overlay i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--primary-gold);
}

.gallery-overlay p {
    font-size: 1.1rem;
    font-weight: 600;
}

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

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

/* Story Section */
.story-section {
    background: linear-gradient(135deg, rgba(30, 69, 46, 0.03), rgba(201, 162, 75, 0.03));
    padding: 100px 0;
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.story-content .section-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.4;
}

.story-subtitle {
    font-size: 1.8rem;
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 40px;
    font-style: italic;
}

.story-text {
    text-align: left;
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-dark);
}

.story-text h3 {
    font-size: 2rem;
    margin: 40px 0 20px;
    color: var(--primary-green);
}

.story-text p {
    margin-bottom: 25px;
}

.check-list {
    list-style: none;
    margin: 30px 0;
    padding: 30px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.check-list li {
    padding: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid var(--light-gray);
}

.check-list li:last-child {
    border-bottom: none;
}

.check-list i {
    color: var(--primary-gold);
    font-size: 1.5rem;
}

.highlight-text {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-gold));
    color: var(--white);
    padding: 25px 30px;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.8;
    margin: 30px 0;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--white);
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-text {
    color: var(--text-light);
    line-height: 1.8;
}

/* Details Section */
.details {
    background: var(--light-gray);
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.lead-text {
    font-size: 1.3rem;
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 20px;
}

.details-content h3 {
    font-size: 1.8rem;
    margin: 30px 0 20px;
}

.params-table {
    background: var(--white);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
}

.param-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid var(--light-gray);
}

.param-row:last-child {
    border-bottom: none;
}

.param-label {
    color: var(--text-light);
    font-weight: 500;
}

.param-value {
    color: var(--primary-green);
    font-weight: 700;
}

.details-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.details-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Location Benefits Section */
.location-benefits {
    background: var(--light-gray);
    padding: 80px 0;
}

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

.benefit-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.benefit-card-highlight {
    grid-column: span 1;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-gold));
    color: var(--white);
}

.benefit-card-highlight h4,
.benefit-card-highlight p {
    color: var(--white);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-card-highlight .benefit-icon {
    background: rgba(255, 255, 255, 0.2);
}

.benefit-icon i {
    font-size: 2rem;
    color: var(--primary-gold);
}

.benefit-card-highlight .benefit-icon i {
    color: var(--white);
}

.benefit-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-green);
}

.benefit-card p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Prestige Section */
.prestige-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 100px 0;
    position: relative;
}

.prestige-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, var(--light-gray), transparent);
    pointer-events: none;
}

.prestige-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-dark);
    font-weight: 500;
}

.prestige-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    align-items: center;
}

.prestige-visual {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.prestige-visual img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

.prestige-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(30, 69, 46, 0.95), transparent);
    color: var(--white);
    padding: 30px 20px 20px;
    font-size: 1.1rem;
    font-weight: 600;
}

.prestige-content {
    padding: 20px;
}

.prestige-content-full {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.prestige-content h3 {
    font-size: 2.2rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.prestige-lead {
    font-size: 1.3rem;
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 30px;
}

.vip-list {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.vip-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    border-bottom: 2px solid var(--light-gray);
    transition: all 0.3s ease;
}

.vip-item:last-child {
    border-bottom: none;
}

.vip-item:hover {
    background: var(--light-gray);
    border-radius: 10px;
}

.vip-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vip-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.vip-item div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.vip-item strong {
    font-size: 1.15rem;
    color: var(--primary-green);
    display: block;
}

.vip-item span {
    font-size: 0.95rem;
    color: var(--text-light);
}

.prestige-highlight {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-gold));
    color: var(--white);
    padding: 30px;
    border-radius: 15px;
    line-height: 1.8;
}

.prestige-highlight strong {
    font-size: 1.2rem;
    display: block;
    margin-bottom: 10px;
}

.prestige-secondary {
    margin: 60px 0;
}

.prestige-image-large {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
    max-height: 600px;
}

.prestige-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(30, 69, 46, 0.95) 0%, rgba(30, 69, 46, 0.7) 50%, transparent 100%);
    padding: 80px 40px 40px;
}

.overlay-text {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    font-family: 'Playfair Display', serif;
    line-height: 1.3;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.prestige-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stat-box {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.stat-box i {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.stat-box h4 {
    font-size: 1.4rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

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

/* Investment Section */
.investment {
    background: linear-gradient(135deg, var(--primary-green), #2a5f42);
    color: var(--white);
}

.investment .section-title {
    color: var(--white);
    text-align: center;
    margin-bottom: 30px;
}

.investment-intro {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.investment-highlight {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin: 40px 0;
    backdrop-filter: blur(10px);
}

.investment-highlight p {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.investment-cta {
    font-size: 1.5rem !important;
    color: var(--primary-gold);
    font-weight: 700;
}

.investment-subtitle {
    text-align: center;
    font-size: 2rem;
    color: var(--white);
    margin: 60px 0 40px;
}

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

.investment-card {
    text-align: center;
    padding: 35px 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.investment-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.investment-card i {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

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

.investment-card p {
    font-size: 1rem;
    line-height: 1.7;
}

/* Broker Section */
.broker-section {
    background: var(--white);
    padding: 80px 0;
}

.broker-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    background: var(--light-gray);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    margin-top: 40px;
}

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

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

.broker-info {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.broker-name {
    font-size: 2.2rem;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.broker-title {
    font-size: 1.1rem;
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 20px;
}

.broker-contact {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.broker-phone,
.broker-email,
.broker-profile {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.broker-phone {
    background: var(--primary-gold);
    color: var(--white);
}

.broker-phone:hover {
    background: #d4b05c;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 162, 75, 0.4);
}

.broker-email {
    background: var(--white);
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.broker-email:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(30, 69, 46, 0.3);
}

.broker-profile {
    background: var(--primary-green);
    color: var(--white);
}

.broker-profile:hover {
    background: #2a5f42;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(30, 69, 46, 0.4);
}

/* Contact Section */
.contact {
    background: var(--light-gray);
}

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

.contact-info .lead-text {
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.contact-cta {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-green);
    margin: 25px 0;
    line-height: 1.8;
}

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

.contact-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: var(--shadow);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-top: 5px;
}

.contact-item strong {
    display: block;
    color: var(--primary-green);
    margin-bottom: 5px;
}

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

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

.trust-badge {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-gold));
    color: var(--white);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.trust-badge i {
    font-size: 2rem;
    color: var(--primary-gold);
    filter: brightness(1.5);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-hover);
}

.contact-form-wrapper h3 {
    font-size: 2rem;
    margin-bottom: 30px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--primary-green);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 20px;
}

.footer-tagline {
    color: var(--primary-gold);
    font-size: 1.5rem;
    margin: 15px 0 10px;
}

.footer-slogan {
    font-size: 1.1rem;
    font-style: italic;
    opacity: 0.9;
    margin-bottom: 20px;
}

.footer-about p {
    line-height: 1.8;
    opacity: 0.9;
}

.footer h4 {
    color: var(--primary-gold);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--primary-gold);
}

.footer-contact p {
    margin-bottom: 15px;
}

.footer-contact i {
    color: var(--primary-gold);
    margin-right: 10px;
}

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

.footer-bottom p {
    opacity: 0.8;
    margin-bottom: 10px;
}

.footer-note {
    font-size: 0.9rem;
    color: var(--primary-gold);
    font-weight: 600;
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-gold);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: var(--shadow);
}

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

.scroll-top:hover {
    background: var(--primary-green);
    transform: translateY(-5px);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 50px;
    font-size: 3rem;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    color: var(--primary-gold);
}

.lightbox-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-gold);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-nav button:hover {
    background: var(--primary-green);
}

.lightbox-prev {
    left: 50px;
}

.lightbox-next {
    right: 50px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .header-content {
        flex-wrap: wrap;
    }
    
    .nav {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .details-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Location Section */
.location-section {
    padding: 100px 0;
    background: var(--white);
}

.location-content {
    max-width: 900px;
    margin: 0 auto;
}

.location-intro {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 50px;
    text-align: center;
    line-height: 1.8;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.location-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.location-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.location-card i {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.location-card h4 {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.location-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Market Table */
.market-table {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 15px;
    margin: 40px 0;
    overflow-x: auto;
}

.price-breakdown {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
}

.price-breakdown thead {
    background: var(--primary-green);
    color: var(--white);
}

.price-breakdown th,
.price-breakdown td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.price-breakdown th {
    font-weight: 600;
    font-size: 1.1rem;
}

.price-breakdown td {
    font-size: 1rem;
    color: var(--text-dark);
}

.price-breakdown td:last-child {
    text-align: right;
    font-weight: 600;
    color: var(--primary-green);
}

.price-breakdown .highlight-row {
    background: #f9f7f3;
}

.price-breakdown .result-row {
    background: var(--primary-gold);
    color: var(--white);
    font-weight: 700;
}

.price-breakdown .result-row td {
    color: var(--white);
    font-size: 1.2rem;
    border-bottom: none;
}

.investment-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.95rem;
    font-style: italic;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .price-main {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .nav {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .nav-link {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .gallery-grid,
    .features-grid,
    .investment-grid {
        grid-template-columns: 1fr;
    }
    
    .broker-card {
        grid-template-columns: 1fr;
    }
    
    .broker-image img {
        min-height: 300px;
    }
    
    .broker-contact {
        flex-direction: column;
    }
    
    .broker-phone,
    .broker-email,
    .broker-profile {
        width: 100%;
        justify-content: center;
    }
    
    .prestige-stats {
        grid-template-columns: 1fr;
    }
    
    .location-grid {
        grid-template-columns: 1fr;
    }
    
    .price-breakdown {
        font-size: 0.9rem;
    }
    
    .price-breakdown th,
    .price-breakdown td {
        padding: 12px 10px;
    }
    
    .overlay-text {
        font-size: 1.5rem;
    }
    
    .vip-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .lightbox-nav button {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .lightbox-prev {
        left: 20px;
    }
    
    .lightbox-next {
        right: 20px;
    }
}