/* =============================================
   Bermed Contact Form - Index2 Section
   Theme: Sharp, clean, corporate medical
   ============================================= */

/* Form Card Container */
.bermed-form-card {
    background: #ffffff;

    padding: 40px 44px;
    box-shadow: 0 4px 20px rgba(2, 37, 59, 0.08);
    margin-top: 10px;
}

.bermed-form-card .form-card-title {
    font-family: 'Cabin', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #02253b;
    display: none;
    margin: 0 0 6px 0;
    line-height: 1.3;
    letter-spacing: -0.2px;
}

.bermed-form-card .form-card-desc {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    color: #5a6a7a;
    display: none;
    margin: 0 0 32px 0;
    line-height: 1.6;
    border-bottom: 2px solid #25b8c5;
    padding-bottom: 20px;
}

/* Form Base */
.bermed-contact-form {
    width: 100%;
}

/* Form Row */
.bermed-contact-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 0;
}

/* Form Groups */
.bermed-contact-form .form-group {
    position: relative;
    margin-bottom: 22px;
    flex: 1;
}

/* Labels */
.bermed-contact-form .form-group label {
    display: block;
    font-family: 'Cabin', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #02253b;
    margin-bottom: 8px;
    letter-spacing: 0.2px;
    text-transform: none;
}

/* Inputs, Selects, Textarea */
.bermed-contact-form .form-group .form-input,
.bermed-contact-form .form-group .form-select,
.bermed-contact-form .form-group .form-textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #1a1a2e;
    background: #f8fafc;
    border: none;
    border-radius: 0;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    line-height: 1.5;
}

/* Focus State */
.bermed-contact-form .form-group .form-input:focus,
.bermed-contact-form .form-group .form-select:focus,
.bermed-contact-form .form-group .form-textarea:focus {
    border-color: #02253b;
    background: #ffffff;
}

/* Placeholder */
.bermed-contact-form .form-group .form-input::placeholder,
.bermed-contact-form .form-group .form-textarea::placeholder {
    color: #94a3b8;
    font-size: 15px;
}

/* Select Arrow */
.bermed-contact-form .form-group .form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath fill='%2302253b' d='M7 10.5L1.5 4.5h11z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
    cursor: pointer;
}

/* Textarea */
.bermed-contact-form .form-group .form-textarea {
    resize: vertical;
    min-height: 130px;
    line-height: 1.7;
}

/* Privacy Checkbox */
.bermed-contact-form .form-privacy {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 28px;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
}

.bermed-contact-form .form-privacy input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-top: 1px;
    accent-color: #02253b;
    cursor: pointer;
}

.bermed-contact-form .form-privacy label {
    cursor: pointer;
}

.bermed-contact-form .form-privacy a {
    color: #02253b;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.bermed-contact-form .form-privacy a:hover {
    color: #02253b;
    border-color: #02253b;
}

/* Submit Button */
.bermed-contact-form .form-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 44px;
    font-family: 'Cabin', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #fff;
    background: #02253b;
    border: 2px solid #02253b;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bermed-contact-form .form-submit-btn:hover {
    background:#02253b;
    border-color: #02253b;
    box-shadow: 0 6px 20px rgba(2, 37, 59, 0.35);
}

.bermed-contact-form .form-submit-btn:active {
    box-shadow: 0 2px 8px rgba(2, 37, 59, 0.2);
}

.bermed-contact-form .form-submit-btn i {
    font-size: 15px;
    transition: transform 0.3s ease;
}

.bermed-contact-form .form-submit-btn:hover i {
    transform: translateX(5px);
}

/* Messages */
.bermed-contact-form .form-message {
    padding: 14px 20px;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 20px;
    display: none;
    border-left: 4px solid transparent;
}

.bermed-contact-form .form-message.success {
    background: #ecfdf5;
    color: #065f46;
    border-left-color: #10b981;
    display: block;
}

.bermed-contact-form .form-message.error {
    background: #fef2f2;
    color: #991b1b;
    border-left-color: #ef4444;
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .bermed-form-card {
        padding: 28px 24px;
    }

    .bermed-contact-form .form-row {
        flex-direction: column;
        gap: 0;
    }

    .bermed-contact-form .form-submit-btn {
        width: 100%;
        justify-content: center;
    }

    .bermed-form-card .form-card-title {
        font-size: 20px;
    }
}

/* =============================================
   Neden Bermed Global — Section Redesign v2
   Yapı: [Metin sol | Oval görsel sağ] + [3 kart tam genişlik] + [Banner]
   ============================================= */

/* ---- Section wrapper ---- */
.nbg-section {
    background: #ffffff !important;
    padding: 0 !important;
    overflow: hidden !important;
    position: relative;
}

/* ---- ROW 1: Metin + Oval görsel ---- */
.nbg-top {
    display: flex;
    align-items: flex-start;
    background: #ffffff;
    box-sizing: border-box;
}

/* Metin kolonu — sol %55 */
.nbg-text-col {
    flex: 0 0 40%;
    max-width: 40%;
    padding:50px;
    box-sizing: border-box;
}

/* Görsel kolonu — sağ %45 */
.nbg-img-col {
    flex: 0 0 60%;
    max-width: 60%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;

}




/* TÜRSAB | IATA akreditasyon satırı — section sağ üst köşe */
.nbg-accred {
    display: flex;
    align-items: center;
    gap: 10px;
    position: absolute;
    top: 18px;
    right: 20px;
    z-index: 10;
    background: rgba(255,255,255,0.92);
    padding: 5px 14px;
    border-radius: 3px;
    box-shadow: 0 1px 6px rgba(2,37,59,0.08);
}

.nbg-accred__item {
    font-family: 'Cabin', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #02253b;
}

.nbg-accred__item i {
    margin-right: 3px;
    color: #c9a96e;
}

.nbg-accred__bar {
    color: #c9a96e;
    font-size: 14px;
    line-height: 1;
}

/* Oval görsel çerçevesi */
.nbg-oval {
    width: 100%;
    clip-path: ellipse(100% 100% at 100% 0%);
    overflow: hidden;
    box-shadow:
        0 0 0 7px rgba(201, 169, 110, 0.30),
        0 8px 48px rgba(2, 37, 59, 0.14);
    position: relative;
}

.nbg-oval img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s ease;
}

.nbg-oval:hover img {
    transform: scale(1.04);
}

/* ---- Metin stilleri ---- */
.nbg-eyebrow {
    display: block;
    font-family: 'Cabin', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #c9a96e;
    margin-bottom: 6px;
}

.nbg-eyebrow-line {
    display: block;
    width: 38px;
    height: 2px;
    background: #c9a96e;
    margin-bottom: 18px;
    border-radius: 1px;
}

.nbg-heading {
    font-family: 'Cabin', sans-serif;
    font-size: 70px;
    font-weight: 700;
    color: #02253b;
    line-height: 1.06;
    margin: 0 0 20px;
    letter-spacing: -0.5px;
}

.nbg-gold-bar {
    width: 48px;
    height: 3px;
    background: #c9a96e;
    border-radius: 2px;
    margin-bottom: 22px;
}

.nbg-lead {
    font-family: 'Cabin', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #02253b;
    line-height: 1.5;
    margin: 0 0 12px;
}

.nbg-body {
    font-family: 'Roboto', sans-serif;
    font-size: 17px;
    color: #4e6070;
    line-height: 1.78;
    margin: 0;
}

/* ---- ROW 2: Kartlar — tam genişlik ---- */
.nbg-cards {
    display: flex;
    align-items: stretch;
    max-width: 1650px;
    gap: 15px;
    margin: 0 auto;
}

.nbg-card {
    flex: 1;
    background: #ffffff;
    padding: 38px 26px 32px;
    border-radius: 20px;
    border: 1px solid #cad8e89c;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-right: 1px solid #e2e8ee;
    transition: background 0.28s ease, box-shadow 0.28s ease;
    cursor: default;
}

.nbg-card:last-child {
    border-right: none;
}

.nbg-card:hover {
    background: #ffffff;
    box-shadow: 0 -3px 0 0 #c9a96e inset, 0 6px 24px rgba(2, 37, 59, 0.08);
    z-index: 1;
}

/* Arka plan süsleme ikonu */
.nbg-card__bg {
    position: absolute;
    bottom: -18px;
    right: -14px;
    font-size: 90px;
    color: #02253b;
    opacity: 0.04;
    pointer-events: none;
    z-index: 0;
    line-height: 1;
}

/* İkon çemberi */
.nbg-card__icon {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    background: #02253b;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    position: relative;
    z-index: 1;
}

.nbg-card__icon i {
    color: #c9a96e;
    font-size: 40px;
}

/* 3. kart açık renkli ikon */
.nbg-card__icon--light {
    background: #c8d8e8;
}

.nbg-card__icon--light i {
    color: #02253b;
    font-size: 24px;
}

.nbg-card__title {
    font-family: 'Cabin', sans-serif;
    font-size: 20.5px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #02253b;
    margin: 0 0 12px;
    position: relative;
    z-index: 1;
}

.nbg-card__desc {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #5e7080;
    line-height: 1.72;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* ---- ROW 3: Alt banner ---- */
.nbg-banner {
    display: flex;
    align-items: center;
    background: #02253b;
    padding: 18px 60px;
    border-radius: 20px;
    max-width: 1650px;
    margin: 40px auto ;
}

.nbg-banner__item {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    justify-content: center;
}

.nbg-banner__item i {
    color: #c9a96e;
    font-size: 22px;
    flex-shrink: 0;
}

.nbg-banner__item span {
    font-family: 'Cabin', sans-serif;
    font-size: 15.5px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.4px;
}

.nbg-banner__sep {
    width: 1px;
    height: 38px;
    background: rgba(255, 255, 255, 0.28);
    flex-shrink: 0;
    margin: 0 20px;
}

/* ---- Animasyonlar ---- */
.nbg-anim {
    opacity: 0;
    transition: opacity 0.75s ease, transform 0.75s ease;
    will-change: opacity, transform;
}

.nbg-anim--left  { transform: translateX(-38px); }
.nbg-anim--right { transform: translateX(38px); }
.nbg-anim--up    { transform: translateY(26px); }

.nbg-anim.nbg-anim--in {
    opacity: 1;
    transform: none !important;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .nbg-top {
        flex-direction: column;
        padding: 40px 24px 36px;
    }

    .nbg-text-col,
    .nbg-img-col {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0;
    }

    .nbg-img-col {
        align-items: center;
        margin-top: 36px;
    }

    .nbg-oval {
        clip-path: unset;
        margin: 0 auto;
    }

    .nbg-heading {
        font-size: 34px;
    }

    .nbg-cards {
        flex-direction: column;
    }

    .nbg-card {
        border-right: none;
        border-bottom: 1px solid #e2e8ee;
    }

    .nbg-card:last-child {
        border-bottom: none;
    }

    .nbg-banner {
        flex-direction: column;
        padding: 24px 20px;
        gap: 18px;
    }

    .nbg-banner__sep {
        width: 80px;
        height: 1px;
        margin: 0;
    }
}

@media (min-width: 992px) and (max-width: 1280px) {
    .nbg-top {
        padding: 56px 0 50px 52px;
    }

    .nbg-heading {
        font-size: 46px;
    }
}
