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

body {
    font-family: Arial, sans-serif;
    background: #0b1220;
    color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
}

/* Header */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: relative;
}

.logo {
    max-height: 70px;
}

.main-nav ul {
    display: flex;
    gap: 35px;
    align-items: center;
}

.main-nav ul li a {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    transition: 0.3s ease;
}

.main-nav ul li a:hover {
    color: #e11d2e;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 700;
    transition: 0.3s ease;
}

.btn-primary {
    background: linear-gradient(180deg, #ef233c, #b10017);
    color: #fff;
    box-shadow: 0 8px 20px rgba(177, 0, 23, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 0;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 20px;
    transition: 0.3s ease;
}

.mobile-cta {
    display: none;
}

.desktop-cta {
    display: block;
}

/* Hero */
.hero-section {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 140px 0 80px;
}

.hero-content {
    width: 100%;
}

.hero-text {
    max-width: 950px;
    margin: 0 auto;
}

.hero-text h1 {
    font-size: 58px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
}

.hero-text h2 {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-text h2 span {
    margin: 0 12px;
    color: #ffffff;
    opacity: 0.8;
}

.hero-text p {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
}

.hero-text small {
    display: block;
    margin-top: 14px;
    font-size: 18px;
    color: #f5f5f5;
    font-style: italic;
}

.btn-large {
    padding: 18px 42px;
    font-size: 22px;
}

/* Footer */
.site-footer {
    background: #08101d;
    padding-top: 60px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 30px;
    padding-bottom: 40px;
}

.footer-logo {
    max-height: 60px;
    margin-bottom: 15px;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 18px;
    color: #fff;
}

.footer-col p,
.footer-col ul li a {
    color: #cfd6df;
    line-height: 1.9;
    font-size: 15px;
}

.footer-col ul li a:hover {
    color: #ef233c;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 0;
}

.footer-bottom-inner {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-bottom p {
    color: #cfd6df;
    font-size: 14px;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: #cfd6df;
    font-size: 14px;
    transition: 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #ef233c;
}

@media (max-width: 576px) {
    .footer-bottom-inner {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
        gap: 12px;
    }
}

/* Responsive */
@media (max-width: 991px) {
    .header-inner {
        flex-wrap: wrap;
    }

    .menu-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .desktop-cta {
        display: none;
    }

    .main-nav {
        width: 100%;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transform: translateY(-10px);
        transition: max-height 0.35s ease, opacity 0.3s ease, transform 0.3s ease;
    }

    .main-nav.active {
        max-height: 500px;
        opacity: 1;
        transform: translateY(0);
        margin-top: 10px;
        padding: 16px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        background: rgba(8, 16, 29, 0.96);
        border-radius: 16px;
        backdrop-filter: blur(10px);
    }

    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .main-nav ul li {
        width: 100%;
    }

    .main-nav ul li a {
        display: block;
        width: 100%;
        padding: 10px 0;
        font-size: 16px;
    }

    .mobile-cta {
        display: block;
        margin-top: 16px;
    }

    .mobile-cta .btn {
        width: 100%;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 42px;
    }

    .hero-text h2 {
        font-size: 24px;
    }

    .hero-text p {
        font-size: 22px;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .logo {
        max-height: 58px;
    }

    .hero-text h1 {
        font-size: 30px;
    }

    .hero-text h2 {
        font-size: 18px;
        line-height: 1.6;
    }

    .hero-text p {
        font-size: 18px;
    }

    .btn-large {
        font-size: 18px;
        padding: 14px 28px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
    }
}


.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


.has-dropdown {
    position: relative;
}

.mega-dropdown {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    width: min(220px, 90vw);
    max-width: 90vw;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.has-dropdown:hover .mega-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-dropdown-column .dropdown-title {
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    text-decoration: none;
}

.mega-dropdown-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-dropdown-column ul li {
    margin-bottom: 6px;
}

.mega-dropdown-column ul li a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: 0.3s;
    font-size: 14px;
    line-height: 1.5;
}

.mega-dropdown-column ul li a:hover {
    color: #fff;
    padding-left: 4px;
}

@media (max-width: 991px) {
    .mega-dropdown {
        position: static;
        width: 100%;
        max-width: 100%;
        grid-template-columns: 1fr;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        margin-top: 12px;
        padding: 14px;
    }

    .has-dropdown.active .mega-dropdown {
        display: grid;
    }
}