/* ------------------------------- */
/* SHARPLYNC CONTACT PAGE (WOW)   */
/* ------------------------------- */

:root {
    --navy: #0A2A4D;
    --deep: #08233F;
    --teal: #2CBFAE;
    --light-teal: #36d6c3;
}

/* GLOBAL PAGE BACKGROUND (Smooth, No Lines) */
body {
    background: linear-gradient(135deg, #0A2A4D 0%, #0C3B60 40%, #2CBFAE 100%);
    background-attachment: fixed;
}

/* HERO */
.contact-hero {
    padding-top: 3rem; 
    padding-bottom: 2rem;
    text-align: center;
    color: white;
    /* REMOVE the old fade overlay entirely */
    background: none !important;
}

.contact-title {
    font-family: "Poppins", sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #ffffff;
    text-shadow: 0 3px 10px rgba(0,0,0,0.35);
}

.contact-title .brand-gradient {
    background: linear-gradient(90deg, #2CBFAE, #4df0d8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}


.contact-subtitle {
    font-family: "Poppins", sans-serif;
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0.5rem auto 0;
}

/* SECTION HEADINGS */
.section-heading {
    text-align: center;
    color: #ffffff;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.section-sub {
    text-align: center;
    color: rgba(255,255,255,0.85);
    margin-bottom: 2.5rem;
}

/* INFO GRID */
.contact-info-section {
    padding: 2rem 1rem 4rem;
    display: flex;
    justify-content: center;
}

.contact-info-grid {
    display: grid;
    gap: 2rem;
    max-width: 1200px;
    width: 100%;
}

/* TALK TO US → 3 columns */
.contact-info-grid.talk {
    grid-template-columns: repeat(3, 1fr);
}

/* CONNECT WITH US → 2 centered wide cards */
.contact-info-grid.connect {
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
}

/* GLASS PANEL CARD */
.info-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 18px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    transition: transform .25s, box-shadow .25s, background .25s;
}

.info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 35px rgba(0,0,0,0.35);
    background: rgba(255, 255, 255, 0.18);
}

.info-icon img {
    height: 48px;
    margin-bottom: 1rem;
    filter: brightness(0) saturate(100%) invert(52%) sepia(37%) saturate(1020%) hue-rotate(122deg);
}

.info-card h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.info-card p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 0.3rem;
}

.info-link {
    color: var(--teal);
    font-weight: 600;
    display: inline-block;
    margin-top: 0.75rem;
}

/* FORM SECTION */
.contact-form-section {
    padding: 4rem 1rem 6rem;
    display: flex;
    justify-content: center;
}

.contact-form-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 18px;
    max-width: 900px;
    width: 100%;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.form-title {
    text-align: center;
    color: var(--navy);
    margin-bottom: 2rem;
    font-size: 1.7rem;
    font-weight: 600;
}

.form-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.form-group {
    flex: 1;
}

.form-group.full {
    width: 100%;
    margin-bottom: 1.5rem;
}

label {
    font-weight: 600;
    color: var(--navy);
}

input, textarea {
    width: 100%;
    margin-top: 0.4rem;
    padding: 0.9rem 1rem;
    border-radius: 10px;
    border: 2px solid #e1e1e1;
    font-size: 1rem;
}

input:focus, textarea:focus {
    border-color: var(--teal);
    outline: none;
}

.submit-btn {
    background: var(--teal);
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s;
}

.submit-btn:hover {
    background: var(--light-teal);
}

/* MOBILE */
@media (max-width: 1024px) {
    .contact-info-grid.talk {
        grid-template-columns: 1fr;
    }
    .contact-info-grid.connect {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 1rem;
    }
}
