:root {
    --mc-red: #E51421;
    --uk-blue: #00247D;
    --uk-red: #CE1126;
    --bg-dark: #09090b;
    --card-bg: rgba(255, 255, 255, 0.03);
    --border-color: rgba(255, 255, 255, 0.1);
    --text-main: #ffffff;
    --text-muted: #a1a1aa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--mc-red);
    border-radius: 5px;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(9, 9, 11, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.logo .mc { color: var(--mc-red); }
.logo .uk { color: var(--uk-blue); text-shadow: 0 0 10px rgba(0, 36, 125, 0.5); }

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--mc-red);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    /* We use the absolute path from the generated image */
    background-image: url('hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(9,9,11,0.95) 0%, rgba(9,9,11,0.6) 50%, rgba(0,36,125,0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.badge {
    background: rgba(229, 20, 33, 0.2);
    border: 1px solid var(--mc-red);
    color: var(--mc-red);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(229, 20, 33, 0.3);
}

.hero h1 {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    background: linear-gradient(to right, #fff, var(--mc-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.hero p b {
    color: var(--mc-red);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--mc-red);
    color: white;
    box-shadow: 0 0 20px rgba(229, 20, 33, 0.4);
}

.btn-primary:hover {
    background: #ff1e2d;
    box-shadow: 0 0 30px rgba(229, 20, 33, 0.6);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Sections */
section {
    padding: 6rem 5%;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 4rem;
    font-size: 1.2rem;
}

/* Grid Layouts */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Cards */
.card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.4s, box-shadow 0.4s;
    backdrop-filter: blur(10px);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 36, 125, 0.3);
    border-color: var(--uk-blue);
}

.card-image {
    height: 200px;
    background-color: #1a1a24;
    position: relative;
    background-size: cover;
    background-position: center;
}

/* Placeholder gradients for card images */
.bg-1 { background: linear-gradient(45deg, #2c3e50, #E51421); }
.bg-2 { background: linear-gradient(45deg, #111, #00247D); }
.bg-3 { background: linear-gradient(45deg, #222, #b8860b); }
.bg-4 { background: linear-gradient(45deg, #093028, #237A57); }

.card-content {
    padding: 2rem;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.location-tag {
    color: var(--mc-red);
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.card-content p:last-child {
    color: var(--text-muted);
    line-height: 1.5;
}

/* Testimonials */
.testimonials-section {
    background: linear-gradient(to bottom, #09090b, #050508);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    border-radius: 16px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 6rem;
    color: rgba(229, 20, 33, 0.1);
    font-family: serif;
    font-weight: 900;
}

.testimonial-card p {
    font-size: 1.1rem;
    font-style: italic;
    color: #dfdfdf;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.testimonial-card .author {
    font-weight: 800;
    color: var(--uk-blue);
    text-shadow: 0 0 5px rgba(0, 36, 125, 0.8);
}

/* Fake Toast Notifications */
#toast-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: rgba(20, 20, 25, 0.9);
    border-left: 4px solid var(--mc-red);
    color: white;
    padding: 1rem;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideIn 0.5s ease-out forwards;
    backdrop-filter: blur(5px);
    width: 300px;
    font-size: 0.9rem;
}

@keyframes slideIn {
    from { transform: translateX(-120%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideOut {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(-120%); opacity: 0; }
}

/* Animations Triggered by JS */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Footer */
footer {
    padding: 3rem 5%;
    text-align: center;
    border-top: 1px solid var(--border-color);
    background: #000;
}

.footer-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}
.footer-content .uk {
    color: var(--uk-blue);
}
.footer-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero h1 { font-size: 3rem; }
    #toast-container { bottom: 10px; left: 10px; right: 10px; }
    .toast { width: auto; }
}
