/* ====================== main.min.css ====================== */

:root {
    --primary: #0c0d0e;
    --accent: #93003f;
    --light: #f8f9fa;
    --gray: #515962;
}

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

body {
    font-family: 'Roboto', system-ui, sans-serif;
    line-height: 1.6;
    color: var(--gray);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ====================== HEADER ====================== */
.header {
    background: rgba(12, 13, 14, 0.95);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(8px);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
}

.logo img {
    height: 55px;
    width: auto;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

.main-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #c6c6c6;
}

.dropdown {
    position: relative;
}

.dropdown:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #0c0d0e;
    min-width: 220px;
    padding: 15px 0;
    border-radius: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    list-style: none;
}

.submenu li a {
    display: block;
    padding: 10px 20px;
    color: white;
}

.submenu li a:hover {
    background: rgba(255,255,255,0.1);
}

.mobile-menu-btn {
    display: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
}

/* ====================== HERO ====================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(12,13,14,0.4), rgba(12,13,14,0.75));
    z-index: -1;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    z-index: 2;
    padding: 0 20px;
}

.hero h1 {
    font-size: clamp(42px, 6vw, 68px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.highlight {
    color: #f3bafd;
    font-size: 0.85em;
}

.hero p {
    font-size: 1.25rem;
    max-width: 680px;
    margin: 0 auto 40px;
}

.btn-primary {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 16px 42px;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #b3004a;
    transform: translateY(-3px);
}

/* ====================== ABOUT ====================== */
.about {
    padding: 100px 0;
    background: #fff;
    text-align: center;
}

.about h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    color: var(--primary);
}

.about p {
    max-width: 820px;
    margin: 0 auto;
    font-size: 1.15rem;
}

/* ====================== STATS ====================== */
.stats {
    background: #0c0d0e;
    color: white;
    padding: 80px 0;
}

.stats .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item .number {
    font-size: 3.2rem;
    font-weight: 700;
    color: #f3bafd;
}

.stat-item .label {
    font-size: 1.1rem;
    margin-top: 8px;
    opacity: 0.9;
}

/* ====================== SERVICES ====================== */
.services {
    padding: 110px 0;
    background: #f8f9fa;
}

.services h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 70px;
    color: var(--primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.service-card img {
    width: 78px;
    height: 78px;
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 1.45rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.btn-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
}

.btn-link:hover {
    text-decoration: underline;
}

/* ====================== FOOTER ====================== */
.footer {
    background: #0c0d0e;
    color: #aaa;
    padding: 90px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footer h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer a {
    color: #aaa;
    text-decoration: none;
}

.footer a:hover {
    color: white;
}

.copyright {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #222;
    font-size: 0.95rem;
}

/* ====================== RESPONSIVE ====================== */
@media (max-width: 992px) {
    .main-nav ul {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .main-nav ul {
        position: absolute;
        top: 90px;
        left: 0;
        width: 100%;
        background: #0c0d0e;
        flex-direction: column;
        padding: 20px 0;
        display: none;
    }

    .main-nav.active ul {
        display: flex;
    }

    .hero h1 {
        font-size: 48px;
    }
}