:root {
    --primary: #0a192f;
    --accent: #d4af37;
    --text-dark: #111827;
    --text-muted: #4b5563;
    --bg-light: #f9fafb;
    --font-main: 'Outfit', sans-serif;
}

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

body {
    font-family: var(--font-main);
    background-color: white;
    color: var(--text-dark);
    line-height: 1.6;
}

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

/* Header */
header {
    padding: 1.5rem 0;
    position: absolute;
    width: 100%;
    z-index: 1000;
    background: transparent;
}

nav { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.4rem; font-weight: 900; color: white; text-decoration: none; letter-spacing: 2px; }
.logo span { color: var(--accent); }

.nav-links { display: flex; gap: 2.5rem; }
.nav-links a { text-decoration: none; color: white; font-weight: 700; font-size: 0.9rem; text-transform: uppercase; }

/* Hero - Webnode Style */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(10, 25, 47, 0.6), rgba(10, 25, 47, 0.6)), url('hero-final.png') center/cover;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}

.hero-content { width: 100%; }
.hero h1 { font-size: 5rem; font-weight: 900; line-height: 1.1; margin-bottom: 2rem; }
.hero p { font-size: 1.4rem; max-width: 800px; margin: 0 auto 3.5rem; opacity: 0.9; }

.btn-main {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: var(--accent);
    color: var(--primary);
    text-decoration: none;
    font-weight: 800;
    border-radius: 4px;
    font-size: 1.1rem;
    transition: transform 0.3s;
}
.btn-main:hover { transform: scale(1.05); }

/* Sections */
.section { padding: 8rem 0; }
.section-alt { background-color: var(--bg-light); }

.section-title { text-align: center; margin-bottom: 5rem; }
.section-title h2 { font-size: 3rem; font-weight: 900; margin-bottom: 1rem; }
.section-title p { font-size: 1.2rem; color: var(--text-muted); max-width: 700px; margin: 0 auto; }

/* Photo Grid */
.photo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.photo-card { background: white; border-radius: 12px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.05); transition: transform 0.3s; }
.photo-card:hover { transform: translateY(-10px); }
.photo-card img { width: 100%; height: 250px; object-fit: cover; }
.photo-card-content { padding: 2.5rem; }
.photo-card h3 { font-size: 1.5rem; margin-bottom: 1rem; }

/* Image Split Section */
.split-section { display: grid; grid-template-columns: 1fr 1fr; align-items: center; }
.split-img { height: 600px; object-fit: cover; width: 100%; }
.split-text { padding: 6rem; }

/* Values Section - Screenshot Style */
.values-section {
    background: #020617;
    padding: 10rem 0;
    color: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.value-card {
    background: #0f172a;
    padding: 4rem 3rem;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.05);
}

.value-tag {
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    display: block;
}

.value-card h3 {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 2rem;
    text-transform: uppercase;
    line-height: 1;
}

.value-card p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* WhatsApp Floating Menu Style */
.wa-wrapper {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 2000;
}

.wa-btn {
    background: #25d366;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    border: none;
    outline: none;
}

.wa-menu {
    position: absolute;
    bottom: 80px;
    right: 0;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 1rem;
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 240px;
}

.wa-menu.show { display: flex; }

.wa-item {
    padding: 1rem;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-radius: 8px;
    transition: background 0.2s;
}

.wa-item:hover { background: var(--bg-light); }
.wa-item i { color: #25d366; }

footer { padding: 6rem 0; background: var(--primary); color: white; text-align: center; }

@media (max-width: 1024px) {
    .hero h1 { font-size: 3.5rem; }
    .photo-grid, .split-section { grid-template-columns: 1fr; }
    .split-text { padding: 3rem; }
}
