/* Inner Pages Styles */
.inner-page {
    background: #f7f7f7;
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header Styles */
.main-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-logo img {
    height: 60px;
    width: auto;
}

.languages {
    text-align: center;
    position: relative;
    z-index: 1001;
}

.languages a {
    display: inline-block;
    font-size: 0.85em;
    padding: 6px 12px;
    color: #4f515a;
    text-decoration: none;
    margin: 0 3px;
    border: 2px solid transparent;
    border-radius: 20px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.languages a.active {
    background: #e1261c;
    color: #fff;
    border-color: #e1261c;
}

.languages a:not(.active):hover {
    border-color: #e1261c;
    color: #e1261c;
}

/* Navigation */
.inner-nav {
    text-align: right;
    white-space: nowrap;
}

.inner-nav a {
    color: #4f515a;
    margin: 0 6px;
    font-weight: 500;
    text-decoration: none;
    font-size: 0.9em;
    padding: 8px 16px;
    border: 2px solid transparent;
    border-radius: 20px;
    transition: all 0.3s ease;
    display: inline-block;
}

.inner-nav a:hover,
.inner-nav a.active {
    background: #5d5d62;
    color: #fff;
    border-color: #5d5d62;
}

/* Dropdown Styles */
.inner-nav .dropdown {
    display: inline-block;
    position: relative;
    padding: 5px 0;
}

.inner-nav .dropdown-toggle {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #4f515a;
    margin: 0 6px;
    padding: 8px 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 0.9em;
    font-weight: 500;
    white-space: nowrap;
    border: 1px solid #ddd;
}

.inner-nav .dropdown-toggle i {
    margin-left: 8px;
    font-size: 0.7em;
    transition: transform 0.3s ease;
}

.inner-nav .dropdown-toggle:hover,
.inner-nav .dropdown-toggle.active {
    background: #e1261c;
    color: #fff;
    border-color: #e1261c;
}

.inner-nav .dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% - 3px);
    left: 0;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    padding: 10px 0;
    margin: 0;
    min-width: 250px;
    z-index: 1000;
    list-style: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.inner-nav .dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: 12px 20px;
    color: #4f515a;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9em;
    border: none;
    background: none;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, #f8f9fa 0%, #e1261c 100%);
    color: #fff;
    padding-left: 25px;
}

/* Bootstrap dropdown override to prevent double icons */
.dropdown-toggle::after {
    display: none !important;
}

/* Main Content */
.inner-main {
    flex: 1;
    padding: 40px 0;
}

.inner-content {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    overflow: hidden;
}

.page-header {
    background: linear-gradient(135deg, #4f515a 0%, #6a6a6a 100%);
    color: #fff;
    padding: 40px;
    position: relative;
}

.page-title {
    font-size: 2.5em;
    font-weight: 600;
    margin: 0 0 15px 0;
    color: #fff;
}

.breadcrumb-wrapper {
    font-size: 1em;
    opacity: 0.9;
}

.home-link {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.home-link:hover {
    color: #e1261c;
}

.separator {
    margin: 0 15px;
    color: #ccc;
}

.current-page {
    color: #e1261c;
    font-weight: 500;
}

.page-content {
    padding: 50px;
}

.page-content h2 {
    color: #4f515a;
    font-size: 2em;
    margin-bottom: 25px;
    font-weight: 600;
}

.page-content h3 {
    color: #6a6a6a;
    font-size: 1.5em;
    margin: 30px 0 20px 0;
    font-weight: 500;
}

.page-content h4 {
    color: #4f515a;
    font-size: 1.3em;
    margin: 25px 0 15px 0;
    font-weight: 600;
}

.page-content p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: #333;
    font-size: 1.1em;
}

.page-content ul {
    margin: 25px 0;
    padding-left: 0;
}

.page-content li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    line-height: 1.7;
    color: #333;
    font-size: 1.05em;
}

.page-content li:before {
    content: "•";
    color: #e1261c;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2em;
}

/* Contact Page Specific */
.contact-info {
    background: #f8f9fa;
    border-left: 4px solid #e1261c;
    padding: 30px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
}

.contact-info h4 {
    color: #4f515a;
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-info p {
    margin-bottom: 15px;
    color: #555;
}

.map-container {
    margin: 40px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* Certificates Page */
.certificates-grid {
    margin: 40px 0;
}

.certificates-grid .row {
    margin-bottom: 30px;
}

.certificate-item {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.certificate-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: #e1261c;
}

.certificate-item img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    border-radius: 8px;
}

/* About Page */
.about-message {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    padding: 40px;
    border-radius: 8px;
    margin: 40px 0;
    border-left: 4px solid #e1261c;
}

.about-signature {
    text-align: right;
    margin-top: 40px;
    font-style: italic;
    color: #6a6a6a;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
}

.about-signature strong {
    color: #4f515a;
}

.about-image {
    margin: 40px 0;
    text-align: center;
}

.about-image img {
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    width: 100%;
    max-width: 100%;
    height: auto;
    transition: all 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(225, 38, 28, 0.2);
}

/* Values Section */
.values-section {
    margin: 40px 0;
}

.value-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #f0f0f0;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(225, 38, 28, 0.15);
    border-color: #e1261c;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e1261c 0%, #ff4757 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 4px 15px rgba(225, 38, 28, 0.3);
}

.value-icon i {
    font-size: 2.2em;
    color: #fff;
}

.value-card h3 {
    color: #4f515a;
    font-size: 1.3em;
    margin-bottom: 15px;
    font-weight: 600;
}

.value-card p {
    color: #666;
    font-size: 0.95em;
    line-height: 1.6;
    margin: 0;
}

/* Career Opportunities */
.career-opportunities {
    margin: 40px 0;
}

.career-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.career-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e1261c 0%, #ff4757 100%);
}

.career-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.career-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4f515a 0%, #6a6a6a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(79, 81, 90, 0.3);
}

.career-icon i {
    font-size: 1.8em;
    color: #fff;
}

.career-card h3 {
    color: #4f515a;
    font-size: 1.2em;
    margin-bottom: 15px;
    font-weight: 600;
}

.career-card p {
    color: #666;
    font-size: 0.9em;
    line-height: 1.6;
    margin: 0;
}

/* Quality Policy Page */
.commitments-list {
    margin: 30px 0;
}

.commitment-item {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    margin-bottom: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #e1261c;
    transition: all 0.3s ease;
}

.commitment-item:hover {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transform: translateX(5px);
}

.commitment-item i {
    font-size: 1.3em;
    color: #e1261c;
    margin-right: 20px;
    margin-top: 3px;
    min-width: 20px;
}

.commitment-item p {
    margin: 0;
    color: #333;
    line-height: 1.7;
}

.commitment-conclusion {
    text-align: center;
    margin: 40px 0;
    padding: 25px;
    background: linear-gradient(135deg, #e1261c 0%, #ff4757 100%);
    border-radius: 8px;
    color: #fff;
}

.commitment-conclusion p {
    margin: 0;
    font-size: 1.2em;
    color: #fff;
}

.commitment-conclusion i {
    margin-right: 10px;
    font-size: 1.3em;
}

.quality-targets {
    margin: 40px 0;
}

.target-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #f0f0f0;
    margin-bottom: 30px;
}

.target-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.target-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4f515a 0%, #6a6a6a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(79, 81, 90, 0.2);
}

.target-icon i {
    font-size: 1.8em;
    color: #fff;
}

.target-card h3 {
    color: #4f515a;
    font-size: 1.2em;
    margin-bottom: 15px;
    font-weight: 600;
}

.target-percentage {
    font-size: 2.5em;
    font-weight: 800;
    color: #e1261c;
    margin: 15px 0;
    text-shadow: 0 2px 4px rgba(225, 38, 28, 0.2);
}

.target-card p {
    color: #666;
    font-size: 0.9em;
    line-height: 1.6;
    margin: 0;
}

/* Ethics Statement */
.ethics-statement {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-left: 4px solid #e1261c;
    padding: 25px;
    margin: 30px 0;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.ethics-statement p {
    margin: 0;
    font-size: 1.05em;
    line-height: 1.8;
    color: #333;
    display: flex;
    align-items: flex-start;
}

.ethics-statement p i {
    margin-right: 15px;
    color: #e1261c;
    font-size: 1.3em;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Contact Highlight */
.contact-highlight {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    margin-top: 15px;
    text-align: center;
    border: 2px solid #e1261c;
}

.contact-highlight p {
    margin: 0;
    font-size: 1.1em;
    color: #333;
}

.contact-highlight i {
    color: #e1261c;
    margin-right: 8px;
}

.contact-highlight strong {
    color: #e1261c;
    font-weight: 600;
}

/* Environmental Intro */
.environmental-intro {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 1px solid #e0f2fe;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.environmental-intro h2 {
    color: #4f515a;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

.environmental-intro h2 i {
    margin-right: 15px;
    color: #22c55e;
    font-size: 1.3em;
}

.environmental-intro p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: #333;
}

.environmental-intro p:last-child {
    margin-bottom: 0;
}

/* Commitments Grid */
.commitments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.commitment-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-left: 4px solid #22c55e;
    display: flex;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.commitment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.commitment-number {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2em;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(34, 197, 94, 0.3);
}

.commitment-content {
    flex: 1;
}

.commitment-content h4 {
    color: #4f515a;
    font-size: 1.1em;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.commitment-content h4 i {
    margin-right: 10px;
    color: #22c55e;
    font-size: 1.1em;
    width: 18px;
}

.commitment-content p {
    color: #333;
    line-height: 1.7;
    margin: 0;
    font-size: 0.95em;
}

/* Responsive adjustments for commitments grid */
@media (max-width: 767px) {
    .commitments-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .commitment-card {
        flex-direction: column;
        text-align: center;
    }
    
    .commitment-number {
        margin-right: 0;
        margin-bottom: 15px;
        align-self: center;
    }
}

/* Survey Styles */
.survey-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 40px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.survey-header h1 {
    color: #4f515a;
    font-size: 2.5em;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.survey-header h1 i {
    color: #5d5d62;
    font-size: 0.9em;
}

.survey-header p {
    color: #666;
    font-size: 1.1em;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.survey-form-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.survey-form {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    overflow: hidden;
}

.form-section {
    padding: 40px;
    border-bottom: 1px solid #e2e8f0;
}

.form-section:last-child {
    border-bottom: none;
}

.form-section h3 {
    color: #4f515a;
    font-size: 1.4em;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e2e8f0;
}

.form-section h3 i {
    color: #5d5d62;
    font-size: 1.1em;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #374151;
    font-size: 0.95em;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1em;
    transition: all 0.3s ease;
    background: #fff;
}

.form-control:focus {
    outline: none;
    border-color: #5d5d62;
    box-shadow: 0 0 0 3px rgba(93, 93, 98, 0.1);
}

.form-control.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.invalid-feedback {
    display: block;
    color: #dc3545;
    font-size: 0.875em;
    margin-top: 5px;
}

.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid;
}

.alert-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: 2px solid #28a745;
    color: #155724;
    position: relative;
    overflow: hidden;
}

.alert-success::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: successShine 2s ease-in-out;
}

@keyframes successShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.success-details {
    background: rgba(40, 167, 69, 0.1);
    border-radius: 6px;
    padding: 10px 15px;
    margin-top: 10px;
    border-left: 4px solid #28a745;
}

.success-details strong {
    color: #28a745;
    font-weight: 600;
}

.success-icon {
    font-size: 1.2em;
    margin-right: 10px;
    color: #28a745;
}

.alert-success .btn-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.2em;
    color: #155724;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.alert-success .btn-close:hover {
    opacity: 1;
}

/* Success Modal Popup */
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    animation: modalFadeIn 0.3s ease forwards;
}

@keyframes modalFadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes modalFadeOut {
    0% { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(0.9); }
}

.success-modal.fade-out {
    animation: modalFadeOut 0.3s ease forwards;
}

.success-popup {
    background: #d32f2f !important;
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 3px solid #ffffff;
    position: relative;
    transform: scale(0.8);
    animation: popupSlideIn 0.4s ease 0.1s forwards;
}

@keyframes popupSlideIn {
    0% { transform: scale(0.8) translateY(20px); opacity: 0; }
    100% { transform: scale(1) translateY(0); opacity: 1; }
}

.success-popup::before {
    display: none;
}

@keyframes borderGlow {
    0% { opacity: 0.8; }
    100% { opacity: 1; }
}

.success-icon-large {
    font-size: 4em;
    color: #ffffff;
    margin-bottom: 20px;
    animation: iconBounce 0.6s ease 0.3s both;
}

@keyframes iconBounce {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.success-title {
    font-size: 1.8em;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    animation: textSlideIn 0.5s ease 0.4s both;
}

@keyframes textSlideIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.success-message {
    font-size: 1.1em;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.6;
    animation: textSlideIn 0.5s ease 0.5s both;
    opacity: 0.9;
}

.success-score {
    background: rgba(255, 255, 255, 0.2) !important;
    color: white;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    animation: textSlideIn 0.5s ease 0.6s both;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.success-score-value {
    font-size: 2.5em;
    font-weight: 800;
    margin-bottom: 5px;
}

.success-score-label {
    font-size: 1.2em;
    font-weight: 600;
    opacity: 0.9;
}

.success-details-popup {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
    font-size: 0.95em;
    animation: textSlideIn 0.5s ease 0.7s both;
}

.success-detail-item {
    background: rgba(255, 255, 255, 0.15) !important;
    padding: 12px;
    border-radius: 10px;
    border-left: 4px solid #ffffff;
    color: #ffffff !important;
}

.success-detail-item strong {
    color: #ffffff;
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.success-footer {
    color: #ffffff;
    font-size: 1em;
    animation: textSlideIn 0.5s ease 0.8s both;
    opacity: 0.9;
}

.success-footer i {
    color: #ff6b9d;
    margin-right: 8px;
    animation: heartBeat 1s ease-in-out infinite;
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Responsive */
@media (max-width: 768px) {
    .success-popup {
        padding: 30px 25px;
        margin: 20px;
    }
    
    .success-icon-large {
        font-size: 3em;
    }
    
    .success-title {
        font-size: 1.5em;
    }
    
    .success-details-popup {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .success-score-value {
        font-size: 2em;
    }
}

.alert-danger {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

.alert i {
    margin-right: 8px;
}

/* Evaluation Table */
.evaluation-note {
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
}

.evaluation-note strong {
    color: #374151;
    display: block;
    margin-bottom: 15px;
    font-size: 1.05em;
}

.rating-scale {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.scale-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9em;
    color: #6b7280;
}

.scale-number {
    background: #5d5d62;
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8em;
    font-weight: 600;
}

.evaluation-table {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.evaluation-header {
    display: grid;
    grid-template-columns: 2fr 1fr;
    background: linear-gradient(135deg, #5d5d62 0%, #4f515a 100%);
    color: #fff;
    font-weight: 600;
}

.criterion-header {
    padding: 20px 25px;
    font-size: 1.1em;
}

.rating-headers {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
}

.rating-header {
    background: rgba(255,255,255,0.1);
    padding: 20px 10px;
    text-align: center;
    font-weight: 700;
    font-size: 1.1em;
}

.evaluation-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    border-bottom: 1px solid #f1f5f9;
    transition: background-color 0.2s ease;
}

.evaluation-row:hover {
    background-color: #fafbfc;
}

.evaluation-row:last-child {
    border-bottom: none;
}

.highlight-row {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid #f59e0b;
}

.highlight-row:hover {
    background: linear-gradient(135deg, #fef3c7 0%, #fcd34d 100%);
}

.criterion-name {
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1em;
    color: #374151;
    font-weight: 500;
}

.criterion-name i {
    color: #5d5d62;
    font-size: 1.1em;
    width: 20px;
    flex-shrink: 0;
}

.rating-options {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
}

.rating-option {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.rating-option:hover {
    background-color: #e5e7eb;
}

.rating-option input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 50%;
    background: #fff;
    transition: all 0.3s ease;
    position: relative;
}

.radio-custom::after {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #5d5d62;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.2s ease;
}

.rating-option input[type="radio"]:checked + .radio-custom {
    border-color: #5d5d62;
    background: #fff;
}

.rating-option input[type="radio"]:checked + .radio-custom::after {
    transform: translate(-50%, -50%) scale(1);
}

/* Rating Error States */
.evaluation-row.has-error {
    background-color: #fdf2f2;
    border-left: 4px solid #dc3545;
}

.evaluation-row.has-error .criterion-name {
    color: #dc3545;
}

.evaluation-row.has-error .radio-custom {
    border-color: #dc3545;
}

.rating-error-message {
    color: #dc3545;
    font-size: 0.875em;
    margin-top: 5px;
    padding-left: 25px;
    display: none;
}

.evaluation-row.has-error .rating-error-message {
    display: block;
}

/* Form Actions */
.form-actions {
    padding: 40px;
    background: #f8fafc;
    text-align: center;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    min-width: 180px;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, #5d5d62 0%, #4f515a 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(93, 93, 98, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #4f515a 0%, #3f4144 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(93, 93, 98, 0.4);
}

.btn-secondary {
    background: #f8fafc;
    color: #6b7280;
    border: 2px solid #e5e7eb;
}

.btn-secondary:hover {
    background: #e5e7eb;
    border-color: #d1d5db;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .survey-header h1 {
        font-size: 2em;
        flex-direction: column;
        gap: 10px;
    }
    
    .form-section {
        padding: 25px 20px;
    }
    
    .evaluation-header,
    .evaluation-row {
        grid-template-columns: 1fr;
    }
    
    .rating-headers,
    .rating-options {
        grid-template-columns: repeat(5, 1fr);
        border-top: 1px solid #e5e7eb;
        margin-top: 15px;
        padding-top: 15px;
    }
    
    .criterion-header {
        border-bottom: 1px solid rgba(255,255,255,0.2);
    }
    
    .rating-scale {
        justify-content: flex-start;
        gap: 10px;
    }
    
    .scale-item {
        font-size: 0.8em;
    }
    
    .form-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Policy Sections */
.policy-sections {
    margin: 40px 0;
}

.policy-section {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-left: 4px solid #e1261c;
    transition: all 0.3s ease;
}

.policy-section:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.policy-section h3 {
    color: #4f515a;
    font-size: 1.1em;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.policy-section h3 i {
    margin-right: 12px;
    color: #e1261c;
    font-size: 1.2em;
    width: 20px;
}

.policy-section p {
    color: #333;
    line-height: 1.7;
    margin: 0;
    font-size: 0.95em;
}

.policy-conclusion {
    background: linear-gradient(135deg, #4f515a 0%, #6a6a6a 100%);
    color: #fff;
    padding: 30px;
    border-radius: 12px;
    margin: 40px 0;
    text-align: center;
}

.policy-conclusion p {
    margin: 0;
    font-size: 1.05em;
    line-height: 1.8;
    color: #fff;
}

/* Policy Footer */
.policy-footer {
    margin-top: 50px;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-radius: 12px;
    border-left: 4px solid #e1261c;
}

.policy-signature {
    margin-top: 30px;
    text-align: right;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.policy-signature p {
    margin-bottom: 10px;
    color: #4f515a;
    line-height: 1.5;
}

.policy-signature strong {
    color: #333;
}

/* Page Headers with Icons */
.page-content h2 i {
    margin-right: 15px;
    color: #e1261c;
}

/* HR Page Benefits List */
.page-content ul li::before {
    content: "✓";
    color: #e1261c;
    font-weight: bold;
    font-size: 1.2em;
}

/* Enhanced Contact Info */
.contact-info h4 i {
    margin-right: 10px;
    color: #e1261c;
}

/* Contact Page New Layout */
.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-card,
.complaint-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.contact-card:hover,
.complaint-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.contact-card {
    border-left: 4px solid #4f515a;
}

.complaint-card {
    border-left: 4px solid #e1261c;
}

.contact-card h4,
.complaint-card h4 {
    color: #4f515a;
    margin-bottom: 20px;
    font-size: 1.2em;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.complaint-card h4 {
    color: #e1261c;
}

.contact-card h4 i,
.complaint-card h4 i {
    margin-right: 10px;
}

.contact-details p,
.complaint-details p {
    margin-bottom: 12px;
    color: #333;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    font-size: 0.9em;
}

.contact-details i,
.complaint-details i {
    margin-right: 12px;
    color: #4f515a;
    width: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.complaint-details i {
    color: #e1261c;
}

/* Contact Description */
.contact-description {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    padding: 30px;
    border-radius: 12px;
    margin: 40px 0;
    text-align: center;
    border: 1px solid #f0f0f0;
}

.contact-description p {
    margin: 0;
    font-size: 1.1em;
    color: #333;
    line-height: 1.7;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-description i {
    margin-right: 10px;
    color: #e1261c;
    font-size: 1.2em;
}

/* Info Sections */
.info-sections {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

.info-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.info-card h3 {
    color: #4f515a;
    margin-bottom: 20px;
    font-size: 1.2em;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.info-card h3 i {
    margin-right: 10px;
    color: #e1261c;
}

.schedule-list p {
    margin-bottom: 10px;
    color: #333;
    line-height: 1.6;
    display: flex;
    align-items: center;
    font-size: 0.9em;
}

.schedule-list i,
.info-card p i {
    margin-right: 12px;
    color: #4f515a;
    width: 16px;
    flex-shrink: 0;
}

.info-card p {
    font-size: 0.9em;
}

/* Map Container */
.map-container {
    margin-top: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* Contact Page Mobile Responsive */
@media (max-width: 768px) {
    .contact-info-grid,
    .info-sections {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-card,
    .complaint-card,
    .info-card {
        padding: 20px;
    }
    
    .contact-description {
        padding: 20px;
    }
    
    .contact-description p {
        font-size: 1em;
        flex-direction: column;
        text-align: center;
    }
    
    .contact-description i {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

/* Footer */
.main-footer {
    background: linear-gradient(135deg, #4f515a 0%, #3a3c42 100%);
    color: #fff;
    padding: 50px 0 25px;
    margin-top: auto;
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #e1261c 0%, #ff4757 50%, #e1261c 100%);
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.footer-logo img {
    height: 55px;
    width: auto;
    filter: brightness(1.1);
}

.footer-nav {
    text-align: center;
    white-space: nowrap;
}

.footer-nav a {
    color: #e8e8e8;
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.9em;
    padding: 10px 15px;
    border-radius: 15px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    font-weight: 500;
}

.footer-nav a:hover {
    color: #fff;
    background: rgba(225, 38, 28, 0.2);
    transform: translateY(-2px);
}

.footer-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #e1261c;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.footer-nav a:hover::after {
    width: 80%;
}

.footer-contact {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-contact p {
    margin-bottom: 12px;
    color: #e8e8e8;
    font-size: 0.85em;
    line-height: 1.4;
    position: relative;
    padding-left: 25px;
}

.footer-contact p:first-child::before {
    content: '📍';
    position: absolute;
    left: 0;
    top: 0;
}

.footer-contact p:nth-child(2)::before {
    content: '📞';
    position: absolute;
    left: 0;
    top: 0;
}

.footer-contact p:last-child::before {
    content: '✉️';
    position: absolute;
    left: 0;
    top: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 35px;
    margin-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #e1261c 50%, transparent 100%);
    transform: translateX(-50%);
}

.footer-bottom p {
    margin: 0;
    color: #bbb;
    font-size: 0.85em;
    font-weight: 400;
}

/* Responsive */
@media (max-width: 768px) {
    .main-header {
        padding: 10px 0;
    }
    
    .header-logo img {
        height: 40px;
    }
    
    .inner-nav {
        margin: 15px 0;
    }
    
    .inner-nav a {
        margin: 5px;
        font-size: 0.8em;
        padding: 6px 12px;
    }
    
    .inner-nav .dropdown {
        padding: 8px 0;
    }
    
    .inner-nav .dropdown-toggle {
        margin: 5px;
        font-size: 0.8em;
        padding: 6px 12px;
    }
    
    .dropdown-menu {
        min-width: 200px;
        position: absolute;
        z-index: 1000;
        left: 50%;
        top: calc(100% - 2px);
        transform: translateX(-50%) translateY(-10px);
    }
    
    .inner-nav .dropdown:hover .dropdown-menu {
        transform: translateX(-50%) translateY(0);
    }
    
    .languages {
        text-align: center;
        margin-top: 10px;
    }
    
    .page-header {
        padding: 30px 20px;
    }
    
    .page-title {
        font-size: 1.8em;
    }
    
    .page-content {
        padding: 30px 20px;
    }
    
    .certificates-grid .row {
        margin-bottom: 20px;
    }
    
    .certificate-item {
        margin-bottom: 20px;
    }
    
    .footer-nav {
        margin: 25px 0;
        white-space: normal;
    }
    
    .footer-nav a {
        display: inline-block;
        margin: 5px 8px;
        font-size: 0.8em;
        padding: 6px 10px;
    }
    
    .footer-contact {
        text-align: center;
        margin-top: 25px;
        align-items: center;
    }
    
    .footer-contact p {
        text-align: center;
        padding-left: 0;
        margin-bottom: 15px;
        position: relative;
    }
    
    .footer-contact p::before {
        left: 50%;
        transform: translateX(-50%);
        top: 0;
    }
    
    .about-message, 
    .contact-info, 
    .certificate-item {
        padding: 25px;
    }
    
    .about-image {
        margin: 30px 0;
    }
} 