/* Contact Page Styles */
.contact-section {
    padding: 90px 0;
    background: #f8fafc;
    min-height: 100vh;
    position: relative;
}

    .contact-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url(/assets/images/background/pattern-1.jpg);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        opacity: 0.03;
        z-index: 1;
    }

    .contact-section .container {
        position: relative;
        z-index: 2;
    }


/* Location Buttons */
.location-info {
    flex: 1;
}

.location-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.location-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

    .location-btn.google-maps {
        background: #4285f4;
        color: white;
    }

        .location-btn.google-maps:hover {
            background: #3367d6;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
            color: white;
        }

    .location-btn.yandex-maps {
        background: #fc3f1d;
        color: white;
    }

        .location-btn.yandex-maps:hover {
            background: #e8340b;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(252, 63, 29, 0.3);
            color: white;
        }

    .location-btn i {
        font-size: 14px;
    }

/* Clean up old map styles */
.contact-us-maps-wrapper {
    display: none; /* Remove any remaining map wrappers */
}

/* Contact Visual Wrapper */
.contact-visual-wrapper {
    height: 100%;
    display: flex;
    align-items: center;
}

.contact-hero-card {
    background: linear-gradient(135deg, var(--global--color-primary) 0%, var(--global--color-primary-darken) 100%);
    border-radius: 20px;
    padding: 40px;
    color: white;
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
}

    .contact-hero-card::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
        animation: rotate 15s linear infinite;
    }

.contact-hero-content {
    position: relative;
    z-index: 2;
}

    .contact-hero-content h3 {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 15px;
        color: white;
    }

    .contact-hero-content p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 25px;
        opacity: 0.9;
    }

.contact-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

    .contact-features .feature-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 16px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
    }

        .contact-features .feature-item:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateX(5px);
        }

        .contact-features .feature-item i {
            color: white;
            font-size: 16px;
            width: 20px;
        }

        .contact-features .feature-item span {
            color: white;
            font-size: 14px;
            font-weight: 500;
        }

/* Hospital Info Grid */
.hospital-info-grid {
    display: grid;
    gap: 30px;
}

.hospital-info-card {
    background: var(--global--color-white);
    border-radius: 8px 8px 0 8px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}



    .hospital-info-card:hover {
        transform: unset !important;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
        border-color: var(--global--color-primary);
    }

.hospital-info-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.hospital-info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--global--color-primary) 0%, var(--global--color-secondary) 100%);
    border-radius: 8px 8px 0 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(37, 184, 197, 0.3);
}

    .hospital-info-icon i {
        font-size: 24px;
        color: var(--global--color-white);
    }

.hospital-info-title {
    font-family: var(--global--font-heading);
    font-size: 33px;
    font-weight: 600;
    color: var(--global--color-heading-2);
    margin-bottom: 0
}

.hospital-info-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.hospital-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: #f8fafc;
    border-radius: 8px 8px 0 8px;
    transition: all 0.3s ease;
}

    .hospital-info-item:hover {
        background: var(--global--color-primary-light);
        transform: translateX(4px);
    }

    .hospital-info-item i {
        font-size: 16px;
        color: var(--global--color-secondary);
        width: 40px;
        height: 40px;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        margin-top: 2px;
        flex-shrink: 0;
        background: #4dc5dc27;
    }

.hospital-info-content {
    flex: 1;
}

.hospital-info-label {
    font-family: var(--global--font-heading);
    font-size: 14px;
    font-weight: 500;
    color: var(--global--color-heading-2);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hospital-info-value {
    font-family: var(--global--font-body);
    font-size: 13px;
    color: var(--global--color-body);
    line-height: 1.5;
    margin: 0;
}

    .hospital-info-value a {
        color: var(--global--color-primary);
        text-decoration: none;
        transition: all 0.3s ease;
    }

        .hospital-info-value a:hover {
            color: var(--global--color-secondary);
            text-decoration: underline;
        }



.sidebar-widget {
    background: var(--global--color-white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}



    .sidebar-widget:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    }

.widget-title {
    font-family: var(--global--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--global--color-secondary);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #f1f3f4;
    position: relative;
    z-index: 2;
}

    .widget-title::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 40px;
        height: 2px;
        background: var(--global--color-primary);
    }

.sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.menu-section {
    position: relative;
}

.menu-section-title {
    font-family: var(--global--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--global--color-secondary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: linear-gradient(135deg, var(--global--color-primary-light) 0%, #f0f7f8 100%);
    border-radius: 12px;
    border-left: 4px solid var(--global--color-primary);
    position: relative;
    overflow: hidden;
}

    .menu-section-title::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, var(--global--color-primary) 0%, var(--global--color-secondary) 100%);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .menu-section-title:hover::before {
        opacity: 0.05;
    }

    .menu-section-title i {
        font-size: 16px;
        color: var(--global--color-primary);
        width: 16px;
        flex-shrink: 0;
        z-index: 1;
        position: relative;
    }

    .menu-section-title span {
        z-index: 1;
        position: relative;
    }

.menu-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

    .menu-links li {
        position: relative;
    }

.menu-link {
    display: block;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    font-family: var(--global--font-heading);
    font-size: 14px;
    font-weight: 500;
    color: var(--global--color-secondary);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

    .menu-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, var(--global--color-primary) 0%, var(--global--color-secondary) 100%);
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: 1;
    }

    .menu-link::after {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 3px;
        height: 0;
        background: var(--global--color-primary);
        border-radius: 2px;
        transition: height 0.3s ease;
        z-index: 2;
    }

    .menu-link:hover::before {
        opacity: 0.1;
    }

    .menu-link:hover::after {
        height: 70%;
    }

    .menu-link:hover {
        background: var(--global--color-primary-light);
        color: var(--global--color-secondary);
        transform: translateX(8px);
        border-color: var(--global--color-primary);
    }

    .menu-link i {
        color: var(--global--color-primary);
        font-size: 14px;
        width: 20px;
        text-align: center;
        z-index: 3;
        position: relative;
        transition: transform 0.3s ease;
    }

    .menu-link:hover i {
        transform: translateX(4px);
    }

    .menu-link span {
        position: relative;
        z-index: 3;
    }

/* Nice Select Optgroup Styles */
.nice-select .list .optgroup-label {
    font-weight: 600;
    font-size: 13px;
    color: var(--global--color-heading);
    padding-left: 5px;
    text-transform: uppercase;
    height: unset;
    letter-spacing: 0.5px;
    border-left: 3px solid var(--global--color-heading);

}

.nice-select .list .optgroup-label:first-child {
    margin-top: 0;
}

.nice-select .list .option.optgroup-option {
    padding-left: 28px;
    font-size: 13px;
    position: relative;
}

.nice-select .list .option.optgroup-option::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: var(--global--color-primary);
    border-radius: 50%;
    opacity: 0.5;
}

.nice-select .list .option.optgroup-option:hover::before {
    opacity: 1;
    transform: translateY(-50%) scale(1.2);
}

/* Responsive Design */
@media (max-width: 1199px) {
    .hospital-info-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .contact-content,
    .maps-section,
    .sidebar-widget {
        padding: 32px;
    }

    .contact-header h1 {
        font-size: 36px;
    }

    .maps-header h2 {
        font-size: 28px;
    }
}

@media (max-width: 991px) {

    .hospital-info-label {
        font-size: 12px;
    }

    .hospital-info-value {
        font-size: 10px;
        line-height: 1.5 !important;
    }

    .sidebar-widget {
        margin-bottom: 0;
    }



    .hospital-info-grid {
        gap: 20px;
    }

    .hospital-info-card {
        padding: 24px;
    }

    .hospital-info-icon {
        width: 50px;
        height: 50px;
    }

        .hospital-info-icon i {
            font-size: 20px;
        }

    .hospital-info-title {
        font-size: 20px;
    }

    .maps-container iframe {
        height: 350px;
    }
}


@media (max-width: 767px) {
    .hospital-info-details {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .maps-section,
    .sidebar-widget {
        padding: 24px;
        border-radius: 16px;
    }

    .contact-content {
        padding: 24px 0;
        border-radius: 16px;
    }

    .contact-header h1 {
        font-size: 32px;
    }

    .contact-header p {
        font-size: 16px;
    }

    .maps-header h2 {
        font-size: 24px;
    }

    .hospital-info-card {
        padding: 20px;
    }

    .hospital-info-header {
        text-align: center;
        gap: 12px;
    }

    .hospital-info-icon {
        width: 45px;
        height: 45px;
    }

    .hospital-info-title {
        font-size: 18px;
    }

    .hospital-info-item {
        padding: 12px;
    }

    .maps-container iframe {
        height: 300px;
    }

    .widget-title {
        font-size: 20px;
    }

    .menu-section-title {
        font-size: 16px;
        padding: 12px;
    }

    .menu-link {
        padding: 10px 12px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .hospital-info-item i {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .contact-content {
        padding: 0px;
        margin-bottom: 20px;
    }

    .maps-section,
    .sidebar-widget {
        padding: 24px;
        margin-bottom: 20px;
    }

    .contact-header {
        margin-bottom: 30px;
    }

        .contact-header h1 {
            font-size: 28px;
        }

    .hospital-info-grid {
        gap: 16px;
    }

    .hospital-info-card {
        padding: 16px;
    }

    .hospital-info-details {
        gap: 12px;
    }

    .hospital-info-item {
        padding: 10px;
    }

    .maps-container iframe {
        height: 250px;
    }

    .menu-section {
        margin-bottom: 16px;
    }

    .menu-links {
        gap: 4px;
    }

    .widget-title {
        font-size: 20px;
    }

    .menu-section-title {
        font-size: 16px;
        padding: 12px;
    }

    .menu-link {
        padding: 10px 12px;
        font-size: 13px;
    }
}

/* Animation for page load */
.contact-content,
.maps-section,
.sidebar-widget {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.contact-content {
    animation-delay: 0.1s;
}

.maps-section {
    animation-delay: 0.2s;
}

.sidebar-widget {
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

.sticky-sidebar.now-bottom {
    top: auto !important;
    bottom: 0 !important;
}

/* Sticky Sidebar Styles for Contact Page */
.sticky-sidebar.now-sticky {
    z-index: 999;
    transition: all 0.3s ease;
}

    .sticky-sidebar.now-sticky .sidebar-widget {
        max-height: 82vh;
        overflow: auto;
    }

.sidebar-widget::-webkit-scrollbar {
    width: 5px;
    background: #f1f3f4;
    border-radius: 10px;
    margin-right: 10px;
}

.sidebar-widget::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 10px;
}

.health-guide-section .container {
    position: relative;
}

.sticky-sidebar {
    transition: all 0.3s ease;
}

/* Enhanced contact card styling for better sticky behavior */
.contact-us-maps-card.sticky-sidebar {
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    background: white;
    border: 1px solid rgba(19, 197, 221, 0.1);
}

    .contact-us-maps-card.sticky-sidebar.now-sticky {
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
        border-color: rgba(19, 197, 221, 0.2);
    }

/* ========================================
   SUPPLIER FORM ENHANCEMENTS
   ======================================== */

/* KVKK Consent Styles */
.kvkk-consent-wrapper {
    margin: 10px 0;
    padding: 16px;
    background: #f8fafc;
    border-radius: 8px 8px 0 8px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

    .kvkk-consent-wrapper:hover {
        border-color: var(--global--color-primary);
        background: var(--global--color-primary-light);
    }

.kvkk-consent-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
}

.kvkk-checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: relative;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 2px solid #cbd5e1;
    border-radius: 4px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    margin-top: 1px;
}

.kvkk-consent-label:hover .checkmark {
    border-color: var(--global--color-primary);
    box-shadow: 0 0 0 3px rgba(19, 197, 221, 0.1);
}

.kvkk-checkbox:checked ~ .checkmark {
    background-color: var(--global--color-primary);
    border-color: var(--global--color-primary);
    transform: scale(1.05);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.kvkk-checkbox:checked ~ .checkmark:after {
    display: block;
}

.consent-text {
    color: var(--global--color-body);
    flex: 1;
}

.kvkk-link {
    color: var(--global--color-primary);
    text-decoration: underline;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .kvkk-link:hover {
        color: var(--global--color-secondary);
        text-decoration: none;
    }

/* reCAPTCHA Styles */
.recaptcha-wrapper {
    margin-bottom: 20px;
}



.g-recaptcha {
    transform: scale(0.95);
    transform-origin: center;
    transition: transform 0.3s ease;
}

    .g-recaptcha:hover {
        transform: scale(1);
    }

/* Phone Input Styles */




.phone-input.invalid {
    border-color: #ef4444;
    background: #fef2f2;
    animation: shake 0.3s ease-in-out;
}

.phone-input.valid {
    border-color: #10b981;
    background: #f0fdf4;
}

/* TC Kimlik Input Styles */

.tc-input.invalid {
    border-color: #ef4444;
    background: #fef2f2;
    animation: shake 0.3s ease-in-out;
}

.tc-input.valid {
    border-color: #10b981;
    background: #f0fdf4;
}

/* Email Input Styles */

.email-input.invalid {
    border-color: #ef4444;
    background: #fef2f2;
    animation: shake 0.3s ease-in-out;
}

.email-input.valid {
    border-color: #10b981;
    background: #f0fdf4;
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    75% {
        transform: translateX(5px);
    }
}

/* Enhanced Submit Button */





.supplier-submit-btn:hover:not(:disabled)::before {
    opacity: 1;
}

.supplier-submit-btn:disabled {
    background: #94a3b8;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.supplier-submit-btn .btn-text,
.supplier-submit-btn .btn-spinner {
    position: relative;
    z-index: 2;
}

.supplier-submit-btn .btn-spinner {
    color: white;
}

/* Doctor Submit Button Styles */






.doctor-submit-btn:hover:not(:disabled)::before {
    opacity: 1;
}

.doctor-submit-btn:disabled {
    background: #94a3b8;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.doctor-submit-btn .btn-text,
.doctor-submit-btn .btn-spinner {
    position: relative;
    z-index: 2;
}

.doctor-submit-btn .btn-spinner {
    color: white;
}

/* File Upload Styles for Doctor Form */
.file-upload-wrapper {
    margin-bottom: 20px;
}

.file-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    border: 2px dashed var(--global--color-primary);
    border-radius: 8px 8px 0 8px;
    background: var(--global--color-primary-light);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    margin-bottom: 0;
    width: 100%;
}

    .file-upload-label:hover,
    .file-upload-label.dragover {
        border-color: var(--global--color-primary-darken);
        background: rgba(19, 197, 221, 0.1);
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(19, 197, 221, 0.2);
    }

    .file-upload-label i {
        font-size: 2rem;
        color: var(--global--color-primary);
        margin-bottom: 10px;
        transition: all 0.3s ease;
    }

    .file-upload-label:hover i {
        transform: scale(1.1);
        color: var(--global--color-primary-darken);
    }

    .file-upload-label span {
        font-weight: 600;
        color: var(--global--color-heading);
        margin-bottom: 5px;
        font-size: 16px;
    }

    .file-upload-label small {
        font-size: 12px;
        color: var(--global--color-body);
        opacity: 0.8;
    }

.file-upload-input {
    display: none;
}

.file-list {
    margin-top: 15px;
}

.file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

    .file-item:hover {
        background: var(--global--color-primary-light);
        border-color: var(--global--color-primary);
    }

    .file-item .file-info {
        display: flex;
        flex-direction: column;
        flex: 1;
    }

    .file-item .file-name {
        color: var(--global--color-heading);
        font-weight: 500;
        margin-bottom: 2px;
    }

    .file-item .file-size {
        color: var(--global--color-body);
        font-size: 12px;
    }

    .file-item .remove-file {
        color: var(--global--color-primary);
        cursor: pointer;
        font-size: 16px;
        transition: all 0.3s ease;
        padding: 5px;
        border-radius: 50%;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .file-item .remove-file:hover {
            color: #dc3545;
            background: rgba(220, 53, 69, 0.1);
            transform: scale(1.1);
        }

/* Employee Radio Button Styles */
.employee-radio-wrapper {
    margin: 10px 0;
    padding: 16px;
    background: #f8fafc;
    border-radius: 8px 8px 0 8px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

    .employee-radio-wrapper:hover {
        border-color: var(--global--color-primary);
        background: var(--global--color-primary-light);
    }

.employee-radio-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    margin: 0;
    font-size: 14px;
    font-weight: 500;
}

.employee-radio {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.radio-checkmark {
    position: relative;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 2px solid #cbd5e1;
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.employee-radio-label:hover .radio-checkmark {
    border-color: var(--global--color-primary);
    box-shadow: 0 0 0 3px rgba(19, 197, 221, 0.1);
}

.employee-radio:checked ~ .radio-checkmark {
    background-color: var(--global--color-primary);
    border-color: var(--global--color-primary);
    transform: scale(1.05);
}

.radio-checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 6px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: white;
}

.employee-radio:checked ~ .radio-checkmark:after {
    display: block;
}

.radio-text {
    color: var(--global--color-body);
    flex: 1;
}

/* Opinions Submit Button Styles */



.opinions-submit-btn:hover:not(:disabled)::before {
    opacity: 1;
}

.opinions-submit-btn:disabled {
    background: #94a3b8;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.opinions-submit-btn .btn-text,
.opinions-submit-btn .btn-spinner {
    position: relative;
    z-index: 2;
}

.opinions-submit-btn .btn-spinner {
    color: white;
}

/* Success Popup Styles */
.success-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

    .success-popup-overlay.show {
        opacity: 1;
        visibility: visible;
    }

.success-popup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: white;
    border-radius: 24px;
    padding: 48px 40px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.success-popup-overlay.show .success-popup {
    transform: translate(-50%, -50%) scale(1);
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    position: relative;
    overflow: hidden;
}

    .success-icon::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: conic-gradient(transparent, rgba(255, 255, 255, 0.3), transparent);
        animation: rotate 2s linear infinite;
    }

    .success-icon i {
        font-size: 36px;
        color: white;
        position: relative;
        z-index: 2;
        animation: bounceIn 0.6s ease-out 0.2s both;
    }

.success-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--global--color-secondary);
    margin-bottom: 16px;
    font-family: var(--global--font-heading);
}

.success-message {
    font-size: 16px;
    color: var(--global--color-body);
    line-height: 1.6;
    margin-bottom: 32px;
}

.success-close-btn {
    background: linear-gradient(135deg, var(--global--color-primary) 0%, var(--global--color-secondary) 100%);
    border: none;
    border-radius: 8px 8px 0 8px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(19, 197, 221, 0.3);
}

    .success-close-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 25px rgba(19, 197, 221, 0.4);
    }

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }

    50% {
        transform: scale(1.05);
    }

    70% {
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Form Validation Feedback */
.form-feedback {
    font-size: 13px;
    margin-top: 6px;
    padding: 8px 12px;
    border-radius: 6px;
    display: none;
}

    .form-feedback.error {
        background: #fef2f2;
        color: #dc2626;
        border: 1px solid #fca5a5;
        display: block;
    }

    .form-feedback.success {
        background: #f0fdf4;
        color: #16a34a;
        border: 1px solid #86efac;
        display: block;
    }

/* Loading Animation for Form */
.form-loading {
    position: relative;
}

    .form-loading::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(2px);
        border-radius: 8px 8px 0 8px;
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: center;
    }

/* Responsive Design for New Elements */
@media (max-width: 768px) {
    .kvkk-consent-wrapper,
    .recaptcha-wrapper {
        margin: 16px 0;
    }

    .kvkk-consent-label {
        font-size: 13px;
        gap: 10px;
    }

    .checkmark {
        width: 18px;
        height: 18px;
    }

    .success-popup {
        padding: 32px 24px;
        margin: 20px;
    }

    .success-title {
        font-size: 24px;
    }

    .success-message {
        font-size: 14px;
    }

    .g-recaptcha {
        transform: scale(0.85);
    }

    .supplier-submit-btn {
        padding: 14px 24px;
        font-size: 15px;
    }

    .file-upload-label {
        padding: 20px 15px;
    }

        .file-upload-label i {
            font-size: 1.5rem;
        }

        .file-upload-label span {
            font-size: 14px;
        }

    .file-item {
        padding: 10px 12px;
    }

        .file-item .file-name {
            font-size: 13px;
        }

        .file-item .remove-file {
            width: 26px;
            height: 26px;
            font-size: 14px;
        }
}

/* Hospital Location Actions - Modern & Theme Compatible */
.hospital-location-actions {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(19, 197, 221, 0.1);
    display: flex;
    gap: 12px;
    justify-content: center;
}

.hospital-location-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px 8px 0 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--global--font-heading);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    min-width: 140px;
    justify-content: center;
}

    .hospital-location-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: 1;
    }

    /* Google Maps Button - Primary Theme */
    .hospital-location-btn.google-maps {
        color: white;
        box-shadow: 0 4px 15px rgba(19, 197, 221, 0.02);
        background: var(--global--color-primary)
    }

        .hospital-location-btn.google-maps:hover {
            transform: translateY(-2px);
            border-color: rgba(255, 255, 255, 0.2);
            color: white;
        }

            .hospital-location-btn.google-maps:hover::before {
                opacity: 1;
            }

    /* Yandex Maps Button - Secondary Theme */
    .hospital-location-btn.yandex-maps {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }

        .hospital-location-btn.yandex-maps:hover {
            color: var(--global--color-primary);
            border-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

            .hospital-location-btn.yandex-maps:hover::before {
                opacity: 1;
            }

    /* Button Icons */
    .hospital-location-btn i {
        font-size: 16px;
        position: relative;
        z-index: 2;
    }

    .hospital-location-btn span {
        position: relative;
        z-index: 2;
    }

    /* Active State */
    .hospital-location-btn:active {
        transform: translateY(0);
    }

/* Responsive Design */
@media (max-width: 768px) {
    .hospital-location-actions {
        flex-direction: column;
        gap: 10px;
    }

    .hospital-location-btn {
        min-width: auto;
        padding: 10px 16px;
        font-size: 13px;
    }

        .hospital-location-btn i {
            font-size: 14px;
        }
}

/* Error Popup Styles */
.error-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

    .error-popup-overlay.show {
        opacity: 1;
        visibility: visible;
    }

.error-popup {
    background: white;
    border-radius: 16px 16px 0 16px;
    padding: 40px 32px;
    max-width: 480px;
    width: calc(100% - 40px);
    box-shadow: 0 20px 60px rgba(220, 38, 38, 0.3);
    transform: scale(0.9) translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.error-popup-overlay.show .error-popup {
    transform: scale(1) translateY(0);
}

.error-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: errorPulse 2s ease-in-out infinite;
}

    .error-icon i {
        font-size: 36px;
        color: white;
        animation: errorShake 0.5s ease-in-out;
    }

.error-title {
    font-size: 28px;
    font-weight: 700;
    font-family: var(--global--font-heading);
    color: var(--global--color-secondary);
    margin-bottom: 16px;
}

.error-message {
    font-size: 16px;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 32px;
}

.error-close-btn {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    border: none;
    padding: 14px 40px;
    border-radius: 8px 8px 0 8px;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--global--font-heading);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.3);
}

    .error-close-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 25px rgba(220, 38, 38, 0.4);
    }

    .error-close-btn:active {
        transform: translateY(0);
    }

@keyframes errorPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.4);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(220, 38, 38, 0);
    }
}

@keyframes errorShake {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-5px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(5px);
    }
}

/* Responsive Error Popup */
@media (max-width: 768px) {
    .error-popup {
        padding: 32px 24px;
        margin: 20px;
    }

    .error-title {
        font-size: 24px;
    }

    .error-message {
        font-size: 14px;
    }

    .error-icon {
        width: 70px;
        height: 70px;
    }

        .error-icon i {
            font-size: 32px;
        }
}
