body {
    background: #181818;
    color: #eee;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
}
.main-header {
    background: #181818;
    border-bottom: 1.5px solid #222;
    padding: 0.5rem 0;
    position: relative;
    z-index: 100;
}
.container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    position: relative;
}
.logo img {
    height: 40px;
}
.main-nav {
    display: flex;
    align-items: center;
    position: relative;
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: 1rem;
    z-index: 102;
}
.hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background: #eee;
    border-radius: 2px;
}
.nav-menu {
    display: flex;
    align-items: center;
}
.nav-logo-mobile {
    display: none;
}
.nav-logo-mobile img {
    height: 40px;
}
.nav-list {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-list li a {
    color: #eee;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.08rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}
.nav-list li a.active,
.nav-list li a:hover {
    background: #8b0000;
    color: #fff;
}
@media (max-width: 900px) {
    .container {
        flex-wrap: wrap;
    }
    .main-nav {
        width: auto;
        flex: 1;
        justify-content: flex-end;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100vw;
        width: 80vw;
        max-width: 340px;
        height: 100vh;
        background: #232323;
        box-shadow: -2px 0 16px rgba(0,0,0,0.18);
        flex-direction: column;
        align-items: flex-start;
        padding-top: 0;
        transition: right 0.3s cubic-bezier(.4,2,.6,1);
        z-index: 101;
        display: flex;
        justify-content: space-between;
    }
    .nav-menu.open {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding: 0;
        margin: 0;
        flex: 1 1 auto;
    }
    .nav-list li a {
        padding: 1.2rem 2rem;
        border-radius: 0;
        border-bottom: 1px solid #222;
        width: 100%;
        display: block;
    }
    .nav-logo-mobile {
        display: flex;
        width: 100%;
        justify-content: center;
        align-items: center;
        border-top: 1px solid #333;
        background: #232323;
        padding: 1.5rem 0 1rem 0;
        flex-shrink: 0;
    }
    .logo {
        z-index: 103;
    }
}
.banner.contact_ban {
    width: 100%;
    min-height: 180px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner.contact_ban .txt {
    width: 100%;
    text-align: center;
}
.banner.contact_ban h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-top: 80px;
    padding: 2rem 0;
}
.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin: 2.5rem 0 2rem 0;
}
.contact-card {
    background: #232323;
    border: 1.5px solid #333;
    border-radius: 18px;
    box-shadow: 0 4px 24px 0 rgba(0,0,0,0.18);
    padding: 1.5rem 2rem 1rem 2rem;
    min-width: 260px;
    max-width: 340px;
    flex: 1 1 260px;
    color: #eee;
    position: relative;
    margin-bottom: 1.5rem;
    transition: transform 0.3s, box-shadow 0.3s, border 0.3s;
    overflow: visible;
}
.contact-card h2 {
    color: #9d4dff;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.04em;
}
.contact-card a {
    color: #9d4dff;
    text-decoration: underline;
}
.contact-card a:hover {
    color: #9d4dff;
}
.btn {
    background: linear-gradient(90deg, #8b0000, #8b0000);
    color: #fff;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 10px 28px;
    margin-top: 1rem;
    box-shadow: 0 2px 12px 0 rgba(0,0,0,0.10);
    transition: background 0.2s, transform 0.2s;
    cursor: pointer;
}
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
.btn:hover:not(:disabled) {
    background: linear-gradient(90deg, #9d4dff, #9d4dff);
    transform: translateY(-2px) scale(1.03);
}
.contact-form {
    display: none;
    margin-top: 1.2rem;
    background: #181818;
    border-radius: 14px;
    box-shadow: 0 2px 12px 0 rgba(0,0,0,0.16);
    padding: 1.2rem 1rem;
    border: 1.5px solid #333;
    width: 100%;
    box-sizing: border-box;
        z-index: 100;
}
.contact-form.active {
    display: block;

}
.form-group {
    margin-bottom: 1rem;
}
.form-group label {
    color: #9d4dff;
    font-weight: 600;
    display: block;
    margin-bottom: 0.3rem;
}
input[type="text"], input[type="email"], textarea, select.country-select {
    background: #232323;
    border: 1.5px solid #9d4dff;
    color: #eee;
    font-size: 1.08rem;
    border-radius: 12px;
    margin-bottom: 0.5rem;
    width: 100%;
    padding: 0.7em;
    transition: border 0.2s;
    box-sizing: border-box;
}
input:focus, textarea:focus, select.country-select:focus {
    border-color: #9d4dff;
    background: #181818;
}
.form-status {
    margin-top: 0.7rem;
    text-align: center;
    font-size: 1rem;
    color: #00c853;
}
.form-status.error {
    color: #ff1744;
}
@media (max-width: 900px) {
    .contact-info {
        flex-direction: column;
        align-items: center;
    }
    .contact-card {
        max-width: 98vw;
    }
}

/* Footer */
.main-footer {
    background-color: var(--bg-light);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}





.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    text-decoration: none;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bg-lighter);
    color: var(--text-color);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}
