/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* Typography */
.font-luxury {
    font-family: 'Playfair Display', serif;
}
/* Colors */
:root {
    --luxury-navy: #2c3e50;
    --luxury-gold: #d4af37;
    --sage: #2e8b57;
    --warm-gray: #6c757d;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --border-gray: #e9ecef;
}
/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-gray);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.nav-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--luxury-navy);
    margin: 0;
}
.nav-subtitle {
    font-size: 0.9rem;
    color: var(--warm-gray);
    font-weight: 300;
    margin-top: -4px;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav-link {
    text-decoration: none;
    color: var(--luxury-navy);
    font-weight: 500;
    transition: color 0.3s ease;
}
.nav-link:hover {
    color: var(--luxury-gold);
}
.contact-btn {
    background: var(--luxury-gold);
    color: var(--luxury-navy);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.contact-btn:hover {
    background: var(--luxury-navy);
    color: var(--white);
}
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--luxury-navy);
    margin: 3px 0;
    transition: 0.3s;
}
/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
/*
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #87CEEB 0%, #4682B4 50%, #2E8B57 100%);
    background-size: cover;
    background-position: center;
    z-index: -2;
}
.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><linearGradient id="water" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%2387CEEB;stop-opacity:1" /><stop offset="100%" style="stop-color:%234682B4;stop-opacity:1" /></linearGradient></defs><rect width="1200" height="400" fill="url(%23water)"/><polygon points="0,400 300,350 600,380 900,340 1200,360 1200,800 0,800" fill="%232E8B57"/><circle cx="100" cy="500" r="80" fill="%23228B22" opacity="0.8"/><ellipse cx="120" cy="460" rx="15" ry="60" fill="%23006400"/><circle cx="900" cy="520" r="60" fill="%23228B22" opacity="0.8"/><ellipse cx="915" cy="490" rx="12" ry="45" fill="%23006400"/><circle cx="1100" cy="480" r="70" fill="%23228B22" opacity="0.8"/><ellipse cx="1115" cy="450" rx="14" ry="55" fill="%23006400"/><rect x="400" y="600" width="60" height="40" fill="%23D2691E"/><polygon points="400,600 430,580 460,600" fill="%23A0522D"/><rect x="700" y="620" width="80" height="50" fill="%23D2691E"/><polygon points="700,620 740,595 780,620" fill="%23A0522D"/></svg>') center/cover;
    opacity: 0.3;
    z-index: -1;
}
*/

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('hero-background.jpg') center/cover no-repeat;
    z-index: -2;
}
.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
}


.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    z-index: 1;
}
.hero-text-box {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 3rem 2rem;
    backdrop-filter: blur(5px);
}
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}
.hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--luxury-gold);
    margin-bottom: 1.5rem;
}
.hero-description {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1.7;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
/* Buttons */
.btn-primary {
    background: var(--luxury-gold);
    color: var(--luxury-navy);
    border: none;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}
.btn-primary:hover {
    background: var(--luxury-navy);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-secondary:hover {
    background: var(--white);
    color: var(--luxury-navy);
}
.btn-primary.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}
.btn-primary.full-width {
    width: 100%;
    margin-top: 1rem;
}
/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--luxury-navy);
    margin-bottom: 1rem;
}
.section-subtitle {
    font-size: 1.2rem;
    color: var(--warm-gray);
    max-width: 600px;
    margin: 0 auto;
}
/* Overview Section */
.overview {
    padding: 6rem 0;
    background: var(--light-gray);
}
.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}
.overview-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
.overview-card:hover {
    transform: translateY(-5px);
}
.overview-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.overview-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--luxury-navy);
    margin-bottom: 1rem;
}
.overview-card p {
    color: var(--warm-gray);
    line-height: 1.6;
}
/* Features Section */
.features {
    padding: 6rem 0;
    background: var(--white);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}
.feature-item {
    padding: 1.5rem;
    border-left: 4px solid var(--luxury-gold);
    background: var(--light-gray);
    border-radius: 0 8px 8px 0;
}
.feature-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--luxury-navy);
    margin-bottom: 0.5rem;
}
.feature-item p {
    color: var(--warm-gray);
}
/* Investment Section */
.investment {
    padding: 6rem 0;
    background: var(--luxury-navy);
    color: var(--white);
}
.investment .section-title {
    color: var(--white);
}
.investment .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}
.investment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}
.investment-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.investment-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}
.investment-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
}
.investment-icon {
    font-size: 2rem;
}
.investment-list {
    list-style: none;
}
.investment-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
}
.investment-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--luxury-gold);
    font-weight: bold;
}
.investment-cta {
    text-align: center;
}
/* Location Section */
.location {
    padding: 6rem 0;
    background: var(--light-gray);
}
.location-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}
.location-item {
    margin-bottom: 2rem;
}
.location-item h3 {
    font-size: 1.2rem;
    color: var(--luxury-navy);
    margin-bottom: 0.5rem;
}
.location-item p {
    color: var(--warm-gray);
    line-height: 1.6;
}
.location-map {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.map-placeholder {
    padding: 3rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--sage), var(--luxury-navy));
    color: var(--white);
}
.map-placeholder h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.map-icon {
    font-size: 3rem;
    margin-top: 1rem;
}
/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: var(--white);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--luxury-navy);
    margin-bottom: 1rem;
}
.contact-info p {
    color: var(--warm-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}
.contact-item {
    display: flex;
    margin-bottom: 1rem;
}
.contact-label {
    font-weight: 600;
    color: var(--luxury-navy);
    min-width: 80px;
}
.contact-value {
    color: var(--warm-gray);
}
.contact-cta {
    text-align: center;
}
/* Footer */
.footer {
    background: var(--luxury-navy);
    color: var(--white);
    padding: 3rem 0;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
}
.footer-info {
    text-align: right;
}
.footer-info p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.25rem;
}
/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}
.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-content {
    background: var(--white);
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideIn 0.3s ease;
}
@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-gray);
}
.modal-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--luxury-navy);
}
.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--warm-gray);
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-close:hover {
    color: var(--luxury-navy);
}
.modal-body {
    padding: 2rem;
}
/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--luxury-navy);
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-gray);
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--luxury-gold);
}
.form-group textarea {
    resize: vertical;
    min-height: 100px;
}
/* Toast */
.toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 1rem 1.5rem;
    border-radius: 6px;
    color: var(--white);
    font-weight: 600;
    z-index: 3000;
    transform: translateX(400px);
    transition: transform 0.3s ease;
}
.toast.success {
    background: var(--sage);
}
.toast.error {
    background: #dc3545;
}
.toast.show {
    transform: translateX(0);
}
/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-text-box {
        padding: 2rem 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .investment-grid {
        grid-template-columns: 1fr;
    }
    
    .location-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-info {
        text-align: center;
    }
    
    .modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
}
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        margin-bottom: 1rem;
    }
}
/* Utility Classes */
.text-center {
    text-align: center;
}
.mb-2 {
    margin-bottom: 1rem;
}
.mb-4 {
    margin-bottom: 2rem;
}
.hidden {
    display: none;
}
/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}