:root {
    --primary-color: #064e3b; /* Deep Emerald */
    --secondary-color: #d4af37; /* Gold */
    --accent-color: #10b981; /* Bright Green */
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --white: #ffffff;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.container.narrow {
    max-width: 700px;
}

section {
    padding: 100px 0;
}

.bg-alt {
    background-color: var(--bg-light);
}

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

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

.btn-primary:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

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

.btn-cta {
    background: linear-gradient(135deg, var(--secondary-color), #b8860b);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    display: inline-block;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.btn-cta:hover {
    transform: scale(1.05);
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row !important;
}

.logo {
    display: flex;
    flex-direction: column;
    order: 1;
    text-decoration: none;
}

.nav {
    order: 2;
}

.logo-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 4px;
}

.nav a {
    text-decoration: none;
    color: var(--text-dark);
    margin-left: 30px;
    font-weight: 500;
    transition: var(--transition);
}

.nav a.btn-primary {
    color: var(--white);
}

.nav a:hover:not(.btn-primary) {
    color: var(--accent-color);
}

.mobile-menu-toggle {
    display: none; /* Hidden on desktop */
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: url('../images/luxury_hero_v3.png') center right/cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--white);
    padding-top: 140px; /* Increased from 80px */
    padding-bottom: 100px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(6, 78, 59, 1) 0%, rgba(6, 78, 59, 0.7) 40%, transparent 100%);
}

.hero-container {
    position: relative;
    z-index: 10;
    width: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: flex-start; /* Aligned to start to move content up */
}

.hero-left {
    padding-top: 40px;
}

.hero-right {
    padding-top: 40px; /* Added padding to push form down */
}

.hero-form-card {
    background: var(--white);
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    color: var(--text-dark);
}

.hero-form-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.hero-form-card p {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.pre-title {
    display: block;
    color: var(--secondary-color);
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
    animation: fadeInDown 1s ease;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 25px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
    animation: fadeInLeft 1s ease 0.2s both;
}

.hero-title .highlight {
    color: var(--accent-color);
    display: block;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 45px;
    opacity: 0.95;
    line-height: 1.5;
    animation: fadeInLeft 1s ease 0.4s both;
}

.hero-stats {
    display: flex;
    gap: 40px;
    animation: fadeInUp 1s ease 0.6s both;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section Styling */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-align: center; /* Center align universally */
}

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

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

/* Feature List */
.feature-list {
    list-style: none;
    margin-top: 30px;
}

.feature-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: var(--text-dark);
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Image Card Styling */
.image-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.image-card img {
    width: 100%;
    display: block;
    transition: var(--transition);
}

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

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    color: var(--white);
    transition: var(--transition);
}

.card-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 5px;
    color: var(--white);
}

.card-overlay p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.price-card {
    background: var(--white);
    padding: 40px;
    border-radius: 30px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: center;
    border: 1px solid #f1f1f1;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.card-header { margin-bottom: 20px; }

.card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.price-card.featured {
    border: 2px solid var(--secondary-color);
    background: linear-gradient(to bottom, #fff, #fffdf5);
}

.card-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.price-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.area {
    color: var(--text-light);
    margin-bottom: 8px;
    font-size: 1rem;
}

.price {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.suffix { font-size: 1rem; font-weight: 500; opacity: 0.7; }

.card-features {
    list-style: none;
    margin-bottom: 35px;
    text-align: left;
    display: inline-block;
}

.card-features li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.card-features li::after {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Tokens */
.registration-tokens {
    margin-top: 60px;
}

.token-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.token-card {
    padding: 30px 50px;
    border-radius: 24px;
    text-align: center;
    min-width: 280px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.token-card.gold {
    background: #fffcf0;
    border: 1px solid #fbe7a1;
}

.token-card.platinum {
    background: #f7f9fa;
    border: 1px solid #e1e7ec;
}

.token-card h4 {
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.token-amount {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
}

/* Amenity Grid */
.amenity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.amenity-card {
    background: var(--white);
    padding: 45px;
    border-radius: 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid #f3f4f6;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.amenity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: var(--accent-color);
}

.amenity-icon { 
    font-size: 3.5rem; 
    margin-bottom: 25px; 
    line-height: 1; /* Fix emoji height artifacts */
}

.amenity-card h3 { color: var(--primary-color); margin-bottom: 15px; }

/* Highlights (Why Choose Us) Redesign */
.highlight-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
}

.highlight-image {
    flex: 1;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 25px 25px 70px rgba(0,0,0,0.15);
}

.highlight-image img { width: 100%; display: block; filter: brightness(0.9); }

.highlight-content { flex: 1; }

.highlight-list { margin-top: 50px; }

.highlight-item { display: flex; gap: 30px; margin-bottom: 40px; }

.h-number {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--secondary-color);
    opacity: 0.5;
}

.h-text h4 { color: var(--primary-color); margin-bottom: 8px; font-size: 1.2rem; }

/* Contact Form Overhaul */
.contact-form { margin-top: 30px; width: 100%; }

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

.form-group input, 
.form-group select {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #d1d5db; /* Improved visibility */
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    background: #ffffff;
    color: var(--text-dark);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    border-width: 2px;
    box-shadow: 0 0 0 4px rgba(6, 78, 59, 0.1);
}

.form-status { margin-top: 15px; font-weight: 600; text-align: center; }

.btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover { background: var(--secondary-color); transform: translateY(-2px); }

/* Footer */
.footer {
    background: #080808;
    color: #a3a3a3;
    padding: 100px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1.2fr;
    gap: 80px;
    margin-bottom: 80px;
}

.footer-logo .logo-name { color: var(--white); }

.footer-desc { margin-top: 25px; line-height: 1.8; font-size: 0.95rem; }

.footer-col h4 {
    color: var(--white);
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
}

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

.footer-col ul li { margin-bottom: 15px; }

.footer-col ul li a {
    color: #a3a3a3;
    text-decoration: none;
    transition: var(--transition);
}

.footer-col ul li a:hover { color: var(--secondary-color); padding-left: 5px; }

.footer-bottom { border-top: 1px solid #222; padding-top: 40px; }

.footer-copy {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-copy .small { font-size: 0.8rem; line-height: 1.6; opacity: 0.6; }

/* Scroll Top */
.scroll-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 55px;
    height: 55px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.6rem;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
}

.scroll-top.active { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--secondary-color); transform: scale(1.1); }




.nav-links a {
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    color: var(--primary-color);
}

.nav-links a:hover {
    color: var(--accent-color);
}

/* Responsive */
@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
        z-index: 1050;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        margin: 0;
        font-size: 1.5rem;
        font-weight: 600;
    }

    .mobile-menu-toggle { 
        display: flex; 
    }

    .hero-grid { grid-template-columns: 1fr; gap: 30px; }
    .hero-glass-card { padding: 30px; }
    .grid-two { grid-template-columns: 1fr; gap: 40px; }
    .highlight-wrapper { flex-direction: column; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }

    .mobile-menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
    .mobile-menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(8px, -8px); }
}

@media (max-width: 768px) {
    section { padding: 60px 0; }
    .hero { min-height: auto; padding-top: 120px; padding-bottom: 60px; }
    .hero-title { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .hero-stats { flex-direction: column; gap: 20px; }
    .amenity-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
}

/* Modal System */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
}

.modal-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 500px;
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    transform: translateY(30px);
    transition: var(--transition);
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f3f4f6;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--primary-color);
    color: var(--white);
}

.modal .form-wrapper {
    box-shadow: none;
    padding: 40px;
}

