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

/* ---- HERO ---- */
.ngc-hero {
    padding-top: var(--header-h);
    background: var(--white);
    overflow: hidden;
}
.ngc-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
    padding-top: 64px;
    padding-bottom: 80px;
    min-height: calc(520px + var(--header-h));
}
.ngc-hero__title {
    font-size: clamp(2rem, 3.8vw, 3.4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--dark);
    margin-bottom: 16px;
}
.ngc-hero__accent { color: var(--blue); }
.ngc-hero__sub {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 380px;
}
.ngc-hero__services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 32px;
}
.ngc-hero__svc {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--dark);
}
.ngc-hero__cta { display: inline-flex; gap: 8px; }

/* Hero right — image */
.ngc-hero__right {
    position: relative;
    height: 480px;
    border-radius: 20px;
    overflow: hidden;
}
.ngc-hero__img-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}
.ngc-hero__img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a2744 0%, #0d1b3e 100%);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: rgba(255,255,255,0.5);
    font-size: 0.82rem;
    text-align: center;
    line-height: 1.6;
    padding: 32px;
}

/* ---- FORM SECTION ---- */
.ngc-form-section {
    background: var(--bg-light);
    padding: 80px 0 100px;
}
.ngc-form-header {
    margin-bottom: 48px;
}
.ngc-form-section-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.025em;
    margin-bottom: 10px;
}
.ngc-form-section-sub {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.65;
}
.ngc-form-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 32px;
    align-items: start;
}

/* Form card */
.ngc-form-wrap {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 44px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 32px rgba(0,0,0,0.06);
}
.ngc-form { display: flex; flex-direction: column; gap: 20px; }
.ngc-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ngc-form__field { display: flex; flex-direction: column; gap: 7px; }
.ngc-form__field label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: 0.01em;
}
.ngc-req { color: var(--blue); }

.ngc-input {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid #E5E8EF;
    border-radius: 12px;
    font-size: 0.9rem;
    font-family: var(--font);
    color: var(--dark);
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    outline: none;
    appearance: none;
}
.ngc-input:hover { border-color: #C8CDD8; }
.ngc-input:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(37,99,235,0.09);
    background: #FAFCFF;
}
.ngc-input::placeholder { color: #B8BDCA; }

.ngc-select {
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 7L11 1' stroke='%236B7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}
.ngc-textarea {
    min-height: 130px;
    resize: vertical;
    line-height: 1.6;
}
.ngc-submit {
    align-self: flex-start;
    gap: 10px;
    padding: 14px 32px;
    font-size: 0.95rem;
    border-radius: 12px;
}

/* ---- CONTACT SIDEBAR ---- */
.ngc-details { display: flex; flex-direction: column; gap: 16px; }

.ngc-details__card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.05);
}
.ngc-details__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}
.ngc-details__list { display: flex; flex-direction: column; gap: 0; }
.ngc-details__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    transition: background 0.15s;
}
.ngc-details__item:last-child { border-bottom: none; }
.ngc-details__item--link:hover .ngc-details__item-val { color: var(--blue); }
.ngc-details__icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #EFF6FF;
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}
.ngc-details__item-label {
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--gray);
    margin-bottom: 3px;
}
.ngc-details__item-val {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.5;
    transition: color 0.2s;
}

/* Availability badges */
.ngc-details__badges {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.05);
}
.ngc-badge {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}
.ngc-badge:last-child { border-bottom: none; padding-bottom: 0; }
.ngc-badge:first-child { padding-top: 0; }
.ngc-badge svg { flex-shrink: 0; margin-top: 2px; }
.ngc-badge__label {
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--gray);
    margin-bottom: 3px;
}
.ngc-badge__val {
    font-size: 0.88rem;
    color: var(--gray);
}
.ngc-badge__val strong { color: var(--dark); }

/* ---- PROCESS ---- */
.ngc-process { background: var(--white); }
.ngc-process__title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.02em;
    margin-bottom: 56px;
}
.ngc-process__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.ngc-step {
    padding-right: 32px;
    position: relative;
}
.ngc-step__num {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: #EFF6FF;
    border: 1.5px solid var(--blue);
    color: var(--blue);
    font-size: 0.78rem;
    font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}
.ngc-step__line {
    height: 1.5px;
    background: #DBEAFE;
    position: absolute;
    top: 18px;
    left: 36px;
    right: 0;
}
.ngc-step:last-child .ngc-step__line { display: none; }
.ngc-step__title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    margin: 20px 0 8px;
}
.ngc-step__desc {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.65;
}

/* ---- FAQ ---- */
.ngc-faq__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.ngc-faq__title {
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.02em;
    margin-bottom: 36px;
}
.ngc-accordion { display: flex; flex-direction: column; }
.ngc-accordion__item { border-bottom: 1px solid var(--border); }
.ngc-accordion__trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 18px 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: color 0.2s;
}
.ngc-accordion__trigger:hover { color: var(--blue); }
.ngc-accordion__chevron {
    flex-shrink: 0;
    color: var(--gray);
    transition: transform 0.3s ease;
}
.ngc-accordion__item.open .ngc-accordion__chevron { transform: rotate(180deg); }
.ngc-accordion__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.ngc-accordion__item.open .ngc-accordion__body { max-height: 200px; }
.ngc-accordion__body p {
    font-size: 0.87rem;
    color: var(--gray);
    line-height: 1.75;
    padding-bottom: 18px;
}

.ngc-faq__right {
    display: flex;
    align-items: center;
    justify-content: center;
}
.ngc-faq__img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    max-height: 360px;
}
.ngc-faq__placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 60px 40px;
    background: #EFF6FF;
    border-radius: 20px;
    text-align: center;
    width: 100%;
}
.ngc-faq__placeholder p { font-size: 0.92rem; color: var(--gray); line-height: 1.7; }
.ngc-faq__placeholder a { color: var(--blue); font-weight: 600; }

/* ---- CTA BANNER ---- */
.ngc-cta {
    background: linear-gradient(135deg, #1E3A8A 0%, #2563EB 50%, #3B82F6 100%);
    padding: 80px 0;
    overflow: hidden;
    position: relative;
}
.ngc-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
}
.ngc-cta__title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.025em;
    line-height: 1.12;
    margin-bottom: 12px;
}
.ngc-cta__sub {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.65;
}
.ngc-cta__btn { flex-shrink: 0; gap: 8px; }
.ngc-cta__blob {
    position: absolute;
    top: -120px; right: -80px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    pointer-events: none;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .ngc-hero__inner { grid-template-columns: 1fr; gap: 40px; min-height: auto; }
    .ngc-hero__right { height: 340px; }
    .ngc-form-grid { grid-template-columns: 1fr; gap: 24px; }
    .ngc-form-wrap { padding: 32px 28px; }
    .ngc-process__steps { grid-template-columns: repeat(2,1fr); gap: 32px; }
    .ngc-step__line { display: none; }
    .ngc-faq__grid { grid-template-columns: 1fr; gap: 48px; }
    .ngc-cta__inner { flex-direction: column; text-align: center; }
}
@media (max-width: 768px) {
    .ngc-form__row { grid-template-columns: 1fr; }
    .ngc-hero__services { grid-template-columns: 1fr; }
    .ngc-process__steps { grid-template-columns: 1fr 1fr; }
    .ngc-form-wrap { padding: 24px 20px; }
    .ngc-hero__right { height: 260px; }
}
