/* contact.css - Contact page specific styles */

/* Contact Hero */
.contact-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
                url('../images/event1.jpg') center/cover no-repeat;
    color: var(--white);
    padding: 8rem 0 6rem;
    text-align: center;
    margin-top: 70px;
}

.contact-hero h1 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 3.2rem;
}

.contact-hero p {
    font-size: 1.2rem;
    color: #f0f0f0;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Contact Information */
.contact-info-section {
    padding: var(--section-padding);
    background-color: var(--white);
}

.contact-info-section h2 {
    text-align: center;
    color: var(--primary-black);
    margin-bottom: 3rem;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.contact-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    border-top: 4px solid var(--primary-gold);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    height: 70px;
    width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
}

.contact-card h3 {
    color: var(--primary-black);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.contact-details {
    text-align: left;
    margin-bottom: 1.5rem;
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
}

.contact-details p {
    margin-bottom: 0.8rem;
    color: #555;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.contact-details p:last-child {
    margin-bottom: 0;
}

.contact-details strong {
    color: #333;
    min-width: 80px;
}

/* Contact Form */
.contact-form-section {
    padding: var(--section-padding);
    background-color: #f9f9f9;
}

.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.form-intro h2 {
    color: var(--primary-black);
    margin-bottom: 1rem;
}

.form-intro p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: flex;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.checkbox-group input {
    margin-top: 0.3rem;
    flex-shrink: 0;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: #555;
}

.checkbox-group label a {
    color: var(--primary-gold);
    text-decoration: none;
}

.checkbox-group label a:hover {
    text-decoration: underline;
}

/* Location Section */
.location-section {
    padding: var(--section-padding);
    background-color: var(--white);
}

.location-section h2 {
    text-align: center;
    color: var(--primary-black);
    margin-bottom: 3rem;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.address-card {
    background: #f9f9f9;
    padding: 2.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-gold);
}

.address-card h3 {
    color: var(--primary-black);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.address-details {
    margin-bottom: 2rem;
}

.address-details p {
    margin-bottom: 1rem;
    color: #555;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.address-details p i {
    color: var(--primary-gold);
    font-size: 1.1rem;
    min-width: 20px;
    margin-top: 0.2rem;
}

.address-details strong {
    color: #333;
    min-width: 80px;
}

.location-features h4 {
    color: var(--primary-black);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.location-features ul {
    list-style: none;
}

.location-features li {
    padding: 0.5rem 0;
    color: #555;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 1.5rem;
}

.location-features li:before {
    content: '✓';
    color: var(--primary-gold);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.location-map {
    height: 500px;
    background: linear-gradient(45deg, #f5f5f5, #eee);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    text-align: center;
    color: #666;
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    opacity: 0.7;
}

.map-placeholder p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.map-actions {
    margin-top: 1.5rem;
}

/* Careers Section */
.careers-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--primary-black) 0%, #222 100%);
    color: var(--white);
}

.careers-section h2 {
    color: var(--white);
    text-align: center;
    margin-bottom: 3rem;
}

.careers-content {
    max-width: 1000px;
    margin: 0 auto;
}

.careers-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.careers-intro p {
    color: #f0f0f0;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.vacancies h3 {
    color: var(--white);
    margin-bottom: 2rem;
    font-size: 1.8rem;
    text-align: center;
}

.vacancy-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.vacancy-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.vacancy-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
}

.vacancy-item h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.vacancy-item p {
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    font-size: 0.95rem;
}

.application-info {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.application-info h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.application-info p {
    color: #f0f0f0;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.application-email {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
    font-size: 1.2rem;
}

.application-email i {
    color: var(--primary-gold);
    font-size: 1.5rem;
}

.application-email span {
    color: var(--white);
    font-weight: 600;
}

.application-note {
    color: #aaa;
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 1.5rem;
}

/* Social Section */
.social-section {
    padding: var(--section-padding);
    background-color: var(--white);
}

.social-section h2 {
    text-align: center;
    color: var(--primary-black);
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.social-card {
    display: block;
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid;
}

.social-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.social-card.facebook {
    border-color: #1877F2;
}

.social-card.instagram {
    border-color: #E4405F;
}

.social-card.linkedin {
    border-color: #0A66C2;
}

.social-card.twitter {
    border-color: #1DA1F2;
}

.social-card i {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.social-card.facebook i {
    color: #1877F2;
}

.social-card.instagram i {
    color: #E4405F;
}

.social-card.linkedin i {
    color: #0A66C2;
}

.social-card.twitter i {
    color: #1DA1F2;
}

.social-card h3 {
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.social-card p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.social-handle {
    color: #333;
    font-weight: 600;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    padding: var(--section-padding);
    background-color: #f9f9f9;
}

.faq-section h2 {
    text-align: center;
    color: var(--primary-black);
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.faq-category h3 {
    color: var(--primary-black);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-gold);
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    background: var(--white);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    text-align: left;
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f9f9f9;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-gold);
    font-weight: 400;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1200px) {
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    .vacancy-list {
        grid-template-columns: 1fr;
    }
    
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .location-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-hero h1 {
        font-size: 2.5rem;
    }
}