/* =========================================================
   Naukri Mitra Contact Page
   File: /assets/css/pages/contact-page.css
========================================================= */

/* PAGE WRAPPER */
.nm-contact-page{
    max-width:1200px;
    margin:50px auto;
    padding:0 18px;
}

/* HERO */
.nm-contact-hero{
    text-align:center;
    margin-bottom:55px;
}

.nm-contact-hero h1{
    font-size:44px;
    line-height:1.2;
    font-weight:800;
    color:#0073ff;
    margin-bottom:18px;
    letter-spacing:-0.5px;
}

.nm-contact-hero p{
    max-width:880px;
    margin:0 auto;
    color:#64748b;
    font-size:18px;
    line-height:1.8;
}

/* TOP GRID */
.nm-contact-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:28px;
    margin-bottom:70px;
}

/* CARD */
.nm-contact-card{
    background:#ffffff;
    border-radius:18px;
    padding:34px;
    position:relative;
    overflow:hidden;
    border:1px solid #e8eef6;
    box-shadow:
        0 10px 30px rgba(15,23,42,0.05),
        0 2px 6px rgba(15,23,42,0.03);
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

/* TOP ACCENT */
.nm-contact-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(
        90deg,
        #0073ff 0%,
        #00b7ff 100%
    );
}

.nm-contact-card:hover{
    transform:translateY(-6px);
    border-color:#d8e7ff;
    box-shadow:
        0 18px 45px rgba(15,23,42,0.08),
        0 4px 10px rgba(15,23,42,0.04);
}

/* CARD TITLE */
.nm-contact-card h2{
    font-size:25px;
    line-height:1.3;
    font-weight:800;
    color:#0073ff;
    margin-bottom:18px;
}

/* CARD TEXT */
.nm-contact-card p{
    font-size:16px;
    line-height:1.9;
    color:#334155;
}

/* LABEL */
.nm-label{
    margin-top:18px;
    margin-bottom:6px;
    font-size:15px;
    font-weight:700;
    color:#0f172a !important;
}

/* LINKS */
.nm-contact-card a{
    display:inline-block;
    color:#0284c7;
    text-decoration:none;
    font-weight:700;
    font-size:16px;
    transition:all .2s ease;
    word-break:break-word;
}

.nm-contact-card a:hover{
    color:#0057cc;
    transform:translateX(3px);
}

/* REGION SECTION */
.nm-region-section{
    margin-top:20px;
}

.nm-region-section h2{
    text-align:center;
    font-size:36px;
    line-height:1.3;
    font-weight:800;
    color:#0073ff;
    margin-bottom:45px;
}

/* REGION GRID */
.nm-region-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:24px;
}

/* REGION CARD */
.nm-region-card{
    background:#ffffff;
    border-radius:16px;
    padding:26px 20px;
    text-align:center;
    border:1px solid #edf2f7;
    box-shadow:
        0 5px 18px rgba(15,23,42,0.04);
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.nm-region-card:hover{
    transform:translateY(-5px);
    border-color:#dbeafe;
    box-shadow:
        0 14px 35px rgba(15,23,42,0.08);
}

/* FLAG */
.nm-region-card img{
    width:48px;
    height:34px;
    object-fit:cover;
    border-radius:5px;
    margin-bottom:14px;
    border:1px solid #e5e7eb;
}

/* COUNTRY */
.nm-region-card h3{
    font-size:17px;
    line-height:1.5;
    font-weight:700;
    color:#0f172a;
    margin-bottom:8px;
}

/* EMAIL */
.nm-region-card a{
    display:inline-block;
    color:#0284c7;
    text-decoration:none;
    font-size:14px;
    line-height:1.7;
    font-weight:700;
    transition:color .2s ease;
    word-break:break-word;
}

.nm-region-card a:hover{
    color:#0057cc;
}

/* TABLET */
@media(max-width:992px){

    .nm-contact-page{
        margin:40px auto;
    }

    .nm-contact-hero h1{
        font-size:38px;
    }

    .nm-region-section h2{
        font-size:30px;
    }

}

/* MOBILE */
@media(max-width:768px){

    .nm-contact-page{
        margin:30px auto;
        padding:0 14px;
    }

    .nm-contact-hero{
        margin-bottom:40px;
    }

    .nm-contact-hero h1{
        font-size:30px;
        line-height:1.3;
    }

    .nm-contact-hero p{
        font-size:16px;
        line-height:1.7;
    }

    .nm-contact-grid{
        gap:20px;
        margin-bottom:50px;
    }

    .nm-contact-card{
        padding:26px 22px;
        border-radius:15px;
    }

    .nm-contact-card h2{
        font-size:22px;
    }

    .nm-contact-card p{
        font-size:15px;
    }

    .nm-region-section h2{
        font-size:26px;
        margin-bottom:30px;
    }

    .nm-region-grid{
        grid-template-columns:1fr;
        gap:18px;
    }

    .nm-region-card{
        padding:22px 18px;
    }

}