/* --- GLOBAL RESET & VARIABLES --- */
:root {
    --primary-red: #b00020;
    --white: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #f9f9f9;
    --header-height: 80px;
    --transition: all 0.3s ease;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* --- UTILITY CLASSES --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 80px 0; }
.text-center { text-align: center; }
.bg-light { background-color: var(--bg-light); }
.max-w-700 { max-width: 700px; margin: 0 auto; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-50 { margin-top: 50px; }
.mb-30 { margin-bottom: 30px; }
.mb-50 { margin-bottom: 50px; }
.p-20 { padding: 20px; }
.p-30 { padding: 30px; }
.p-40 { padding: 40px; }

/* --- GRID SYSTEM --- */
.grid-2, .grid-3 { display: grid; gap: 30px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.align-center { align-items: center; }

@media (max-width: 992px) {
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .grid-2, .grid-3 { grid-template-columns: 1fr; }
}

/* --- COMPONENTS --- */
.card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.card:hover { transform: translateY(-5px); }

.placeholder-box {
    background: #e0e0e0;
    border: 2px dashed #ccc;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    padding: 40px;
    color: var(--text-light);
}
.placeholder-box.small { padding: 20px; margin-bottom: 10px; border-radius: 12px 12px 0 0; }

.icon-circle {
    width: 60px;
    height: 60px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

/* --- HEADER & NAVIGATION --- */
.main-header {
    height: var(--header-height);
    background-color: var(--white);
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.header-container { width: 100%; display: flex; justify-content: space-between; align-items: center; }
.nav-logo { height: 50px; width: auto; }

/* REMOVED DOTS HERE */
.nav-menu ul { 
    display: flex; 
    gap: 15px; 
    list-style: none; /* This removes the bullets/dots */
}

.nav-menu ul li a { font-weight: 600; font-size: 0.85rem; color: var(--text-dark); padding: 8px 12px; border-radius: 4px; transition: var(--transition); text-decoration: none; }
.nav-menu ul li a:hover, .nav-menu ul li a.active { color: var(--primary-red); background-color: rgba(176, 0, 32, 0.05); }

/* Mobile Navigation */
.mobile-nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 10px; z-index: 1001; }
.hamburger { display: block; width: 25px; height: 2px; background: var(--text-dark); position: relative; transition: var(--transition); }
.hamburger::before, .hamburger::after { content: ''; position: absolute; width: 100%; height: 100%; background: var(--text-dark); left: 0; transition: var(--transition); }
.hamburger::before { top: -8px; }
.hamburger::after { bottom: -8px; }
.mobile-nav-toggle.active .hamburger { background: transparent; }
.mobile-nav-toggle.active .hamburger::before { transform: rotate(45deg); top: 0; }
.mobile-nav-toggle.active .hamburger::after { transform: rotate(-45deg); bottom: 0; }

@media (max-width: 992px) {
    .mobile-nav-toggle { display: block; }
    .nav-menu {
        position: fixed; top: var(--header-height); left: 0; width: 100%; background: var(--white);
        padding: 40px 20px; transform: translateY(-150%); transition: transform 0.4s ease;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    .nav-menu.active { transform: translateY(0); }
    .nav-menu ul { flex-direction: column; align-items: center; gap: 20px; }
}

/* --- HERO --- */
.hero {
    height: 70vh; min-height: 500px; background-color: #111;
    display: flex; align-items: center; position: relative; color: var(--white); text-align: center;
}
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(176, 0, 32, 0.9) 0%, rgba(0, 0, 0, 0.8) 100%); }
.hero-content { position: relative; z-index: 2; }
.hero h1 { font-size: clamp(2rem, 6vw, 4rem); margin-bottom: 20px; font-weight: 700; line-height: 1.2; }
.hero-actions { display: flex; gap: 15px; justify-content: center; margin-top: 30px; }

/* --- BUTTONS --- */
.btn { padding: 12px 24px; border-radius: 6px; font-weight: 600; display: inline-block; transition: var(--transition); border: none; cursor: pointer; text-align: center; text-decoration: none; }
.btn-primary { background: var(--primary-red); color: var(--white); }
.btn-primary:hover { opacity: 0.9; transform: translateY(-2px); }
.btn-secondary { border: 2px solid var(--white); color: var(--white); background: transparent; }
.btn-secondary:hover { background: var(--white); color: var(--primary-red); }

/* --- FOOTER --- */
.main-footer { background: #1a1a1a; color: var(--white); padding: 70px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 60px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 40px; margin-bottom: 30px; }
.footer-info h3 { font-size: 1.8rem; margin-bottom: 15px; color: var(--white); }
.footer-links h4 { margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; font-size: 0.9rem; }
.social-icons { display: flex; gap: 15px; }
.social-icons a { background: var(--primary-red); padding: 10px 20px; border-radius: 6px; font-size: 0.85rem; font-weight: 600; text-decoration: none; color: white; }