/* CSS Reset and Variables */
:root {
    --primary: #ffffff; /* Slate 900 */
    --primary-light: #e2e8f0; /* Slate 800 */
    --secondary: #3b82f6; /* Blue 600 */
    --secondary-hover: #60a5fa; /* Blue 700 */
    --accent: #D97706; /* Amber 600 */
    --text-main: #f8fafc; /* Slate 700 */
    --text-muted: #94a3b8; /* Slate 500 */
    --bg-main: #000000;
    --bg-light: #111111; /* Slate 50 */
    --border: #333333; /* Slate 200 */
    --radius: 12px;
    --shadow-sm: 0 1px 3px rgba(255,255,255,0.05);
    --shadow-md: 0 4px 6px -1px rgba(255,255,255,0.05), 0 2px 4px -1px rgba(255,255,255,0.03);
    --shadow-lg: 0 10px 15px -3px rgba(255,255,255,0.05), 0 4px 6px -2px rgba(255,255,255,0.03);
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-serif: 'Playfair Display', serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-sans);
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 16px;
}

.text-center { text-align: center; }
.text-primary { color: var(--secondary) !important; }
.text-white { color: #000 !important; }

/* Utility Classes */
.section { padding: 80px 0; }
.bg-light { background-color: var(--bg-light); }
.bg-primary { background-color: var(--primary); color: #000000; }
.mb-4 { margin-bottom: 24px; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-primary {
    background-color: var(--primary);
    color: #000000;
}
.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: #25D366; /* WhatsApp Green */
    color: white;
}
.btn-secondary:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--border);
    color: var(--primary);
}
.btn-outline:hover {
    border-color: var(--primary);
    background-color: var(--bg-light);
}

/* Header */
.header {
    position: sticky;
    top: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 100;
    padding: 16px 0;
}

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

.logo img {
    height: 48px;
    border-radius: 8px;
}

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

.nav a {
    font-weight: 500;
    color: var(--text-muted);
}
.nav a:hover {
    color: var(--primary);
}

.header-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--primary);
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: var(--bg-light);
    color: var(--secondary);
    border-radius: 100px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 24px;
    border: 1px solid var(--border);
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.hero-title span {
    color: var(--secondary);
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 600;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    aspect-ratio: 4/3;
    width: 100%;
}

.experience-card {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background: var(--bg-light);
    padding: 24px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 16px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.experience-card i {
    font-size: 32px;
    color: var(--secondary);
}

.experience-card strong {
    display: block;
    color: var(--primary);
    font-size: 16px;
}

.experience-card span {
    font-size: 14px;
    color: var(--text-muted);
}

/* Split Section */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.split-image img {
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-text {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-list li {
    display: flex;
    gap: 20px;
}

.feature-list i {
    font-size: 32px;
    color: var(--secondary);
    flex-shrink: 0;
}

.feature-list strong {
    display: block;
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 4px;
}

.feature-list span {
    color: var(--text-muted);
}

/* Amenities Grid */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.amenity-card {
    background: var(--bg-light);
    padding: 32px 24px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.amenity-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--secondary);
    transform: translateY(-4px);
}

.amenity-card i {
    font-size: 40px;
    color: var(--secondary);
    margin-bottom: 20px;
}

.amenity-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.amenity-card p {
    font-size: 14px;
    color: var(--text-muted);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    display: block;
}

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

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

/* Info Cards */
.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.info-card {
    padding: 48px;
    border-radius: 24px;
    background: var(--bg-light);
    border: 1px solid var(--border);
}

.info-card.bg-primary {
    color: #000;
    border: none;
}

.info-card-title {
    font-size: 28px;
    margin-bottom: 24px;
}

.info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.info-list i {
    font-size: 24px;
    margin-top: 2px;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tag {
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
}

/* Pricing Card */
.pricing-card {
    background: var(--bg-main);
    
    border-radius: 24px;
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    max-width: 800px;
    margin: 0 auto;
}

.pricing-header {
    background: var(--bg-light);
    color: var(--text-main);
    padding: 40px;
    text-align: center;
}

.pricing-header h2 {
    color: var(--primary);
    margin-bottom: 8px;
}

.pricing-header p {
    color: rgba(255,255,255,0.8);
}

.pricing-body {
    padding: 48px;
}

.price-display {
    text-align: center;
    margin-bottom: 40px;
}

.currency {
    font-size: 32px;
    font-weight: 600;
    vertical-align: top;
    color: var(--secondary);
}

.amount {
    font-size: 64px;
    font-weight: 700;
    line-height: 1;
    color: var(--primary);
}

.period {
    color: var(--text-muted);
    font-size: 18px;
}

.pricing-details {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
}

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

.detail-label {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.detail-value {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
}

.pricing-includes h4 {
    margin-bottom: 16px;
}

.includes-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.includes-list li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.includes-list i {
    color: var(--secondary);
    background: var(--bg-light);
    padding: 4px;
    border-radius: 50%;
    font-size: 14px;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
}

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

.contact-content h2 {
    font-size: 40px;
}

.contact-content p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 48px;
}

.contact-methods {
    display: flex;
    gap: 24px;
    justify-content: center;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 32px;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 16px;
    text-align: left;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
}

.contact-btn.whatsapp .contact-icon {
    background: #DCF8C6;
    color: #128C7E;
}

.contact-text span {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
}

.contact-text strong {
    font-size: 18px;
    color: var(--primary);
}

/* Footer */
.footer {
    background: var(--bg-light);
    color: var(--text-main);
    padding: 80px 0 40px;
}

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

.footer-logo {
    height: 64px;
    border-radius: 8px;
    margin-bottom: 24px;
    background: transparent;
    padding: 8px;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    max-width: 300px;
}

.footer-links h3, .footer-contact h3 {
    color: var(--primary);
    margin-bottom: 24px;
    font-size: 18px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
}

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

.footer-contact p {
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title { font-size: 48px; }
    .hero-container, .split-section { grid-template-columns: 1fr; gap: 48px; }
    .experience-card { bottom: 24px; left: 24px; }
    .grid-2-col { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
    .header-actions { display: none; }
    .mobile-menu-toggle { display: block; }
    
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-light);
        padding: 24px;
        flex-direction: column;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-sm);
    }

    .nav.active { display: flex; }
    
    .hero-title { font-size: 40px; }
    .contact-methods { flex-direction: column; }
    .includes-list { grid-template-columns: 1fr; }
    .experience-card { position: static; margin-top: -32px; z-index: 10; width: calc(100% - 48px); margin-left: auto; margin-right: auto; }
}
