/* Contact Page Specific Styles */
.contact-page body {
    background: #f5f5f5 !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.contact-page .page-header {
    display: none;
}
#contact-subject-input {
    border: 1px solid #e2e8f0;
    color: #8c8585;
    font-size: 14px !important;
}
.contact-page .contact-container {
    padding: 2rem 0 0 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: #F2F2F2;
}

.contact-page .contact-wrapper {
    border-radius: 12px;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

/* Social and Hours Section */
.bottom-section {
    padding: 2rem;
    margin: 2rem auto 0 auto;
    border-radius: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    width: 100%;
    max-width: 1200px;
    margin-bottom: 50px;
}

.contact-page .social-section, 
.contact-page .hours-section {
    display: flex;
    flex-direction: column;
}

.contact-page .section-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-page .section-icon {
    width: 36px;
    height: 36px;
    margin-right: 0.75rem;
    background: #a3d7c9;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-page .section-title {
    font-size: 1.1rem;
    font-weight: 500;
    color: #2d3748;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.contact-page .social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5em;
}

.contact-page .social-link {
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    font-size: 1.3rem;
    padding: 8px;
}

.contact-page .social-link:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(81, 128, 78, 0.3);
    text-decoration: none;
}

.contact-page .hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-page .hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.contact-page .hours-item:last-child {
    border-bottom: none;
}

.contact-page .hours-day {
    font-weight: 500;
    color: #333;
}

.contact-page .hours-time {
    color: #A3D7C9;
    font-weight: 500;
}

.contact-page .hours-closed {
    color: #e74c3c;
}

/* Global Offices Section */
.global-offices {
    margin-bottom: 30px;
}

.office-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.office-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    color: #2c3e50;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.office-link:hover {
    background: #A3D7C9;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(81, 128, 78, 0.2);
}

.office-flag {
    font-size: 20px;
    flex-shrink: 0;
}

.office-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.office-name {
    font-weight: 600;
    font-size: 14px;
}

.office-domain {
    font-size: 12px;
    color: #6c757d;
    font-weight: 400;
}

.office-link:hover .office-domain {
    color: rgba(255, 255, 255, 0.8);
}

/* Working Hours Section */
.hours-section {
    margin-bottom: 30px;
}

/* Hours Section Inside Contact Form Panel */
.hours-section-form {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
}

.hours-section-form .section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.hours-section-form .section-title {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.hours-section-form .section-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: #A3D7C9;
    border-radius: 50%;
    padding: 6px;
}

.hours-section-form .section-icon svg {
    stroke: white;
}

.hours-section-form .hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hours-section-form .hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.hours-section-form .hours-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.hours-section-form .hours-day {
    font-weight: 600;
    color: #2c3e50;
    font-size: 14px;
}

.hours-section-form .hours-time {
    color: #A3D7C9;
    font-weight: 600;
    font-size: 14px;
}

.hours-section-form .hours-closed {
    color: #e74c3c;
    font-weight: 600;
}

@media (max-width: 768px) {
    .hours-section-form {
        margin-top: 30px;
        padding-top: 25px;
    }
    
    .hours-section-form .section-title {
        font-size: 18px;
    }
    
    .hours-section-form .section-icon {
        width: 30px;
        height: 30px;
    }
    
    .hours-section-form .hours-item {
        padding: 10px 15px;
    }
    
    .hours-section-form .hours-day, 
    .hours-section-form .hours-time {
        font-size: 13px;
    }
}

/* Left Panel - Contact Info */
.contact-page .contact-info {
    padding: 0rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.contact-page .contact-title {
    font-size: 2rem;
    font-weight: 500;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.contact-page .contact-subtitle {
    color: #718096;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.contact-page .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.3rem;
    padding: 1rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.contact-page .contact-item:last-child {
    margin-bottom: 0;
}

.contact-page .contact-icon {
    width: 20px;
    height: 20px;
    margin-right: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-page .contact-details h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2d3748;
    margin: 0 0 0.25rem 0;
}

.contact-page .contact-details p {
    font-size: 0.85rem;
    color: #718096;
    margin: 0;
    line-height: 1.4;
}

.contact-page .contact-details a {
    color: #4a5568;
    text-decoration: none;
}

.contact-page .contact-details a:hover {
    color: #2d3748;
    text-decoration: underline;
}

/* Right Panel - Form */
.contact-page .contact-form-panel {
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: white;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.section-icon {
    border-radius: 7px;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    background: var(--Green-light-300, #DDF9D4);
}
.contact-page .form-group {
    margin-bottom: 1.25rem;
}

.contact-page .form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: #4a5568;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.contact-page .form-input,
.contact-page .form-select,
.contact-page .form-textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #bebebe !important;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: border-color 0.2s ease;
    background: white;
    box-sizing: border-box;
    font-family: inherit;
}

#contact-subject-input {
    border: 1px solid #bebebe;
}

.contact-page .form-input:focus, 
.contact-page .form-select:focus, 
.contact-page .form-textarea:focus {
    outline: none;
    border-color: #81c784;
    box-shadow: 0 0 0 3px rgba(129, 199, 132, 0.1);
}

.contact-page .form-input::placeholder, 
.contact-page .form-textarea::placeholder {
    color: #a0aec0;
    font-size: 0.9rem;
}

.contact-page .form-textarea {
    min-height: 100px;
    resize: vertical;
}

.contact-page .btn-submit {
    background: #53565a;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 0.875rem 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    margin-top: 1rem;
}

    .contact-page .btn-submit:hover {
        background: #53565a;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(129, 199, 132, 0.3);
    }

.contact-page .invalid-message {
    color: #e53e3e;
    font-size: 0.75rem;
    margin-top: 0.25rem;
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-page .contact-wrapper {
        grid-template-columns: 1fr;
        margin: 1rem;
    }

 .contact-form-panel {
        margin-top: 20px;
        padding: 20px;
    }
    .contact-page .contact-info {
        padding: 0rem 0px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }
    .contact-page .contact-title {
        font-size: 1.5rem;
    }

    .contact-page .bottom-section {
        margin-top: 20px;
        padding-top: 3rem;
        padding: 2rem 1rem;
    }
    .contact-form-panel {
        margin-top: 0px;
        padding-top: 3rem;
        padding: 20px !important;
    }
    .contact-page .contact-container {
        padding: 5px 0 0 0;
    }
    .contact-page .contact-item {
        display: flex;
        margin-bottom: 1.3rem;
        padding: 15px;
        background: white;
        border-radius: 16px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
        min-height: 90px;
        align-items: center;
    }

}
