/* ========================================
   MAIN LAYOUT STYLES
   ======================================== */

/* Header Styles */
.header-section {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo-text h4 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.logo-text small {
    font-size: 0.85rem;
    opacity: 0.8;
}

.logo-placeholder {
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.3);
}

/* Navigation Styles */
.navbar {
    border-bottom: 1px solid #e9ecef;
}

.navbar-nav .nav-link {
    color: #495057 !important;
    font-weight: 500;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    border-radius: 6px;
}

/* Dropdown styles inherited from base.css */

/* Footer Styles */
.footer {
    background-color: #f8f9fa;
    padding: 20px 0;
    margin-top: 50px;
}

/* Certificate Card Styles */
.certificate-card {
    padding: 20px;
    margin-bottom: 20px;
}

/* Status colors inherited from base.css */

/* Responsive Design */
@media (max-width: 768px) {
    .header-section {
        padding: 15px 0;
    }
    
    .logo-text h4 {
        font-size: 1.2rem;
    }
    
    .logo-text small {
        font-size: 0.75rem;
    }
    
    .col-md-6 .d-flex {
        padding-left: 15px !important;
        padding-right: 15px !important;
        justify-content: center !important;
    }
    
    .col-md-6.text-end {
        text-align: center !important;
        margin-top: 15px;
    }
    
    .col-md-6.text-end h4 {
        font-size: 1.1rem;
    }
    
    .navbar-nav {
        text-align: center;
    }
    
    .navbar-nav .nav-link {
        padding: 0.5rem 1rem;
    }
}

@media (max-width: 576px) {
    .header-section .row > div {
        text-align: center !important;
    }
    
    .d-flex.align-items-center {
        justify-content: center !important;
    }
    
    .logo-text h4 {
        font-size: 1rem;
    }
    
    .col-md-6.text-end h4 {
        font-size: 1rem;
        margin-top: 10px;
    }
}

/* Global transitions inherited from base.css *//* 
Tab Navigation Styles */
.nav-tabs {
    border-bottom: 2px solid #dee2e6;
}

.nav-tabs .nav-link {
    border: none;
    border-bottom: 3px solid transparent;
    color: #6c757d;
    font-weight: 500;
    padding: 12px 20px;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover {
    border-color: transparent;
    color: var(--theme-color, #007bff);
    background-color: rgba(var(--theme-color-rgb, 0, 123, 255), 0.1);
}

.nav-tabs .nav-link.active {
    color: var(--theme-color, #007bff);
    background-color: transparent;
    border-color: var(--theme-color, #007bff);
    font-weight: 600;
}

.tab-content {
    padding-top: 20px;
}

.tab-pane {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive tab design */
@media (max-width: 768px) {
    .nav-tabs .nav-link {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .nav-tabs .nav-link i {
        display: none;
    }
}/* ====
= APPLICATION PAGES STYLES ===== */

/* Tema rengi değişkenleri ve temel stiller */
.application-page {
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Container stiller */
.application-container, .status-container, .result-container {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    overflow: hidden;
    margin: 20px auto;
    max-width: 800px;
}

.status-container {
    max-width: 600px;
    margin: 50px auto;
}

.result-container {
    max-width: 900px;
    margin: 50px auto;
}

/* Header section */
.header-section {
    background: var(--theme-color, #007bff);
    color: white;
    padding: 30px;
    text-align: center;
}

/* Form section */
.form-section, .content-section {
    padding: 40px;
}

/* Form controls */
.application-page .form-group {
    margin-bottom: 20px;
}

.application-page .form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.application-page .form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 15px;
    transition: all 0.3s;
}

.application-page .form-control:focus {
    border-color: var(--theme-color, #007bff);
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Required field indicator */
.required-field::after {
    content: " *";
    color: #dc3545;
}

/* KVKK section */
.kvkk-section {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 25px;
    margin: 30px 0;
}

.kvkk-text {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

.kvkk-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.kvkk-checkbox input[type="checkbox"] {
    margin-top: 4px;
    transform: scale(1.2);
}

/* Buttons */
.btn-submit, .btn-search, .btn-back {
    background: var(--theme-color, #007bff);
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-submit {
    padding: 15px 40px;
    font-size: 16px;
}

.btn-submit:hover, .btn-search:hover, .btn-back:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
    color: white;
    background: var(--theme-color, #007bff);
    filter: brightness(1.1);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Info boxes */
.info-box, .certificate-info {
    background: rgba(0, 123, 255, 0.1);
    border: 2px solid var(--theme-color, #007bff);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
}

.certificate-info {
    background: #e3f2fd;
    border-color: #2196f3;
}

/* Application cards */
.application-card {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.application-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

/* Status badges */
.status-badge {
    font-size: 0.9rem;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
    border: 2px solid #ffeaa7;
}

.status-approved {
    background: rgba(0, 123, 255, 0.1);
    color: var(--theme-color, #007bff);
    border: 2px solid var(--theme-color, #007bff);
}

.status-rejected {
    background: #f8d7da;
    color: #721c24;
    border: 2px solid #fd79a8;
}

/* Info rows */
.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f8f9fa;
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 600;
    color: #495057;
}

.info-value {
    color: #6c757d;
}

/* Alerts */
.application-page .alert {
    border-radius: 8px;
    border: none;
}

.alert-sm {
    padding: 8px 12px;
    font-size: 14px;
}

#validateTCBtn {
    font-size: 14px;
}/* Announce
ment Modal Styles */
.announcement-content {
    font-size: 16px;
    line-height: 1.6;
}

.announcement-content h1,
.announcement-content h2,
.announcement-content h3,
.announcement-content h4,
.announcement-content h5,
.announcement-content h6 {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.announcement-content p {
    margin-bottom: 1rem;
}

.announcement-content ul,
.announcement-content ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.announcement-content a {
    color: #0d6efd;
    text-decoration: none;
}

.announcement-content a:hover {
    text-decoration: underline;
}

.announcement-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1rem 0;
}

.announcement-content blockquote {
    border-left: 4px solid #dee2e6;
    padding-left: 1rem;
    margin: 1rem 0;
    font-style: italic;
    color: #6c757d;
}

.announcement-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.announcement-content table th,
.announcement-content table td {
    border: 1px solid #dee2e6;
    padding: 0.5rem;
    text-align: left;
}

.announcement-content table th {
    background-color: #f8f9fa;
    font-weight: 600;
}/* Modal 
animasyonları */
.modal.fade .modal-dialog {
    transform: scale(0.8);
    transition: transform 0.3s ease-out;
}

.modal.show .modal-dialog {
    transform: scale(1);
}

/* Responsive */
@media (max-width: 768px) {
    .modal-dialog {
        margin: 1rem;
    }
    
    .announcement-content {
        font-size: 14px;
    }
}/* Surve
y Take Page Styles */
/* Yıldızlı Puanlama Stilleri */
.star-rating {
    font-size: 2rem;
    cursor: pointer;
    user-select: none;
}

.star-rating .star {
    color: #ddd;
    transition: color 0.2s ease;
    margin: 0 8px;
    display: inline-block;
}

.star-rating .star:hover,
.star-rating .star.active {
    color: #ffc107;
}

.star-rating .star.hover {
    color: #ffeb3b;
}

/* Sayısal Puanlama Stilleri */
.rating-numeric .form-check-label {
    cursor: pointer;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.rating-numeric .form-check-input:checked + .form-check-label {
    background-color: #007bff;
    border-color: #007bff;
    color: white;
}

.rating-numeric .form-check-label:hover {
    border-color: #007bff;
    background-color: #f8f9fa;
}

.rating-numeric .form-check-input:checked + .form-check-label:hover {
    background-color: #0056b3;
}

.rating-number {
    font-size: 1.5rem;
    font-weight: bold;
}

/* Evet/Hayır Stilleri */
.form-check-lg .form-check-label {
    cursor: pointer;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    transition: all 0.2s ease;
    display: block;
    text-align: center;
}

.form-check-lg .form-check-input:checked + .form-check-label {
    border-color: #28a745;
    background-color: #f8fff9;
}

.form-check-lg .form-check-label:hover {
    border-color: #28a745;
    background-color: #f8fff9;
}

/* Progress Bar */
.progress {
    background-color: #e9ecef;
}

/* Question Cards */
.question-card {
    transition: box-shadow 0.2s ease;
}

.question-card:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Auto-save indicator */
.auto-save-indicator {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1050;
}

/* Submit button pulse animation */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}

/* Success Modal Styles */
.modal-header.bg-success {
    border-bottom: none;
}

.modal-content {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.progress-bar-animated {
    animation: progress-bar-stripes 1s linear infinite;
}

@keyframes progress-bar-stripes {
    0% {
        background-position: 1rem 0;
    }
    100% {
        background-position: 0 0;
    }
}/* 
Survey Preview Page Styles */
.star-rating-preview {
    font-size: 2rem;
}

.star-rating-preview .star {
    margin: 0 2px;
}/* =
=======================================
   APPLICATION PAGES STYLES
   ======================================== */

/* Application Form Page Styles */
.application-page body {
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.application-container {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    overflow: hidden;
    margin: 20px auto;
    max-width: 800px;
}

.application-page .header-section {
    color: white;
    padding: 30px;
    text-align: center;
}

.form-section {
    padding: 40px;
}

.form-group {
    margin-bottom: 20px;
}

.application-page .form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.application-page .form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 15px;
    transition: all 0.3s;
}

.required-field::after {
    content: " *";
    color: #dc3545;
}

.kvkk-section {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 25px;
    margin: 30px 0;
}

.kvkk-text {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

.kvkk-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.kvkk-checkbox input[type="checkbox"] {
    margin-top: 4px;
    transform: scale(1.2);
}

.btn-submit {
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    color: white;
    filter: brightness(1.1);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.alert-sm {
    padding: 8px 12px;
    font-size: 14px;
}

#validateTCBtn {
    font-size: 14px;
}

.application-page .alert {
    border-radius: 8px;
    border: none;
}

.certificate-info {
    background: #e3f2fd;
    border: 2px solid #2196f3;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
}

.certificate-info h5 {
    color: #1976d2;
    margin-bottom: 10px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

/* Status Result Page Styles */
.result-container {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    overflow: hidden;
    margin: 50px auto;
    max-width: 900px;
}

.content-section {
    padding: 40px;
}

.application-card {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.application-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.status-badge {
    font-size: 0.9rem;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
    border: 2px solid #ffeaa7;
}

.status-rejected {
    background: #f8d7da;
    color: #721c24;
    border: 2px solid #fd79a8;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f8f9fa;
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 600;
    color: #495057;
}

.info-value {
    color: #6c757d;
}

.btn-back {
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-back:hover {
    transform: translateY(-2px);
    color: white;
    filter: brightness(1.1);
}

/* Status Search Page Styles */
.status-container {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    overflow: hidden;
    margin: 50px auto;
    max-width: 600px;
}

.btn-search {
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-search:hover {
    transform: translateY(-2px);
    color: white;
    filter: brightness(1.1);
}

.info-box {
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .application-container,
    .result-container,
    .status-container {
        margin: 10px;
        border-radius: 10px;
    }
    
    .header-section {
        padding: 20px;
    }
    
    .form-section,
    .content-section {
        padding: 20px;
    }
}