/* --------------------------------------------------------------------------
   NRI Contact Page Styles
   -------------------------------------------------------------------------- */
.nri-contact-page {
    width: 100%;
    background-color: #ffffff;
    font-family: inherit;
}

/* Hero Section */
.nri-hero {
    position: relative;
    background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 10%;
}

.nri-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 15, 30, 0.7);
}

.nri-hero-container {
    position: relative;
    z-index: 2;
}

.nri-hero-title {
    color: #facc15; /* Yellow heading */
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0;
}

/* Main Content Container */
.nri-contact-section {
    padding: 70px 24px;
}

.nri-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Left Info Column */
.nri-section-heading {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 20px 0;
}

.nri-section-desc {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 440px;
}

.nri-details-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.nri-detail-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nri-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: #f1f5f9;
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nri-detail-text {
    color: #334155;
    font-size: 1rem;
    text-decoration: none;
    font-weight: 500;
}

a.nri-detail-text:hover {
    color: #2563eb;
}

/* Right Form Column */
.nri-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.nri-form-field input,
.nri-form-field textarea {
    width: 100%;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    padding: 12px 16px;
    font-size: 0.95rem;
    color: #1e293b;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    font-family: inherit;
}

.nri-form-field input::placeholder,
.nri-form-field textarea::placeholder {
    color: #94a3b8;
}

.nri-form-field input:focus,
.nri-form-field textarea:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.nri-form-field textarea {
    resize: vertical;
    min-height: 110px;
}

/* Submit Button Right-Aligned */
.nri-form-action {
    display: flex;
    justify-content: flex-end;
}

.nri-btn-submit {
    background: #ffffff;
    color: #334155;
    border: 1px solid #cbd5e1;
    padding: 10px 32px;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.nri-btn-submit:hover {
    background: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
}

/* Response status */
.nri-status-msg {
    font-size: 0.9rem;
    margin-top: 10px;
    display: none;
}
.nri-status-msg.success {
    display: block;
    color: #16a34a;
}
.nri-status-msg.error {
    display: block;
    color: #dc2626;
}

/* Map Section */
.nri-map-section {
    width: 100%;
    line-height: 0;
}

/* Responsive */
@media (max-width: 868px) {
    .nri-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}