/**
 * @file reset.css
 * @description 
 * @author Erdinç Taze
 * @copyright 
 */

 .main-menu__search-box {
    margin-right: 30px;
    margin-left: 30px;
}
.main-slider__title{
    font-size: 45px;
    line-height: 42px;
}
.slider__blockquote {
    font-style: italic;
}
.main-slider__description {
    color: #fff;
    font-size: 15px;
    line-height: normal;
    padding-bottom: 15px;
}
.ukba__btn__danger .thm-btn {
    background-color: #00715d;
    color: #fff;
}
.ukba__btn__danger .thm-btn:hover {
    color: #00715d;
}
.events-one {
    background-color: #fff;
    padding: 0 0 120px;
}
.events-one h2.section-title__title {
    font-size: 25px;
    line-height: normal;
    max-width: 800px;
    margin: 0 auto;
}
.events-one__title {
    color: #e1e1e1;
}
.events-one__img img {
    height: 400px;
    object-fit: cover;
}
.news-one {
    padding: 0 0 90px;
}
.events-page {
    padding: 30px 0 90px;
}
.feature-one__top-icon span {
    height: 117px;
    width: 117px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.news-details {
    padding: 30px 0 120px;
}
.about-four {
    padding: 50px 0 0;
}
.about-four__right {
    margin-left: 0;
}
@media only screen and (max-width: 767px) {
    .about-four__right {
        margin-top: 0;
    }
}

/**
 * Info Box Component
 * Styles for information boxes used across the site
 * @component
 */
.info-box {
    background-color: var(--oxpins-white);
    border-radius: var(--oxpins-bdr-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    height: 100%;
}

.info-box h3 {
    color: var(--oxpins-base);
    margin-bottom: 1rem;
}

.info-box-content {
    margin-top: 1rem;
}

.info-box-content .thm-btn {
    margin-top: 1rem;
    display: inline-block;
}

/**
 * Online Services Section
 * Styles for the online services boxes and layout
 * @component
 */
.online-services-section {
    padding: 3rem 0;
    background-color: #ffffff;
}

.service-box {
    background-color: #f8f9fa;
    border-radius: var(--oxpins-bdr-radius);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    height: 100%;
    transition: all 0.3s ease;
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.service-box h3 {
    color: var(--oxpins-base);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.service-box p {
    color: var(--oxpins-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/**
 * Button with arrow styles
 * Adds right arrow icon and hover animation
 */
.service-box .thm-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.service-box .thm-btn::after {
    content: "\f061"; /* FontAwesome arrow-right icon */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.service-box .thm-btn:hover::after {
    transform: translateX(5px);
}

/* Responsive adjustments */
@media only screen and (max-width: 767px) {
    .service-box {
        margin-bottom: 1rem;
    }
    
    .service-box h3 {
        font-size: 1.25rem;
    }
}

/**
 * Form Styles
 * Styles for the registration form and its components
 * @component
 */
.ukba--form {
    padding: 3rem 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.ukba--form .registration-form {
    background-color: #f8f9fa;
    min-height: 100vh;
}

.ukba--form .form-section {
    background-color: #fff;
    padding: 2rem;
    margin-bottom: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.ukba--form .section-title {
    color: #2d3748;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.ukba--form .form-group {
    position: relative;
    padding: 10px 16px;
    border: 1px solid rgba(226, 232, 240, 0.6);
    border-radius: 16px;
    transition: all 0.3s ease;
    background-color: #fff;
    min-height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.ukba--form .form-group:hover {
    border-color: rgba(203, 213, 224, 0.8);
    background-color: #fff;
}

.ukba--form .form-group:focus-within {
    border-color: rgba(0, 113, 93, 0.4);
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(0, 113, 93, 0.1);
}

.ukba--form .form-group.has-error {
    border-color: #dc3545;
    background-color: #fff8f8;
}

.ukba--form .form-group label:not(.form-check-label) {
    display: block;
    color: #64748b;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
    line-height: 1;
    position: absolute;
    top: 8px;
    left: 16px;
    background: #fff;
    padding: 0 4px;
    margin: 0;
}

.ukba--form .form-group:focus-within label:not(.form-check-label) {
    color: #00715d;
    font-size: 12px;
    top: 0;
    transform: translateY(-50%);
}

.ukba--form .form-control {
    width: 100%;
    height: 35px;
    padding: 8px 0px 0 3px;
    margin-top: 8px;
    font-size: 16px;
    color: #1a202c;
    background: none;
    border: none !important;
    outline: 0;
    box-shadow: none !important;
    -webkit-appearance: none;
    appearance: none;
}

.ukba--form .form-control::placeholder {
    color: #a0aec0;
    opacity: 0.7;
    font-size: 16px;
}

/* Radio grupları için özel stil */
.ukba--form .form-group .radio-group {
    margin-top: 16px;
    margin-bottom: 0;
}

.ukba--form .form-group .radio-group label {
    position: static;
    transform: none;
    padding: 0;
    background: none;
    font-size: 14px;
    line-height: normal;
}

.ukba--form .radio-group {
    display: flex;
    gap: 2rem;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
}

.ukba--form .form-check {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    white-space: nowrap;
    margin: 0;
    padding-left: 0;
}

.ukba--form .form-check:first-child {
    padding-left: 0;
}

.ukba--form .form-check-input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    margin: 0;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    background-color: #fff;
    padding: 0;
    flex-shrink: 0;
}

.ukba--form .form-check-input[type="radio"]:checked {
    border-color: #00715d;
    background-color: #fff;
}

.ukba--form .form-check-input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #00715d;
}

.ukba--form .form-check-label {
    font-size: 15px;
    color: #64748b;
    margin: 0;
    padding: 0;
    line-height: 1;
}

.ukba--form .required::after {
    content: "*";
    color: #e53e3e;
    margin-left: 4px;
}

.ukba--form .error {
    color: #e53e3e;
    font-size: 13px;
    margin-top: 8px;
    display: block;
}

.ukba--form .form-group {
    position: relative;
    margin-bottom: 0;
}

.ukba--form .form-group.has-error label {
    color: #e53e3e;
    background: #fff8f8;
}

.ukba--form .form-group.has-error .form-control {
    border-color: #e53e3e;
}

/* Radio grupları için özel stil */
.ukba--form .radio-group {
    margin-bottom: 8px;
}

.ukba--form .radio-group .error {
    margin-top: 4px;
}

/* Mobil Düzenlemeler */
@media (max-width: 768px) {
    .ukba--form .form-group {
        padding: 8px 12px;
        min-height: 54px;
        margin-bottom: 0;
    }

    .ukba--form .form-group label:not(.form-check-label) {
        font-size: 13px;
    }

    .ukba--form .form-group:focus-within label:not(.form-check-label) {
        font-size: 11px;
    }

    .ukba--form .form-control {
        font-size: 15px;
        height: 32px;
    }

    .ukba--form .form-control::placeholder {
        font-size: 15px;
    }

    .ukba--form .row > [class*='col-'] {
        margin-bottom: 1.25rem;
    }

    .ukba--form .row > [class*='col-']:last-child {
        margin-bottom: 0;
    }

    .ukba--form .form-section {
        padding: 1.25rem;
        margin-bottom: 1.5rem;
    }

    .ukba--form .radio-group {
        gap: 1rem;
        margin-top: 0.5rem;
        flex-wrap: wrap;
    }

    .ukba--form .form-check {
        margin-bottom: 0.5rem;
        min-width: 45%;
    }

    .ukba--form .form-check:last-child {
        margin-bottom: 0;
    }

    .ukba--form .form-check-input[type="radio"] {
        width: 16px;
        height: 16px;
    }

    .ukba--form .form-check-input[type="radio"]:checked::after {
        width: 8px;
        height: 8px;
    }

    .ukba--form .form-check-label {
        font-size: 14px;
    }

    .family-member-item {
        padding: 1rem;
        margin-bottom: 1.25rem;
        border: 1px solid rgba(226, 232, 240, 0.8);
        border-radius: 12px;
    }

    .family-member-item .row {
        margin-bottom: 1rem !important;
    }

    .family-member-item .row:last-child {
        margin-bottom: 0 !important;
    }

    .ukba--form .btn-delete {
        margin-top: 0.5rem;
    }

    .ukba--form .error {
        font-size: 12px;
        margin-top: 6px;
    }
}

/* Input icon styles */
.ukba--form .form-group.has-icon {
    padding-left: 45px;
}

.ukba--form .form-group.has-icon::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #64748b;
    z-index: 1;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}

.ukba--form .form-group.has-icon label:not(.form-check-label) {
    left: 44px;
}

.ukba--form .form-group.has-icon .form-control {
    font-family: inherit;
    font-size: 15px;
}

.ukba--form .form-group.ukba-email-icon::before {
    content: "\f0e0"; /* envelope */
}

.ukba--form .form-group.ukba-phone-icon::before {
    content: "\f095"; /* phone */
}

/* Alert Styles */
.ukba--form .alert {
    background-color: rgba(0, 113, 93, 0.05);
    border: 1px solid rgba(0, 113, 93, 0.1);
    border-radius: 16px;
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.ukba--form .alert::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: #00715d;
    border-radius: 4px 0 0 4px;
}

.ukba--form .alert h4 {
    color: #00715d;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ukba--form .alert h4::before {
    content: '\f05a';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 22px;
}

.ukba--form .alert p {
    color: #2d3748;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 8px;
    padding-left: 28px;
}

.ukba--form .alert p:last-child {
    margin-bottom: 0;
}

/* Repeater Styles */
.ukba--form .family-member-item {
    position: relative;
    padding: 20px;
    border: 1px solid rgba(226, 232, 240, 0.6);
    border-radius: 16px;
    margin-bottom: 20px;
    background-color: rgba(248, 249, 250, 0.5);
}

.ukba--form .btn-delete {
    background-color: #fff;
    border: 1px solid #e53e3e;
    color: #e53e3e;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0;
    align-self: flex-end;
}

.ukba--form .btn-delete:hover {
    background-color: #e53e3e;
    color: #fff;
}

.ukba--form .btn-add {
    background-color: rgba(0, 113, 93, 0.1);
    color: #00715d;
    border: none;
    padding: 12px 24px;
    border-radius: 24px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ukba--form .btn-add:hover {
    background-color: rgba(0, 113, 93, 0.2);
    transform: translateY(-2px);
}

.ukba--form .btn-add i {
    font-size: 14px;
}

.ukba--form .form-check-label.disabled-option {
    color: #a0aec0;
    cursor: not-allowed;
    text-decoration: line-through;
}

.ukba--form .form-check-input:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.ukba--form .form-check-input:disabled + .form-check-label {
    cursor: not-allowed;
}

/* Bank Information Section Styles */
.info-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.info-card-title {
    color: #2d3748;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.info-card-description {
    color: #4a5568;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

.fee-table-container {
    background-color: #f8fafc;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 0.75rem;
}

.fee-table-title {
    color: #2d3748;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.fee-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.fee-table tr {
    transition: all 0.2s ease;
}

.fee-table tr:hover {
    background-color: rgba(0, 113, 93, 0.05);
}

.fee-table td {
    padding: 0.5rem 0.75rem;
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    color: #4a5568;
    font-size: 0.9rem;
}

.fee-table tr:last-child td {
    border-bottom: none;
}

.fee-table .fee-amount {
    font-weight: 600;
    color: #00715d;
    text-align: right;
}

.annual-fee-info {
    background-color: #f8fafc;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
}

.annual-fee-info h4 {
    color: #2d3748;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.annual-fee-info p {
    color: #4a5568;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
}

@media only screen and (max-width: 768px) {
    .info-card {
        padding: 1rem;
    }

    .fee-table-container,
    .annual-fee-info {
        padding: 0.75rem;
    }

    .fee-table td {
        padding: 0.5rem;
    }
}

/* UKBA Info Styles */
.ukba--form .ukba-info {
    background-color: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.ukba--form .info-row {
    display: flex;
    margin-bottom: 12px;
    align-items: baseline;
}

.ukba--form .info-row:last-child {
    margin-bottom: 0;
}

.ukba--form .info-label {
    min-width: 180px;
    color: #4a5568;
    font-weight: 500;
}

.ukba--form .info-value {
    color: #2d3748;
    flex: 1;
}

/* IBAN and BIC Input Styles */
.ukba--form input[name="iban"],
.ukba--form input[name="bic"] {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: monospace;
}

/* Consent Section Styles */
.consent-section {
    margin-top: 1.5rem;
}

.consent-group {
    margin-bottom: 1rem;
    position: relative;
}

.consent-group:last-child {
    margin-bottom: 1.5rem;
}

.custom-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    border: 1px solid rgba(226, 232, 240, 0.6);
    border-radius: 12px;
    transition: all 0.2s ease;
    position: relative;
    min-height: 56px;
    width: 100%;
}

.custom-checkbox:hover {
    background-color: rgba(248, 250, 252, 0.5);
    border-color: rgba(226, 232, 240, 0.8);
}

.custom-checkbox .form-check-input {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin: 0.25rem 0 0 0;
    border: 2px solid #cbd5e0;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #fff;
    padding: 0;
}

.custom-checkbox .form-check-input:checked {
    background-color: #00715d;
    border-color: #00715d;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 14px;
}

/* Remove all pseudo elements */
.custom-checkbox .form-check-input::before,
.custom-checkbox .form-check-input::after,
.custom-checkbox .form-check-input:checked::before,
.custom-checkbox .form-check-input:checked::after {
    content: none;
    display: none;
}

/* Remove browser defaults */
.custom-checkbox .form-check-input::-ms-check,
.custom-checkbox .form-check-input::-webkit-inner-spin-button,
.custom-checkbox .form-check-input::-webkit-outer-spin-button,
.custom-checkbox .form-check-input::-webkit-search-decoration,
.custom-checkbox .form-check-input::-webkit-search-cancel-button,
.custom-checkbox .form-check-input::-webkit-search-results-button,
.custom-checkbox .form-check-input::-webkit-search-results-decoration {
    display: none;
}

.custom-checkbox .form-check-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 113, 93, 0.1);
}

.custom-checkbox .form-check-label {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    cursor: pointer;
    flex: 1;
    padding-top: 0;
    min-width: 0;
    margin-left: 10px;
}

.consent-title {
    color: #2d3748;
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.4;
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
}

/* Remove the old required styles */
.consent-title.required::after {
    display: none;
}

/* Update the required style for form-check-label */
.form-check-label.required .consent-title::after {
    content: "*";
    color: #e53e3e;
    font-size: 1rem;
    line-height: 1;
    margin-left: 0.25rem;
    margin-top: -2px;
}

/* Remove any other asterisk that might appear */
.form-check-label.required::after {
    display: none;
}

.consent-text {
    color: #4a5568;
    font-size: 0.875rem;
    line-height: 1.5;
    width: 100%;
    white-space: normal;
    word-break: break-word;
}

.custom-checkbox.has-error {
    border-color: rgba(229, 62, 62, 0.4);
    background-color: rgba(229, 62, 62, 0.02);
}

.custom-checkbox.has-error .form-check-input {
    border-color: #e53e3e;
}
@media only screen and (max-width: 768px) {
    .consent-group {
        margin-bottom: 1rem;
    }

    .custom-checkbox {
        padding: 0.875rem;
        gap: 0.5rem;
    }

    .custom-checkbox .form-check-input {
        margin: 0.25rem 0 0 0;
    }

    .consent-title {
        font-size: 0.875rem;
    }

    .consent-text {
        font-size: 0.8125rem;
    }

    .custom-checkbox + .error {
        font-size: 0.75rem;
        bottom: -1.125rem;
        left: 0.75rem;
    }
}

.consent-link {
    color: #00715d;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    display: inline;
}

.consent-link:hover {
    color: #005a4a;
    text-decoration: underline;
}

.form-notice {
    background-color: #fff8e6;
    border: 1px solid #ffd480;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin: 2rem 0;
}

.form-notice p {
    color: #805300;
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
    padding-left: 2rem;
    position: relative;
}

.form-notice p::before {
    content: '\f05a';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: #ffa600;
    font-size: 1.25rem;
}
.ukba--form .consent-group .form-check {
    padding-left: 10px;
}
@media only screen and (max-width: 768px) {
    .consent-group {
        margin-bottom: 1.75rem;
    }

    .custom-checkbox {
        padding: 1rem 1.25rem;
        gap: 1.25rem;
    }

    .custom-checkbox .form-check-input {
        width: 20px;
        height: 20px;
    }

    .consent-title {
        font-size: 0.9375rem;
    }

    .consent-text {
        font-size: 0.875rem;
    }

    .custom-checkbox + .error {
        font-size: 0.75rem;
        bottom: -1.25rem;
        left: 1.25rem;
    }
}

/* Submit Button Styles */
.btn-submit {
    background-color: #00715d;
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 24px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 2px 4px rgba(0, 113, 93, 0.2);
}

.btn-submit:hover {
    background-color: #005a4a;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 113, 93, 0.3);
}

.btn-submit i {
    font-size: 1rem;
}

@media only screen and (max-width: 768px) {
    .btn-submit {
        padding: 0.875rem 1.75rem;
        font-size: 0.9375rem;
    }
    
    .btn-submit i {
        font-size: 0.9375rem;
    }
}
section.faq-page h2.section-title__title {
    font-size: 26px;
    line-height: normal;
    max-width: 800px;
    margin: 0 auto;
}
.faq-one-accrodion {
    display: none;
}
.faq-one-accrodion.active {
    display: block;
}
.page-content{
    padding:60px 0 80px;
}
.page-content h1, .page-content h2, .page-content h3, .page-content h4, .page-content h5, .page-content h6{
    margin-bottom: 20px;
}
tbody, td, tfoot, th, thead, tr {
    border-width: inherit;
}
.table-right-column tr td:last-child {
    text-align: right;
}
table.fee-table.table-right-column td {
    font-size: 17px;
    font-weight: bold;
}
table.fee-table.table-right-column td p{
    margin-bottom: 0;
}
.footer-widget__contact-list li .text p {
    margin-bottom: 0;
}
.copyright-menu a {
    color: #fff;
    font-size: 14px;
    transition: .5s all ease;
}
.copyright-menu a:hover {
    color: #00715d;
}


