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

/* ================= BODY ================= */
body {
    min-height: 100vh;
    font-family: 'Poppins', sans-serif;

    background: linear-gradient(-45deg, #1a2a6c, #b21f1f, #fdbb2d, #00c6ff);
    background-size: 400% 400%;
    animation: gsrBg 12s ease infinite;

    position: relative;

    /* 🔥 FUTURE SAFE LAYOUT */
    display: flex;
    flex-direction: column;
}

/* ================= BG ================= */
@keyframes gsrBg {
    0% {background-position: 0% 50%;}
    50% {background-position: 100% 50%;}
    100% {background-position: 0% 50%;}
}

/* ================= PARTICLES ================= */
body::before {
    content: "";
    position: fixed;
    inset: 0;

    background-image: radial-gradient(white 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.05;

    animation: gsrParticles 60s linear infinite;

    z-index: -1;
    pointer-events: none;
}

@keyframes gsrParticles {
    from { transform: translate(0,0); }
    to { transform: translate(-200px, -200px); }
}

/* ================= MAIN ================= */
.gsr-contact-main {
    display: flex;
    align-items: center;
    justify-content: center;

    padding: clamp(16px, 4vw, 40px);

    /* 🔥 KEY FIX */
    flex: 1;   /* body flex के कारण auto height */
}

/* ================= CARD ================= */
.gsr-contact-card {
    width: 100%;
    max-width: clamp(320px, 60vw, 700px);
    padding: clamp(20px, 4vw, 50px);
    border-radius: 18px;

    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255,255,255,0.2);

    text-align: center;

    box-shadow: 0 0 60px rgba(0,0,0,0.7);

    animation: gsrFadeIn 1s ease forwards;
}

/* ================= FADE ================= */
@keyframes gsrFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= TITLE ================= */
.gsr-contact-title {
    font-size: clamp(22px, 3vw, 36px);
    margin-bottom: 12px;
    color: #fff;

    text-shadow: 
        0 0 10px rgba(0,242,96,0.7),
        0 0 20px rgba(5,117,230,0.6),
        0 0 30px rgba(253,187,45,0.5);
}

/* ================= TEXT ================= */
.gsr-contact-text {
    margin-top: 12px;
    font-size: clamp(13px, 1.2vw, 16px);
    line-height: 1.7;
    color: #fff;
}

/* ================= HIGHLIGHT ================= */
.gsr-contact-highlight {
    margin-top: 15px;
    font-size: clamp(14px, 1.3vw, 17px);
    font-weight: 500;
    color: #fff;
}

/* ================= BUTTON ================= */
.gsr-contact-btn {
    display: inline-block;
    margin-top: 28px;
    padding: clamp(12px, 2vw, 16px) clamp(20px, 3vw, 30px);
    border-radius: 12px;

    background: linear-gradient(45deg, #00f260, #0575e6);
    color: #fff;
    text-decoration: none;
    font-weight: 600;

    position: relative;
    transition: 0.3s;
}

/* GLOW */
.gsr-contact-btn::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 12px;

    background: linear-gradient(45deg, #00f260, #0575e6, #00f260);

    filter: blur(10px);
    z-index: -1;

    animation: gsrGlow 2s linear infinite;
}

@keyframes gsrGlow {
    0% { filter: blur(8px) hue-rotate(0deg); }
    100% { filter: blur(8px) hue-rotate(360deg); }
}

.gsr-contact-btn:hover {
    transform: scale(1.06);
}

/* ================= EMAIL ================= */
.gsr-contact-email {
    margin-top: 16px;
    font-size: clamp(12px, 1vw, 14px);
    color: #ddd;
    word-break: break-word;
}

/* ================= NOTE ================= */
.gsr-contact-note {
    margin-top: 20px;
    font-size: clamp(11px, 1vw, 13px);
    color: #bbb;
}

