:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --bg: #0b1120;
    --card-bg: #020617;
    --text: #e5e7eb;
    --muted: #9ca3af;
    --border: #1f2937;
}

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

html {
    min-height: 100%;
    background: radial-gradient(circle at top, #242424, #0a0a0a);
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
    color: #fff;
}



/* ======================
   CONTACT PAGE
====================== */

main {
    flex: 1;
}

.contact-page {
    padding: 2rem;
    text-align: center;
    flex: 1;
    padding-top: 100px;
}

    .contact-page h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

/* Main Contact Card */
.contact-card {
    background: black;
    border: 1px solid rgba(255, 255, 255, 0.08);
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.35);
    text-align: left;
}

    .contact-card h2 {
        text-align: center;
        margin-bottom: 1rem;
    }

    .contact-card p {
        margin: 1rem 0;
        color: var(--text);
    }

        .contact-card p:first-of-type {
            margin-top: 2rem; /* adjust this value to move it lower */
        }

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px #020617 inset !important; /* same as your input background */
    -webkit-text-fill-color: white !important; /* keep your text white */
    caret-color: white !important; /* keep caret visible */
}


.msg-title h3 {
    margin-top: 55px; /* adjust for perfect spacing */
    text-align: center;
}


.contact-card-social-icons {
    display: flex;
    gap: 100px;
    margin-top: 50px;
    justify-content: center;
}

    .contact-card-social-icons img {
        width: 100px;
        height: 100px;
        transition: transform 0.2s ease, opacity 0.2s ease;
        cursor: pointer;
    }

        .contact-card-social-icons img:hover {
            transform: scale(1.15);
            opacity: 0.8;
        }

.contact-address-link {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

    .contact-address-link:hover {
        text-decoration: underline;
    }

.contact-phone-link {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

    .contact-phone-link:hover {
        text-decoration: underline;
    }

/* Buttons */
.btn {
    display: inline-block;
    border-radius: 8px;
    padding: 0.6rem 1rem;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text);
    text-decoration: none;
    cursor: pointer;
    transition: 0.15s;
}

    .btn:hover {
        transform: translateY(-2px);
    }

    .btn.primary {
        background: var(--primary);
        border-color: var(--primary-dark);
    }

        .btn.primary:hover {
            background: var(--primary-dark);
        }

/* =========================
   Mobile sizing tweaks (CONTACT only)
========================= */
@media (max-width: 820px) {
  .contact-page{
    padding: 1.1rem;
    padding-top: 84px;
  }
  .contact-page h1{
    font-size: 1.55rem;
    margin-bottom: 1rem;
  }
  .contact-card{
    max-width: 92vw;
    padding: 1.25rem;
    border-radius: 14px;
  }
  .contact-card h2{
    font-size: 1.15rem;
  }
  .contact-card p{
    font-size: .95rem;
    margin: .8rem 0;
  }
  .contact-card p:first-of-type{
    margin-top: 1.3rem;
  }

  .contact-card-social-icons{
    gap: 26px;
    margin-top: 26px;
  }
  .contact-card-social-icons img{
    width: 64px;
    height: 64px;
  }
}
