* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --red-primary: #E31E24;
    --yellow-primary: #FDB913;
    --black-bg: #0D0D0D;
    --dark-gray: #1a1a1a;
    --light-text: #ffffff;
    --gray-text: #cccccc;
    --section-padding: 100px 0;
    --navbar-height: 78px;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--black-bg);
    color: var(--light-text);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn.btn-play {
    padding: 12px 20px;
    font-size: 13px;
    letter-spacing: 1px;
    background: linear-gradient(135deg, var(--red-primary) 0%, var(--yellow-primary) 100%);
    color: var(--light-text);
    box-shadow: 0 8px 24px rgba(227, 30, 36, 0.35);
    border-radius: 999px;
    text-transform: uppercase;
    font-weight: 800;
}

.btn.btn-play:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(227, 30, 36, 0.45);
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(227, 30, 36, 0.3);
    z-index: 1000;
    padding: 14px 0;
    min-height: var(--navbar-height);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
    border-bottom-color: rgba(227, 30, 36, 0.6);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.nav-logo-img {
    height: 44px;
    width: auto;
    border-radius: 10px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
    flex: 1;
    justify-content: center;
    min-width: 0;
}

.nav-link {
    color: var(--light-text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--red-primary) 0%, var(--yellow-primary) 100%);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--yellow-primary);
}

.badge {
    background: linear-gradient(135deg, var(--red-primary) 0%, var(--yellow-primary) 100%);
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.nav-discord {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--light-text);
    text-decoration: none;
    transition: all 0.2s ease;
}

.nav-discord:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.16);
    transform: translateY(-2px);
}

.discord-icon {
    width: 22px;
    height: 22px;
    fill: var(--light-text);
}

.nav-play {
    padding: 12px 18px;
    font-size: 12px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--light-text);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.hero {
    margin-top: var(--navbar-height);
}

.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black-bg);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(227, 30, 36, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(253, 185, 19, 0.15) 0%, transparent 50%),
        var(--black-bg);
    z-index: 0;
}

.hero-content {
    text-align: center;
    z-index: 1;
    padding: 20px;
    animation: fadeInUp 1s ease;
}

.logo-container {
    margin-bottom: 30px;
    animation: float 3s ease-in-out infinite;
}

.main-logo {
    max-width: 450px;
    width: 90%;
    height: auto;
    filter: drop-shadow(0 10px 40px rgba(227, 30, 36, 0.4));
}

.hero-tagline {
    font-size: 22px;
    color: var(--gray-text);
    margin-bottom: 50px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    margin-bottom: 50px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(227, 30, 36, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Bebas Neue', cursive;
    font-size: 48px;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--red-primary) 0%, var(--yellow-primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
    font-weight: 800;
}

.stat-label {
    font-size: 13px;
    letter-spacing: 1.5px;
    color: var(--gray-text);
    text-transform: uppercase;
    font-weight: 600;
}

.stat-divider {
    width: 2px;
    height: 50px;
    background: linear-gradient(180deg, transparent, rgba(227, 30, 36, 0.4), transparent);
}

.hero-description {
    font-size: 18px;
    color: var(--gray-text);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.btn {
    padding: 18px 50px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.btn-discord {
    background: linear-gradient(135deg, var(--red-primary) 0%, var(--yellow-primary) 100%);
    color: var(--light-text);
    box-shadow: 0 8px 30px rgba(227, 30, 36, 0.4);
}

.btn-discord:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 40px rgba(227, 30, 36, 0.6);
}

.btn-ghost {
    background: transparent;
    color: var(--light-text);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.btn-ghost:hover {
    transform: translateY(-3px) scale(1.03);
    border-color: var(--red-primary);
    box-shadow: 0 12px 40px rgba(227, 30, 36, 0.4);
}

.btn-icon {
    font-size: 20px;
}

.server-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-flex;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #00ff88;
    box-shadow: 0 0 15px #00ff88;
    animation: pulse 2s ease infinite;
}

.status-text,
.player-count {
    font-size: 14px;
    font-weight: 500;
    color: var(--light-text);
}

.status-divider {
    color: var(--gray-text);
}

.scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--yellow-primary);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    z-index: 1;
    animation: fadeInOut 3s ease-in-out infinite;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid var(--yellow-primary);
    border-bottom: 2px solid var(--yellow-primary);
    transform: rotate(45deg);
    margin: 15px auto 0;
    animation: bounce 2s ease infinite;
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

:root {
    --neon-red: #ff2a2a;
    --hologram-blue: #2affff;
    --glass-bg: rgba(20, 20, 20, 0.6);
    --glass-border: rgba(255, 255, 255, 0.1);
    --dashboard-gradient: linear-gradient(135deg, rgba(20, 20, 20, 0.95), rgba(35, 35, 35, 0.98));
}

.why-us {
    padding: 140px 0;
    background: radial-gradient(circle at 50% 50%, #1a1a1a 0%, #050505 100%);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
    pointer-events: none;
}

.section-title {
    font-family: 'Bebas Neue', monospace;
    font-size: 80px;
    text-align: left;
    margin-bottom: 80px;
    padding-left: 5%;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 2;
}

.section-title::after {
    display: none;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(150px, auto);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.feature {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    position: relative;
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.feature:nth-child(1) {
    grid-column: span 6;
    grid-row: span 2;
}

.feature:nth-child(2) {
    grid-column: span 6;
    grid-row: span 2;
}

.feature:nth-child(3) {
    grid-column: span 4;
    grid-row: span 1;
}

.feature:nth-child(4) {
    grid-column: span 4;
    grid-row: span 1;
}

.feature:nth-child(5) {
    grid-column: span 4;
    grid-row: span 1;
}

.feature:nth-child(6) {
    display: none;
}

.feature::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--neon-red);
    border-left: 2px solid var(--neon-red);
    transition: all 0.3s ease;
}

.feature:hover::before {
    width: 100%;
    height: 100%;
}

.feature:hover {
    background: rgba(30, 30, 30, 0.8);
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.feature::after {
    content: attr(data-index);
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 60px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    font-family: 'Bebas Neue', sans-serif;
    transition: all 0.3s ease;
}

.feature:hover::after {
    color: rgba(227, 30, 36, 0.1);
    transform: translateX(-10px);
}

.feature-icon {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--neon-red);
    text-shadow: 0 0 15px rgba(255, 42, 42, 0.5);
    background: none;
    width: auto;
    height: auto;
    display: inline-block;
    border-radius: 0;
}

.feature:hover .feature-icon {
    transform: scale(1.2);
    background: none;
}

.feature h3 {
    font-size: 24px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: #fff;
}

.feature p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.6;
    margin: 0;
}

.server-info-section {
    padding: 100px 0;
    background: #050505;
}

.info-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    grid-template-rows: auto auto;
    grid-template-areas:
        "sidebar main"
        "sidebar main";
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
    background: var(--dashboard-gradient);
    border: 1px solid #333;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
    position: relative;
}

.info-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-red), transparent);
    animation: scanline 4s linear infinite;
    z-index: 10;
}

@keyframes scanline {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.info-card {
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    transition: none;
}

.info-card:hover {
    transform: none;
    box-shadow: none;
    border: none;
}

.info-card.highlight {
    border: none;
}

.info-card::after {
    display: none;
}

.info-card:nth-child(1) {
    grid-area: sidebar;
    border-right: 1px solid #222;
    background: rgba(0, 0, 0, 0.2);
    padding: 40px;
}

.info-card:nth-child(2) {
    grid-area: main;
    border-bottom: 1px solid #222;
    padding: 40px;
}

.info-card:nth-child(3) {
    grid-area: main;
    grid-column: 2;
    grid-row: 2;
    border-top: 1px solid #222;
    padding: 40px;
}

.info-grid {
    grid-template-columns: 350px 1fr;
    grid-template-rows: auto 1fr;
    grid-template-areas:
        "sidebar updates"
        "sidebar unique";
}

.info-card:nth-child(1) {
    grid-area: sidebar;
}

.info-card:nth-child(2) {
    grid-area: updates;
    border-bottom: 1px solid #222;
}

.info-card:nth-child(3) {
    grid-area: unique;
}

.info-header {
    border-bottom: 1px solid #333;
    padding: 0 0 15px 0;
    margin-bottom: 25px;
}

.info-header h3 {
    font-family: 'Roboto Mono', monospace;
    text-transform: uppercase;
    font-size: 14px;
    color: var(--neon-red);
    letter-spacing: 2px;
}

.info-icon {
    display: none;
}

.info-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-top: none;
    margin-top: 40px;
}

.stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.02);
    border-left: 2px solid #333;
}

.stat:hover {
    border-left-color: var(--neon-red);
    background: rgba(255, 42, 42, 0.05);
}

.stat-number {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    color: #fff;
    margin: 0;
}

.stat-label {
    font-size: 12px;
    color: #666;
}

.info-content {
    padding: 30px;
}

.info-item {
    margin-bottom: 25px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-text);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.ip-box {
    background: #000;
    border: 1px solid #333;
    border-radius: 0;
    padding: 10px;
    display: flex;
    gap: 10px;
}

.ip-box input {
    flex: 1;
    background: transparent;
    border: none;
    font-family: 'Roboto Mono', monospace;
    color: var(--neon-red);
    font-size: 14px;
    outline: none;
}

.copy-button {
    background: #222;
    border: 1px solid #444;
    color: #888;
    border-radius: 0;
    padding: 8px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-button:hover {
    background: var(--neon-red);
    color: #000;
    border-color: var(--neon-red);
}

.copy-icon {
    font-size: 14px;
}

.info-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: rgba(42, 255, 255, 0.05);
    border: 1px solid rgba(42, 255, 255, 0.2);
    border-radius: 0;
    color: var(--hologram-blue);
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Roboto Mono', monospace;
    font-size: 12px;
    letter-spacing: 1px;
}

.info-link:hover {
    background: rgba(42, 255, 255, 0.15);
    border-color: var(--hologram-blue);
    transform: translateX(3px);
    box-shadow: 0 0 15px rgba(42, 255, 255, 0.2);
}

.link-arrow {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.info-link:hover .link-arrow {
    transform: translateX(5px);
}

.update-item {
    padding: 20px 0;
    border-bottom: 1px dashed #333;
    display: flex;
    gap: 20px;
}

.update-date {
    font-family: 'Roboto Mono', monospace;
    color: #555;
    font-size: 11px;
    white-space: nowrap;
    margin: 0;
}

.update-text {
    color: #ccc;
    font-size: 13px;
    line-height: 1.5;
}

.view-all-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--neon-red);
    text-decoration: none;
    font-size: 12px;
    font-family: 'Roboto Mono', monospace;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.view-all-link:hover {
    color: #fff;
    text-shadow: 0 0 8px var(--neon-red);
}

.unique-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.unique-list li {
    background: rgba(255, 255, 255, 0.03);
    padding: 15px;
    border-left: 2px solid transparent;
    display: flex;
    align-items: center;
    gap: 10px;
}

.unique-list li:hover {
    border-left-color: var(--neon-red);
    background: rgba(255, 255, 255, 0.05);
}

.check-icon {
    color: var(--neon-red);
    font-size: 14px;
}

.unique-list li span:last-child {
    color: #ccc;
    font-family: 'Roboto Mono', monospace;
    font-size: 11px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0) rotate(45deg);
    }

    50% {
        transform: translateY(10px) rotate(45deg);
    }
}

@media (max-width: 768px) {
    .hero-stats {
        gap: 30px;
        padding: 25px;
        margin-bottom: 40px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-divider {
        height: 40px;
    }

    .hero-description {
        font-size: 16px;
    }

    .nav-menu {
        position: fixed;
        top: var(--navbar-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--navbar-height));
        background: rgba(13, 13, 13, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px 0;
        gap: 0;
        transition: left 0.3s ease;
        border-top: 2px solid rgba(227, 30, 36, 0.3);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        padding: 20px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-link {
        justify-content: center;
        font-size: 16px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-actions {
        gap: 10px;
    }

    .features-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    .feature {
        padding: 30px;
    }

    .nav-discord {
        width: 40px;
        height: 40px;
    }

    .nav-play {
        padding: 10px 14px;
        font-size: 12px;
    }

    .hero {
        min-height: 100vh;
        padding: 20px 0;
        margin-top: var(--navbar-height);
    }

    .main-logo {
        max-width: 320px;
    }

    .hero-tagline {
        font-size: 18px;
        padding: 0 20px;
    }

    .btn {
        padding: 15px 35px;
        font-size: 14px;
    }

    .server-status {
        flex-direction: column;
        gap: 8px;
        padding: 15px 25px;
    }

    .status-divider {
        display: none;
    }

    .section-title {
        font-size: 42px;
        margin-bottom: 50px;
    }

    .features-container {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .feature:nth-child(n) {
        grid-column: span 1;
        grid-row: span 1;
        transform: none;
    }

    .info-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        grid-template-areas:
            "sidebar"
            "updates"
            "unique";
    }

    .info-card:nth-child(1) {
        border-right: none;
        border-bottom: 1px solid #222;
    }

    .feature h3 {
        font-size: 20px;
    }

    .section-title {
        font-size: 50px;
    }

    .info-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        gap: 20px;
        padding: 20px;
        margin-bottom: 30px;
        flex-direction: column;
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-divider {
        width: 40px;
        height: 2px;
    }

    .hero-description {
        font-size: 15px;
    }

    .main-logo {
        max-width: 280px;
    }

    .hero-tagline {
        font-size: 16px;
    }

    .btn {
        padding: 14px 30px;
        font-size: 13px;
        letter-spacing: 1px;
    }

    .section-title {
        font-size: 36px;
    }

    .feature-icon {
        font-size: 50px;
    }

    .feature h3 {
        font-size: 20px;
    }

    .feature p {
        font-size: 14px;
    }
}

@media (hover: none) and (pointer: coarse) {
    .btn:active {
        transform: scale(0.95);
    }

    .feature:active {
        transform: scale(0.98);
    }
}

.staff-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, var(--black-bg) 0%, var(--dark-gray) 100%);
    position: relative;
}

.staff-section.alt-bg {
    background: linear-gradient(180deg, var(--dark-gray) 0%, var(--black-bg) 100%);
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.staff-card {
    background: linear-gradient(135deg, rgba(20, 20, 30, 0.6) 0%, rgba(30, 25, 40, 0.6) 100%);
    border: 2px solid transparent;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 280px;
    padding: 40px 30px;
    text-align: center;
    background-image: 
        linear-gradient(135deg, rgba(20, 20, 30, 0.6) 0%, rgba(30, 25, 40, 0.6) 100%),
        radial-gradient(circle at top right, rgba(227, 30, 36, 0.1), transparent 50%);
}

.staff-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.15) 0%, rgba(253, 185, 19, 0.15) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
    pointer-events: none;
    border-radius: 16px;
}

.staff-card:hover::before {
    opacity: 1;
}

.staff-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(227, 30, 36, 0.5);
    box-shadow: 0 20px 50px rgba(227, 30, 36, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.staff-card-badge {
    font-size: 64px;
    margin-bottom: 20px;
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 4px 12px rgba(227, 30, 36, 0.3));
}

.staff-card:hover .staff-card-badge {
    transform: scale(1.15) rotate(5deg);
}

.staff-card-info {
    padding: 0;
    background: transparent;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.staff-name {
    font-family: 'Bebas Neue', cursive;
    font-size: 28px;
    letter-spacing: 2px;
    color: var(--light-text);
    margin-bottom: 12px;
    text-transform: uppercase;
    font-weight: 800;
    background: linear-gradient(135deg, var(--light-text) 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.staff-role {
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
    background: linear-gradient(90deg, var(--yellow-primary) 0%, var(--red-primary) 100%);
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
}

.staff-card:nth-child(1) .staff-role,
.staff-card:nth-child(2) .staff-role,
.staff-card:nth-child(3) .staff-role,
.staff-card:nth-child(4) .staff-role {
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    font-weight: 800;
}

.staff-section:nth-of-type(2) .staff-role {
    background: linear-gradient(90deg, #00D9FF 0%, #0099CC 100%);
    color: #fff;
}

.staff-section:nth-of-type(3) .staff-role {
    background: linear-gradient(90deg, #00FF88 0%, #00CC66 100%);
    color: #000;
    font-weight: 800;
}

.staff-section:nth-of-type(4) .staff-role {
    background: linear-gradient(90deg, var(--red-primary) 0%, #CC0000 100%);
    color: #fff;
}

.staff-section:nth-of-type(5) .staff-role {
    background: linear-gradient(90deg, #9D4EDD 0%, #6A0572 100%);
    color: #fff;
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 20px 50px rgba(227, 30, 36, 0.2);
    }
    50% {
        box-shadow: 0 20px 70px rgba(227, 30, 36, 0.5);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

.staff-card {
    animation: float 3s ease-in-out infinite;
}

.staff-card:hover {
    animation: none !important;
}

.staff-card-badge {
    text-shadow: 
        0 4px 10px rgba(227, 30, 36, 0.4),
        0 -2px 10px rgba(255, 255, 255, 0.1);
}

.staff-card-info::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--yellow-primary), transparent);
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

@media (max-width: 1024px) {
    .staff-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .staff-section {
        padding: 60px 20px;
    }

    .staff-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .staff-card-info {
        padding: 20px 15px;
    }

    .staff-name {
        font-size: 20px;
    }

    .staff-role {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .staff-section {
        padding: 50px 15px;
    }

    .staff-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .staff-card-info {
        padding: 18px 12px;
    }

    .staff-name {
        font-size: 18px;
    }

    .staff-role {
        font-size: 11px;
    }
}

.about-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, var(--black-bg) 0%, var(--dark-gray) 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.about-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray-text);
}

.about-text p {
    margin-bottom: 25px;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(227, 30, 36, 0.3);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    transition: all 0.4s ease;
}

.highlight-card:hover {
    transform: translateY(-10px);
    border-color: rgba(227, 30, 36, 0.6);
    box-shadow: 0 20px 50px rgba(227, 30, 36, 0.2);
}

.highlight-icon {
    font-size: 60px;
    margin-bottom: 20px;
    display: block;
}

.highlight-card h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 32px;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: var(--light-text);
}

.highlight-card p {
    font-size: 16px;
    color: var(--gray-text);
    line-height: 1.6;
}

.mission-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, var(--dark-gray) 0%, var(--black-bg) 100%);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.mission-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(227, 30, 36, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mission-card:hover {
    transform: translateY(-15px);
    border-color: rgba(227, 30, 36, 0.5);
    box-shadow: 0 25px 60px rgba(227, 30, 36, 0.2);
}

.mission-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.mission-card h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 28px;
    letter-spacing: 2px;
    color: var(--yellow-primary);
    margin-bottom: 15px;
}

.mission-card p {
    font-size: 15px;
    color: var(--gray-text);
    line-height: 1.7;
}

.timeline-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, var(--black-bg) 0%, var(--dark-gray) 100%);
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--red-primary) 0%, var(--yellow-primary) 50%, var(--red-primary) 100%);
    transform: translateX(-50%);
}

.timeline-item {
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 0;
    margin-right: auto;
    padding-right: 60px;
    text-align: right;
    width: 50%;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    margin-right: 0;
    padding-left: 60px;
    text-align: left;
    width: 50%;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--red-primary);
    border: 4px solid var(--dark-gray);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(227, 30, 36, 0.2);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    border-color: rgba(227, 30, 36, 0.5);
    background: rgba(255, 255, 255, 0.05);
    transform: scale(1.02);
}

.timeline-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 22px;
    letter-spacing: 1px;
    color: var(--light-text);
    margin-bottom: 5px;
}

.timeline-date {
    font-size: 14px;
    color: var(--yellow-primary);
    font-weight: 600;
    margin-bottom: 10px;
}

.timeline-description {
    font-size: 15px;
    color: var(--gray-text);
    line-height: 1.6;
}

.why-choose-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, var(--dark-gray) 0%, var(--black-bg) 100%);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.reason-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(227, 30, 36, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.reason-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.05) 0%, rgba(253, 185, 19, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.reason-card:hover {
    transform: translateY(-15px);
    border-color: rgba(227, 30, 36, 0.5);
    box-shadow: 0 25px 60px rgba(227, 30, 36, 0.2);
}

.reason-card:hover::before {
    opacity: 1;
}

.reason-number {
    font-family: 'Bebas Neue', cursive;
    font-size: 48px;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--red-primary) 0%, var(--yellow-primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.reason-card h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 24px;
    letter-spacing: 1.5px;
    color: var(--light-text);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.reason-card p {
    font-size: 15px;
    color: var(--gray-text);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--black-bg) 0%, var(--dark-gray) 100%);
    text-align: center;
}

.cta-section h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 56px;
    letter-spacing: 4px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--red-primary) 0%, var(--yellow-primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-section p {
    font-size: 20px;
    color: var(--gray-text);
    margin-bottom: 40px;
}

.cta-button {
    display: inline-block;
    padding: 16px 50px;
    background: linear-gradient(135deg, var(--red-primary) 0%, var(--yellow-primary) 100%);
    color: var(--light-text);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(227, 30, 36, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(227, 30, 36, 0.5);
}

@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mission-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        width: calc(100% - 80px);
        margin-left: 60px;
        margin-right: 0;
        padding-left: 30px;
        padding-right: 0;
        text-align: left;
    }

    .timeline-dot {
        left: 20px;
    }
}

@media (max-width: 768px) {
    .about-section,
    .mission-section,
    .why-choose-section,
    .timeline-section,
    .cta-section {
        padding: 60px 20px;
    }

    .mission-grid {
        grid-template-columns: 1fr;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
    }

    .cta-section h2 {
        font-size: 40px;
    }

    .cta-section p {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .highlight-card {
        padding: 30px 20px;
    }

    .highlight-icon {
        font-size: 40px;
    }

    .highlight-card h3 {
        font-size: 24px;
    }

    .mission-icon {
        font-size: 35px;
    }

    .mission-card h3 {
        font-size: 20px;
    }

    .reason-number {
        font-size: 36px;
    }

    .reason-card h3 {
        font-size: 20px;
    }

    .cta-section h2 {
        font-size: 32px;
    }
}

.contact-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, rgba(20, 20, 30, 0.5) 0%, rgba(30, 25, 40, 0.5) 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info .section-title {
    margin-bottom: 20px;
}

.contact-method {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid transparent;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(227, 30, 36, 0.08);
    border-color: rgba(227, 30, 36, 0.3);
    transform: translateX(10px);
}

.contact-icon {
    font-size: 40px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-details h3 {
    font-size: 18px;
    color: var(--yellow-primary);
    margin-bottom: 8px;
    font-weight: 700;
}

.contact-details p {
    color: var(--gray-text);
    font-size: 14px;
    line-height: 1.6;
}

.contact-details a {
    color: var(--red-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-details a:hover {
    color: var(--yellow-primary);
    text-decoration: underline;
}

.contact-form-wrapper {
    display: flex;
    flex-direction: column;
}

.contact-form-wrapper .section-title {
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--light-text);
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(227, 30, 36, 0.2);
    border-radius: 8px;
    color: var(--light-text);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--red-primary);
    box-shadow: 0 0 20px rgba(227, 30, 36, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-group.checkbox {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
}

.form-group.checkbox input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    flex-shrink: 0;
}

.form-group.checkbox label {
    cursor: pointer;
    margin: 0;
    font-size: 13px;
}

.btn-submit {
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--red-primary) 0%, #CC0000 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    box-shadow: 0 10px 30px rgba(227, 30, 36, 0.3);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(227, 30, 36, 0.5);
}

.btn-submit:active {
    transform: translateY(-1px);
}

.form-note {
    font-size: 12px;
    color: var(--gray-text);
    margin-top: 10px;
    text-align: center;
}

.faq-section {
    padding: var(--section-padding);
    background: var(--black-bg);
}

.faq-section .section-title {
    margin-bottom: 50px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(227, 30, 36, 0.08);
    border-color: rgba(227, 30, 36, 0.3);
    transform: translateY(-5px);
}

.faq-question {
    font-size: 16px;
    font-weight: 700;
    color: var(--yellow-primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-question::before {
    content: '▶';
    font-size: 12px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::before {
    transform: rotate(90deg);
}

.faq-answer {
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.8;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    margin-top: 15px;
}

@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 20px;
    }

    .contact-wrapper {
        gap: 30px;
    }

    .faq-grid {
        gap: 20px;
    }

    .faq-item {
        padding: 20px;
    }

    .contact-method {
        padding: 20px;
    }

    .contact-icon {
        font-size: 32px;
    }

    .contact-details h3 {
        font-size: 16px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 12px 14px;
        font-size: 16px;
    }

    .btn-submit {
        padding: 14px 30px;
        font-size: 14px;
    }
}

.contact-enhanced {
    position: relative;
    overflow: hidden;
}

.enhanced-wrapper {
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
}

.enhanced-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-methods-title {
    color: var(--yellow-primary);
    margin-bottom: 10px;
}

.contact-methods-intro {
    font-size: 15px;
    color: var(--gray-text);
    margin-bottom: 15px;
    line-height: 1.6;
}

.contact-methods-enhanced {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.enhanced-method {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 0;
    background: transparent;
    border: none;
    transition: all 0.3s ease;
}

.enhanced-method:hover {
    background: transparent;
    border: none;
    transform: translateX(8px);
}

.method-circle {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.2) 0%, rgba(253, 185, 19, 0.1) 100%);
    border: 2px solid rgba(227, 30, 36, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.enhanced-method:hover .method-circle {
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.4) 0%, rgba(253, 185, 19, 0.2) 100%);
    border-color: var(--red-primary);
    transform: scale(1.1);
}

.enhanced-method .contact-icon {
    font-size: 28px;
}

.enhanced-method .contact-details h3 {
    font-size: 17px;
    color: var(--yellow-primary);
    margin-bottom: 4px;
    font-weight: 700;
}

.enhanced-method .contact-details p {
    font-size: 14px;
    color: var(--light-text);
    margin-bottom: 6px;
}

.method-time {
    display: block;
    font-size: 12px;
    color: rgba(253, 185, 19, 0.8);
    font-weight: 600;
    margin-top: 4px;
}

.enhanced-form {
    background: linear-gradient(135deg, rgba(20, 20, 30, 0.7) 0%, rgba(30, 25, 40, 0.7) 100%);
    border: 2px solid rgba(227, 30, 36, 0.25);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(227, 30, 36, 0.15);
}

.form-header {
    margin-bottom: 30px;
}

.form-title {
    color: var(--yellow-primary);
    margin-bottom: 8px;
}

.form-subtitle {
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.6;
}

.enhanced-form-element {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group-half {
    margin: 0;
}

.form-group {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--light-text);
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(227, 30, 36, 0.2);
    border-radius: 8px;
    color: var(--light-text);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--red-primary);
    box-shadow: 0 0 20px rgba(227, 30, 36, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--black-bg);
    color: var(--light-text);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.char-count {
    font-size: 12px;
    color: rgba(253, 185, 19, 0.7);
    align-self: flex-end;
    margin-top: -14px;
}

.form-error {
    display: none;
    font-size: 12px;
    color: #FF6B6B;
    margin-top: -6px;
}

.enhanced-checkbox {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
}

.enhanced-checkbox input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    flex-shrink: 0;
    accent-color: var(--red-primary);
}

.enhanced-checkbox label {
    cursor: pointer;
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
}

.enhanced-checkbox strong {
    color: var(--yellow-primary);
    font-weight: 700;
}

.btn-enhanced {
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--red-primary) 0%, #CC0000 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(227, 30, 36, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-enhanced::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-enhanced:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(227, 30, 36, 0.5);
}

.btn-enhanced:hover::before {
    width: 300px;
    height: 300px;
}

.btn-enhanced:active {
    transform: translateY(-1px);
}

.btn-sparkle {
    display: inline-block;
    animation: sparkle 1s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

.contact-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.deco-element {
    position: absolute;
    font-size: 80px;
    opacity: 0.05;
    animation: float 8s ease-in-out infinite;
}

.deco-1 {
    top: 5%;
    left: 5%;
    animation-delay: 0s;
}

.deco-2 {
    top: 50%;
    right: 8%;
    animation-delay: 2s;
}

.deco-3 {
    bottom: 10%;
    left: 15%;
    animation-delay: 4s;
}

@media (max-width: 1024px) {
    .enhanced-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .enhanced-form {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .enhanced-form {
        padding: 25px;
    }

    .method-circle {
        width: 50px;
        height: 50px;
    }

    .enhanced-method .contact-icon {
        font-size: 24px;
    }

    .enhanced-method .contact-details h3 {
        font-size: 15px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 12px 14px;
        font-size: 16px;
    }

    .btn-enhanced {
        padding: 14px 30px;
        font-size: 13px;
    }

    .deco-element {
        font-size: 50px;
    }
}

.footer {
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.95) 0%, rgba(20, 15, 30, 0.95) 100%);
    border-top: 2px solid rgba(227, 30, 36, 0.3);
    position: relative;
    overflow: hidden;
    margin-top: 100px;
}

.footer-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
}

.footer-deco-line {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--red-primary), var(--yellow-primary), transparent);
}

.footer-content {
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    width: 80px;
    height: auto;
}

.footer-logo-img {
    width: 100%;
    height: auto;
    filter: brightness(1.1);
    transition: transform 0.3s ease;
}

.footer-brand:hover .footer-logo-img {
    transform: scale(1.05);
}

.footer-tagline {
    font-size: 15px;
    color: var(--gray-text);
    line-height: 1.6;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(227, 30, 36, 0.1);
    border: 2px solid rgba(227, 30, 36, 0.3);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(227, 30, 36, 0.25);
    border-color: var(--red-primary);
    transform: translateY(-3px);
}

.social-icon {
    width: 20px;
    height: 20px;
    fill: var(--light-text);
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--yellow-primary);
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--gray-text);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--red-primary);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--light-text);
    padding-left: 8px;
}

.footer-links a:hover::before {
    width: 100%;
}

.footer-bottom {
    border-top: 1px solid rgba(227, 30, 36, 0.2);
    padding-top: 30px;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    font-size: 14px;
    color: var(--gray-text);
}

.footer-credit {
    font-size: 14px;
    color: var(--gray-text);
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-content {
        padding: 50px 0 30px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-content {
        padding: 40px 0 25px;
    }

    .footer-section {
        gap: 15px;
    }

    .footer-title {
        font-size: 14px;
    }

    .footer-links a {
        font-size: 13px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-copyright,
    .footer-credit {
        font-size: 12px;
    }
}

.normativas-section {
    padding: var(--section-padding);
    background: var(--black-bg);
}

.normativas-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-title {
    font-size: 52px;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: var(--light-text);
    font-weight: 900;
}

.section-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

.normativas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-bottom: 70px;
}

.norm-card {
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.95), rgba(15, 15, 15, 0.9));
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: flex;
    flex-direction: column;
}

.norm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--red-primary), var(--yellow-primary));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.norm-card:hover::before {
    transform: scaleX(1);
}

.norm-card:hover {
    transform: translateY(-8px);
    border-color: rgba(227, 30, 36, 0.5);
    box-shadow: 0 20px 50px rgba(227, 30, 36, 0.25);
}

.norm-card-header {
    padding: 32px 24px 20px;
    text-align: center;
}

.norm-icon-box {
    width: 90px;
    height: 90px;
    margin: 0 auto;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
}

.norm-icon-box::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 8px;
    padding: 3px;
    background: linear-gradient(135deg, var(--red-primary), var(--yellow-primary));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.norm-card:hover .norm-icon-box::after {
    opacity: 1;
}

.norm-red {
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.15), rgba(183, 28, 28, 0.1));
}

.norm-emoji {
    font-size: 44px;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.norm-card:hover .norm-icon-box {
    transform: scale(1.1) rotate(-5deg);
}

.norm-card-body {
    padding: 0 24px 24px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.norm-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--light-text);
    margin: 0 0 12px 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

.norm-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.norm-stats {
    display: flex;
    gap: 16px;
    justify-content: center;
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: auto;
}

.norm-stat {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.norm-stat svg {
    opacity: 0.7;
}

.norm-download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    background: linear-gradient(135deg, var(--red-primary), var(--yellow-primary));
    color: #000;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-radius: 0 0 12px 12px;
}

.norm-download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.norm-download-btn:hover::before {
    left: 100%;
}

.norm-download-btn:hover {
    background: linear-gradient(135deg, var(--yellow-primary), var(--red-primary));
    box-shadow: 0 8px 25px rgba(227, 30, 36, 0.4);
}

.norm-download-btn svg {
    stroke-width: 2.5;
}

.normativa-notice {
    display: flex;
    gap: 25px;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.2), rgba(227, 30, 36, 0.15));
    border: 2px solid rgba(227, 30, 36, 0.4);
    border-left: 4px solid var(--red-primary);
    border-radius: 12px;
    padding: 32px;
    align-items: flex-start;
    backdrop-filter: blur(10px);
}

.notice-icon {
    font-size: 42px;
    flex-shrink: 0;
}

.notice-content h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--yellow-primary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.notice-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 1200px) {
    .normativas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .section-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .normativas-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 50px;
    }

    .normativas-header {
        margin-bottom: 50px;
    }

    .section-title {
        font-size: 32px;
        letter-spacing: 2px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .norm-card-header {
        padding: 24px 20px 16px;
    }

    .norm-icon-box {
        width: 80px;
        height: 80px;
    }

    .norm-emoji {
        font-size: 38px;
    }

    .norm-card-body {
        padding: 0 20px 20px;
    }

    .norm-title {
        font-size: 20px;
    }

    .norm-desc {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .norm-stats {
        padding: 14px 0;
    }

    .norm-download-btn {
        padding: 14px;
        font-size: 13px;
    }

    .normativa-notice {
        flex-direction: column;
        gap: 20px;
        padding: 24px;
    }

    .notice-icon {
        font-size: 36px;
    }

    .notice-content h3 {
        font-size: 18px;
    }

    .notice-content p {
        font-size: 14px;
    }
}

/* Contact Enhanced Styles - Cyber Glass Aesthetic */
.contact-enhanced {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 0% 0%, rgba(227, 30, 36, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 100% 100%, rgba(253, 185, 19, 0.05) 0%, transparent 50%);
}

.enhanced-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.enhanced-info {
    padding-right: 20px;
}

.contact-methods-title {
    font-size: 60px;
    margin-bottom: 20px;
    line-height: 1;
}

.contact-methods-intro {
    font-size: 18px;
    color: var(--gray-text);
    margin-bottom: 50px;
    font-weight: 300;
}

.contact-methods-enhanced {
    display: grid;
    gap: 25px;
}

.enhanced-method {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 25px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.enhanced-method:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(227, 30, 36, 0.3);
    transform: translateX(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.enhanced-method::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--red-primary), var(--yellow-primary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.enhanced-method:hover::before {
    opacity: 1;
}

.method-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(227, 30, 36, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border: 1px solid rgba(227, 30, 36, 0.2);
    box-shadow: 0 0 20px rgba(227, 30, 36, 0.1);
}

.contact-details h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--light-text);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-details p {
    color: var(--gray-text);
    font-size: 14px;
    margin-bottom: 5px;
}

.contact-details a {
    color: var(--yellow-primary);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-details a:hover {
    color: #fff;
}

.method-time {
    display: inline-block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(0, 0, 0, 0.3);
    padding: 4px 10px;
    border-radius: 20px;
    margin-top: 5px;
}

/* Form Styles */
.enhanced-form {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.form-header {
    margin-bottom: 40px;
}

.form-title {
    font-size: 40px;
    margin-bottom: 10px;
}

.form-subtitle {
    color: var(--gray-text);
    font-weight: 300;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-text);
    transition: color 0.3s;
}

.enhanced-form-element input,
.enhanced-form-element textarea,
.enhanced-form-element select {
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px 20px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
}

.enhanced-form-element input:focus,
.enhanced-form-element textarea:focus,
.enhanced-form-element select:focus {
    outline: none;
    border-color: var(--red-primary);
    background: rgba(227, 30, 36, 0.05);
    box-shadow: 0 0 20px rgba(227, 30, 36, 0.1);
}

.enhanced-form-element input:focus + label,
.enhanced-form-element textarea:focus + label {
    color: var(--red-primary);
}

.enhanced-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 35px;
}

.enhanced-checkbox input {
    width: 20px;
    height: 20px;
    margin-top: 3px;
    accent-color: var(--red-primary);
    cursor: pointer;
}

.enhanced-checkbox label {
    margin: 0;
    font-size: 13px;
    text-transform: none;
    line-height: 1.6;
}

.enhanced-checkbox strong {
    color: var(--yellow-primary);
}

.btn-enhanced {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, var(--red-primary) 0%, #a3161a 100%);
    border: none;
    border-radius: 15px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 2px;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 10px 30px rgba(227, 30, 36, 0.3);
}

.btn-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-enhanced:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(227, 30, 36, 0.5);
}

.btn-enhanced:hover::before {
    left: 100%;
}

.btn-sparkle {
    font-size: 20px;
    animation: bounce 2s infinite;
}

.form-note {
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 20px;
}

.contact-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.deco-element {
    position: absolute;
    font-size: 100px;
    opacity: 0.05;
    animation: float 6s ease-in-out infinite;
    filter: blur(5px);
}

.deco-1 { top: 10%; right: -5%; animation-delay: 0s; }
.deco-2 { bottom: 15%; left: -5%; animation-delay: 2s; font-size: 150px; }
.deco-3 { top: 40%; left: 40%; animation-delay: 4s; font-size: 80px; opacity: 0.03; }

.char-count {
    position: absolute;
    bottom: 15px;
    right: 15px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    background: rgba(0, 0, 0, 0.5);
    padding: 2px 6px;
    border-radius: 4px;
    pointer-events: none;
}

.faq-section.alt-bg {
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Responsive */
@media (max-width: 992px) {
    .enhanced-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .enhanced-info {
        padding-right: 0;
    }

    .contact-methods-title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .enhanced-form {
        padding: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }

    .btn-enhanced {
        width: 100%;
    }
}