:root {
    --dark: #121820;
    --accent: #89c4e1;
    --gold: #a8a08d;
    --light: #f8f9fa;
    --shadow: 0 30px 60px rgba(0,0,0,0.12);
    --transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: #f0f2f5; color: var(--dark); overflow-x: hidden; }

/* --- NAVBAR --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: white;
    position: fixed;
    top: 0; width: 100%;
    z-index: 2000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}
.logo { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 1.4rem; letter-spacing: 2px; }
.nav-links { display: flex; list-style: none; gap: 30px; align-items: center; }
.nav-links a { text-decoration: none; color: var(--dark); font-weight: 600; font-size: 0.85rem; text-transform: uppercase; }
.nav-cta { background: var(--dark); color: white !important; padding: 12px 25px; border-radius: 4px; }

/* --- HERO --- */
.hero {
    height: 50vh;
    background: linear-gradient(rgba(18,24,32,0.85), rgba(18,24,32,0.85)), 
                url('https://images.unsplash.com/photo-1545147986-a9d6f210df77?q=80&w=1200') center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    margin-top: 70px;
}
.hero h1 { font-family: 'Oswald', sans-serif; font-size: 4rem; letter-spacing: 8px; }

/* --- MAIN FULL-WIDTH CARDS --- */
.main-container {
    width: 90%;
    max-width: 1400px;
    margin: 60px auto;
}

.main-card {
    width: 100%; /* Matches parent width */
    background: white;
    margin-bottom: 50px;
    border-radius: 24px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.2fr 2fr 0.8fr; /* Three Columns */
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.main-card:hover { transform: scale(1.01); }

/* Column 1: Images */
.image-col {
    display: flex;
    flex-direction: column;
    gap: 2px;
    background: #eee;
}
.side-img { flex: 1; background-size: cover; background-position: center; min-height: 200px; }

/* Column 2: Text Density */
.text-col {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.text-col h2 { font-family: 'Oswald', sans-serif; font-size: 2.2rem; margin-bottom: 25px; line-height: 1.2; text-transform: uppercase; color: var(--dark); }
.text-col p { font-size: 1rem; color: #555; margin-bottom: 20px; line-height: 1.8; }

/* Column 3: Stats/Metadata */
.stats-col {
    background: #fcfcfc;
    border-left: 1px solid #f0f0f0;
    padding: 50px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
.data-point { margin-bottom: 20px; }
.data-point span { display: block; font-size: 0.75rem; font-weight: 800; color: var(--gold); text-transform: uppercase; margin-bottom: 5px; letter-spacing: 1px; }
.data-point p { font-size: 0.95rem; font-weight: 600; color: var(--dark); }

/* --- SLIDER --- */
.slider-section { background: var(--dark); padding: 80px 0; overflow: hidden; }
.slider-track { display: flex; animation: scroll 35s linear infinite; }
.slide-card { width: 400px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); padding: 40px; margin-right: 30px; border-radius: 20px; color: white; flex-shrink: 0; }
.slide-card h4 { color: var(--accent); font-family: 'Oswald', sans-serif; margin-bottom: 15px; font-size: 1.2rem; letter-spacing: 1px; }
.slide-card p { font-size: 0.9rem; opacity: 0.7; line-height: 1.6; }

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-1600px); }
}

/* --- FOOTER --- */
.footer { background: #080b0e; color: white; padding: 120px 5% 60px; text-align: center; }
.footer-content h2 { font-family: 'Oswald', sans-serif; font-size: 3rem; margin-bottom: 25px; }
.contact-buttons { display: flex; justify-content: center; gap: 20px; margin: 40px 0; }
.btn { text-decoration: none; padding: 18px 50px; border-radius: 4px; font-weight: 700; background: var(--accent); color: var(--dark); transition: var(--transition); }
.btn-outline { background: transparent; border: 2px solid white; color: white; }
.footer-bottom { margin-top: 80px; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 40px; opacity: 0.4; font-size: 0.8rem; letter-spacing: 2px; }

/* Responsive */
@media (max-width: 1100px) {
    .main-card { grid-template-columns: 1fr; }
    .image-col { flex-direction: row; height: 300px; }
    .stats-col { border-left: none; border-top: 1px solid #f0f0f0; flex-direction: row; flex-wrap: wrap; gap: 20px; }
}