@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&display=swap');

:root {
    --color-bg: #0a0a0a;
    --color-surface: #111111;
    --color-surface-light: #1c1c1c;
    --color-gold: #cfa861;
    --color-gold-hover: #b89350;
    --color-text: #e0e0e0;
    --color-text-muted: #999999;
    --color-white: #ffffff;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--color-white);
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.section {
    padding: var(--spacing-xl) 0;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-main {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--color-gold);
    letter-spacing: 2px;
    line-height: 1;
}

.logo-sub {
    font-size: 0.7rem;
    letter-spacing: 4px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    margin-top: 4px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    gap: 8px;
}

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

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

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
}

.btn-outline:hover {
    background-color: rgba(207, 168, 97, 0.1);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background-image: url('../assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(10,10,10,0.8), rgba(10,10,10,1));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding-top: 80px;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero h1 span {
    color: var(--color-gold);
    font-style: italic;
}

.hero p {
    font-size: 1.1rem;
    color: var(--color-text);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Sub-headline Section */
.statement {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.statement h2 {
    font-size: 2.5rem;
    font-weight: 400;
}

.statement h2 span {
    color: var(--color-gold);
    font-style: italic;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.card {
    background-color: var(--color-surface);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.card:hover {
    border-color: rgba(207, 168, 97, 0.3);
    transform: translateY(-5px);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--color-white);
}

.card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.card-link {
    color: var(--color-gold);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.card-link i {
    transition: transform 0.2s;
}

.card-link:hover i {
    transform: translateX(5px);
}

/* News Cards */
.news-meta {
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--color-gold);
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-title {
    font-size: 1.1rem !important;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

.news-card {
    padding: 0;
    overflow: hidden;
    justify-content: flex-start;
}

.news-img {
    height: 180px;
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid rgba(207, 168, 97, 0.1);
}

.news-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

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

.split-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.split-content h2 span {
    color: var(--color-gold);
    font-style: italic;
}

.split-content p {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.benefits-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    gap: 15px;
}

.benefit-icon {
    color: var(--color-gold);
    font-size: 1.2rem;
    margin-top: 3px;
}

.benefit-text {
    font-size: 0.9rem;
    color: var(--color-text);
}

.split-image {
    position: relative;
}

.split-image img {
    width: 100%;
    height: auto;
    border: 1px solid rgba(207, 168, 97, 0.3);
    padding: 10px;
    background-color: var(--color-surface);
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 3rem 0;
    margin: var(--spacing-xl) 0;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--color-gold);
    font-family: var(--font-body);
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-text-muted);
}

/* CTA Bottom */
.cta-bottom {
    text-align: center;
    padding: var(--spacing-xl) 0;
}

.cta-bottom h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.cta-bottom h2 span {
    color: var(--color-gold);
    font-style: italic;
}

/* Footer */
.footer {
    background-color: var(--color-surface-light);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

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

.footer-info p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin: 1.5rem 0;
    max-width: 300px;
}

.footer h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 0.8rem;
}

.footer ul li a {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer ul li a:hover {
    color: var(--color-gold);
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.contact-list i {
    color: var(--color-gold);
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--color-text-muted);
    font-size: 0.8rem;
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: transform 0.3s;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 992px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .split-section {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .header-inner {
        flex-direction: row;
        padding: 1rem 0;
        gap: 10px;
    }
    .logo img {
        height: 70px !important;
    }
    .header .btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .cards-grid {
        grid-template-columns: 1fr;
    }
    .benefits-list {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .stat-item h3 {
        font-size: 1.8rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .hero-actions {
        flex-direction: column;
    }
}

/* Animations */
.scroll-anim {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-anim.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }

