/* ===============================
   RESET & GLOBAL
=============================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #000;
    color: #fff;
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
}

/* ===============================
   HEADER
=============================== */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 55px;
}

.logo-text {
    font-family: "Orbitron", sans-serif;
    font-size: 1rem;
    color: #fff;
    text-shadow: 0 0 8px #ff004c;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav ul li a {
    font-family: "Orbitron", sans-serif;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
    color: #ff004c;
}

/* ===============================
   CONTACT SECTION
=============================== */
.contact-section {
    margin-top: 80px;
    padding: 80px 10%;
    background: radial-gradient(circle at 50% 20%, #0a0a0a, #000);
    min-height: 90vh;
}

.contact-title {
    font-family: "Orbitron", sans-serif;
    font-size: 2.5rem;
    text-align: center;
    color: #fff;
    margin-bottom: 60px;
    text-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
    position: relative;
}

.contact-title::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff004c, transparent);
    box-shadow: 0 0 15px #ff004c;
}

/* MAIN LAYOUT */
.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 60px;
    flex-wrap: wrap;
}

/* LEFT INFO */
.contact-info {
    flex: 1;
    min-width: 300px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.05);
    transition: 0.3s ease;
}

.contact-info:hover {
    box-shadow: 0 0 40px rgba(255, 0, 76, 0.2);
    border-color: rgba(255, 0, 76, 0.3);
}

.contact-info h3 {
    font-family: "Orbitron", sans-serif;
    color: #ff004c;
    font-size: 1.3rem;
    margin-bottom: 25px;
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: #ccc;
}

.contact-info a {
    color: #ff004c;
    text-decoration: none;
    transition: 0.3s;
}

.contact-info a:hover {
    color: #fff;
    text-shadow: 0 0 8px #ff004c;
}

.address {
    margin-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.address h4 {
    font-family: "Orbitron", sans-serif;
    color: #ff004c;
    margin-bottom: 10px;
}

/* RIGHT MAP */
.contact-map {
    flex: 1.3;
    min-width: 350px;
    height: 420px;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}

.contact-map:hover {
    box-shadow: 0 0 40px rgba(255, 0, 76, 0.25);
}

/* ===============================
   RESPONSIVE DESIGN
=============================== */

/* Medium screens */
@media (max-width: 1024px) {
    .contact-section {
        padding: 70px 8%;
    }
    .contact-container {
        gap: 40px;
    }
    .contact-title {
        font-size: 2rem;
    }
}

/* Tablets */
@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
        align-items: center;
    }

    .contact-info, .contact-map {
        width: 100%;
        max-width: 600px;
    }

    .contact-map {
        height: 360px;
    }
}

/* Mobile Devices */
@media (max-width: 600px) {
    header {
        padding: 12px 25px;
    }

    .logo img {
        height: 45px;
    }

    nav ul {
        gap: 15px;
    }

    nav ul li a {
        font-size: 13px;
    }

    .contact-title {
        font-size: 1.6rem;
        margin-bottom: 40px;
    }

    .contact-info {
        padding: 25px;
        font-size: 0.85rem;
    }

    .contact-info h3 {
        font-size: 1.1rem;
    }

    .contact-map {
        height: 300px;
    }
}

/* Small Phones */
@media (max-width: 420px) {
    .contact-section {
        padding: 60px 6%;
    }
    .contact-title {
        font-size: 1.4rem;
    }
}

/* ===============================
   FOOTER
=============================== */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.8);
    padding: 30px 10%;
    text-align: center;
    backdrop-filter: blur(8px);
    box-shadow: 0 -5px 15px rgba(255, 0, 76, 0.05);
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer-text {
    font-family: "Orbitron", sans-serif;
    font-size: 0.9rem;
    color: #ccc;
    text-shadow: 0 0 10px rgba(255, 0, 76, 0.15);
}

.footer-links {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: #ff004c;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    font-size: 0.9rem;
    transition: 0.3s;
}

.footer-links a:hover {
    text-shadow: 0 0 10px #ff004c, 0 0 20px #ff004c;
}

.footer-links span {
    color: #666;
}

@media (max-width: 700px) {
    .footer-text {
        font-size: 0.8rem;
    }
    .footer-links {
        flex-wrap: wrap;
        gap: 8px;
    }
}

/* ===============================
   SCROLLBAR
=============================== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #ff004c, #5f0080);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 0, 76, 0.4);
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #ff1a66, #7a00b8);
    box-shadow: 0 0 20px rgba(255, 0, 76, 0.6);
}
/* ===============================
   HAMBURGER MENU
=============================== */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 21px;
    cursor: pointer;
    z-index: 1100;
}

.bar {
    width: 100%;
    height: 3px;
    background: white;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.menu-toggle.open .bar:nth-child(1) {
    transform: rotate(45deg) translateY(7px);
}
.menu-toggle.open .bar:nth-child(2) {
    opacity: 0;
}
.menu-toggle.open .bar:nth-child(3) {
    transform: rotate(-45deg) translateY(-7px);
}

/* ===============================
   RESPONSIVE NAVIGATION
=============================== */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    nav {
        position: fixed;
        top: 0;
        right: -240px;
        width: 220px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(8px);
        transition: right 0.4s ease;
        z-index: 1000;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    nav ul {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    nav ul li a {
        font-size: 18px;
    }

    nav.open {
        right: 0;
    }
}
