 html, body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    background: linear-gradient(135deg, #0a0e27, #020617);
}

body {
    overflow-x: hidden;
}



.contact-page-content {
    background: transparent; /* ?? IMPORTANT */
    min-height: 100vh;
    padding: 40px 20px;
}

    .contact-container {
        max-width: 1400px;
        margin: 0 auto;
    }

    .hero {
        text-align: center;
        margin-bottom: 30px;
        padding: 25px 40px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border-radius: 30px;
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
        opacity: 0.3;
    }

    .hero h1 {
        font-size: 4em;
        font-weight: 800;
        margin-bottom: 15px;
        position: relative;
        line-height: 1.2;
        z-index: 1;
    }

    .hero p {
        font-size: 1.4em;
        opacity: 0.95;
        position: relative;
        line-height: 1.5;
        z-index: 1;
        margin: 0;
    }

    .main-info {
        background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
        border-radius: 25px;
        padding: 50px;
        margin-bottom: 50px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    }

    .main-info h2 {
        font-size: 2.5em;
        margin-bottom: 40px;
        text-align: center;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .info-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: stretch;
    }

    .coord-box {
        background: rgba(255, 255, 255, 0.05);
        padding: 35px;
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .coord-item {
        margin-bottom: 30px;
    }

    .coord-item:last-child {
        margin-bottom: 0;
    }

    .coord-label {
        font-size: 0.9em;
        color: #94a3b8;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        margin-bottom: 8px;
    }

    .coord-value {
        font-size: 1.2em;
        color: #e2e8f0;
        line-height: 1.6;
    }

    .coord-value a {
        color: #818cf8;
        text-decoration: none;
        transition: color 0.3s;
    }

    .coord-value a:hover {
        color: #a5b4fc;
    }

    .map-zone {
        border-radius: 20px;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        height: 100%;
        min-height: 400px;
    }

    .map-zone iframe {
        width: 100%;
        height: 100%;
        min-height: 400px;
    }

    .contacts-wrapper {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 25px;
    }

    .contact-box {
        background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
        padding: 30px;
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
    }

    .contact-box::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
        transform: scaleX(0);
        transition: transform 0.4s ease;
    }

    .contact-box:hover::before {
        transform: scaleX(1);
    }

    .contact-box:hover {
        transform: translateY(-5px);
        border-color: rgba(102, 126, 234, 0.5);
        box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
    }

    .contact-role {
        font-size: 0.85em;
        color: #94a3b8;
        text-transform: uppercase;
        letter-spacing: 1.2px;
        margin-bottom: 12px;
    }

    .contact-name {
        font-size: 1.2em;
        color: #f1f5f9;
        font-weight: 600;
        margin-bottom: 15px;
    }

    .contact-email a {
        color: #818cf8;
        text-decoration: none;
        font-size: 0.95em;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .contact-email a:hover {
        color: #a5b4fc;
    }

/* =========================
   BACK TO HOME
========================= */
.back-home {
    text-align: center;
    margin-top: 50px;
}

.back-home a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 30px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.back-home a:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.back-home i {
    font-size: 0.9rem;
}


/* =========================
   FOOTER
========================= */
.site-footer {
    margin-top: 60px;
    padding: 25px 15px;
    text-align: center;
    color: #94a3b8;
    font-size: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer p {
    margin: 0;
}


    @media (max-width: 968px) {
        .contact-page-content {
            padding: 20px 15px;
        }

        .hero {
            padding: 20px 20px;
            margin-bottom: 25px;
            border-radius: 20px;
        }

        .hero h1 {
            font-size: 2.2em;
        }

        .hero p {
            font-size: 1.1em;
        }

        .main-info {
            padding: 30px 20px;
            border-radius: 20px;
            margin-bottom: 30px;
        }

        .main-info h2 {
            font-size: 1.8em;
            margin-bottom: 25px;
        }
        
        .info-layout {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .coord-box {
            padding: 25px;
        }

        .coord-label {
            font-size: 0.85em;
        }

        .coord-value {
            font-size: 1.1em;
        }

        .map-zone iframe {
            height: 300px;
        }
        
        .contacts-wrapper {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .contact-box {
            padding: 25px;
        }

        .contact-role {
            font-size: 0.8em;
        }

        .contact-name {
            font-size: 1.1em;
        }

        .contact-email a {
            font-size: 0.9em;
        }

    .site-footer {
        margin-top: 40px;
        font-size: 0.8rem;
    }
    }

    @media (max-width: 480px) {
        .contact-page-content {
            padding: 15px 10px;
        }

        .hero {
            padding: 15px 15px;
            margin-bottom: 20px;
            border-radius: 15px;
        }

        .hero h1 {
            font-size: 1.8em;
        }

        .hero p {
            font-size: 1em;
        }

        .main-info {
            padding: 25px 15px;
            border-radius: 15px;
        }

        .main-info h2 {
            font-size: 1.5em;
        }

        .coord-box {
            padding: 20px;
        }

        .coord-item {
            margin-bottom: 25px;
        }

        .coord-label {
            font-size: 0.8em;
        }

        .coord-value {
            font-size: 1em;
        }

        .map-zone iframe {
            height: 250px;
        }

        .contact-box {
            padding: 20px;
            border-radius: 15px;
        }
    }