
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, sans-serif;
}

:root {
    --primary: #BFA181;
    --primary-hover: #A88B6C;
    --whatsapp: #25D366;
    --whatsapp-hover: #20BD5C;
}

body {
    line-height: 1.5;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.nav-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
}

.nav-buttons {
    display: flex;
    gap: 1rem;
}

/* Flash Banner */
.flash-banner {
    position: fixed;
    top: 5rem;
    left: 0;
    right: 0;
    background: #ef4444;
    color: white;
    text-align: center;
    padding: 0.5rem;
    z-index: 40;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.8; }
    100% { opacity: 1; }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    padding-top: 8rem;
    color: white;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: url('ttg.webp') no-repeat center center;
    background-size: cover;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.7), transparent);
}

.hero-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 5rem 1rem;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero .accent {
    color: white;
	font-family: 'Playfair Display', serif;
}

.hero p {
    font-size: 1.25rem;
    max-width: 32rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

/* Stats */
.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 32rem;
}

.stat {
    border-left: 4px solid var(--primary);
    padding-left: 1rem;
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat p {
    font-size: 1rem;
    margin: 0;
    color: rgba(255,255,255,0.7);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
}

.scroll-line {
    width: 2px;
    height: 4rem;
    background: var(--primary);
    margin: 0 auto 1rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(1rem); }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.375rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-hover);
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: white;
}

.btn-whatsapp:hover {
    background: var(--whatsapp-hover);
}

/* Sections */
section {
    padding: 5rem 1rem;
}

section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

/* About Section */
.about {
    background: #f8f8f8;
}

.about-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.about-content p {
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.about-stats .stat {
    border-left: 4px solid var(--primary);
    padding-left: 1rem;
}

.about-stats h3 {
    color: #1a202c;
}

.about-stats p {
    color: #4a5568;
}

.location-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.highlights {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-top: 1.5rem;
}

.highlights h4 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
}

.highlights ul {
    list-style: none;
}

.highlights li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.highlights li::before {
    content: "•";
    color: var(--primary);
    position: absolute;
    left: 0;
}

/* Features Section */
.features-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    padding: 2rem;
    border: 1px solid var(--primary);
    border-radius: 0.5rem;
    transition: box-shadow 0.2s;
}

.feature-card:hover {
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card ul {
    list-style: none;
}

.feature-card li {
    margin-bottom: 0.75rem;
    color: #4a5568;
}

/* Floor Plans Section */
.floor-plans {
    background: #f8f8f8;
}

.plans-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.plan-card {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.plan-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.area {
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.plan-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.plan-card li {
    margin-bottom: 0.75rem;
    color: #4a5568;
}

.plan-card .btn {
    width: 100%;
}

/* Amenities Section */
.amenities-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.amenity-card {
    padding: 2rem;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.amenity-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.amenity-card ul {
    list-style: none;
}

.amenity-card li {
    margin-bottom: 0.75rem;
    color: #4a5568;
}

/* Gallery Section */
.gallery {
    background: #f8f8f8;
}

.gallery-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    aspect-ratio: 1;
    border-radius: 0.5rem;
    overflow: hidden;
    transition: transform 0.2s;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Footer */
footer {
    background: #1a202c;
    color: white;
    padding: 5rem 1rem;
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.footer-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-info {
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: rgba(255,255,255,0.7);
}

.footer-map {
    height: 300px;
    background: #2d3748;
    border-radius: 0.5rem;
    overflow: hidden;
}

/* Form Overlay */
.form-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
}

.form-container {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.form-container h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-container form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-container input {
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.375rem;
}

.close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #4a5568;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-grid,
    .plans-grid,
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }

    .about-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .features-grid,
    .plans-grid,
    .amenities-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .nav-content {
        flex-direction: column;
        height: auto;
        padding: 1rem;
        text-align: center;
    }

    .nav-buttons {
        margin-top: 1rem;
        width: 100%;
        justify-content: center;
    }
}

.payment-plan {
    padding: 3rem 1rem;
    background-color: #f9f9f9;
    text-align: center;
}

.payment-plan h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.payment-table-container {
    overflow-x: auto;
    max-width: 1000px;
    margin: 0 auto;
}

.payment-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1rem;
}

.payment-table th,
.payment-table td {
    border: 1px solid #ccc;
    padding: 1rem;
    text-align: left;
    vertical-align: top;
}

.payment-table th {
    background-color: #bfa181;
    color: #fff;
}

.payment-table tr:nth-child(even) td {
    background-color: #f1f1f1;
}
