﻿.contact-hero {
    background: linear-gradient(135deg, #fa8c16 0%, #ff6b35 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-section {
    padding: 80px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.info-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

    .info-item:hover {
        transform: translateY(-3px);
    }

.info-icon {
    width: 50px;
    height: 50px;
    background: #fa8c16;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
}

    .info-icon i {
        display: inline-block;
        font-style: normal;
        font-variant: normal;
        text-rendering: auto;
        -webkit-font-smoothing: antialiased;
    }

.department-icon i {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}

.department-icon .fa {
    font-family: 'FontAwesome' !important;
    font-weight: normal;
    font-style: normal;
}

.department-icon .fa-headphones::before {
    content: "\f025";
}

.department-icon .fa-credit-card::before {
    content: "\f09d";
}

.department-icon .fa-handshake-o::before {
    content: "\f2b5";
}

.department-icon .fa-briefcase::before {
    content: "\f0b1";
}

.department-icon .fa-newspaper-o::before {
    content: "\f1ea";
}

.department-icon .fa-users::before {
    content: "\f0c0";
}

.info-content h4 {
    margin: 0 0 8px 0;
    color: #333;
    font-weight: 600;
}

.info-content p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

.info-content a {
    color: #fa8c16;
    text-decoration: none;
    font-weight: 500;
}

    .info-content a:hover {
        text-decoration: underline;
    }

.departments-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.departments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.department-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

    .department-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }

.department-icon {
    width: 80px;
    height: 80px;
    background: #fa8c16;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

    .department-icon i {
        display: inline-block;
        font-style: normal;
        font-variant: normal;
        text-rendering: auto;
        -webkit-font-smoothing: antialiased;
    }

    .department-icon .fa {
        font-family: 'FontAwesome' !important;
        font-weight: normal;
        font-style: normal;
    }

.department-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.department-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.department-email {
    color: #fa8c16;
    font-weight: 600;
    text-decoration: none;
}

    .department-email:hover {
        text-decoration: underline;
    }

/* Ticket Section */
.ticket-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4edf9 100%);
}

.ticket-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.ticket-info {
    margin: 30px 0;
    text-align: left;
}

.ticket-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

    .ticket-features li {
        padding: 10px 0;
        color: #666;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .ticket-features .el-icon-check {
        color: #52c41a;
    }

.ticket-btn {
    display: inline-block;
    background: #fa8c16;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px 40px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(250, 140, 22, 0.3);
}

    .ticket-btn:hover {
        background: #e67d0e;
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(250, 140, 22, 0.4);
        color: white;
        text-decoration: none;
    }

/* Map Section */
.map-section {
    padding: 0;
}

.map-container {
    width: 100%;
    height: 450px;
    position: relative;
}

    .map-container iframe {
        width: 100%;
        height: 100%;
        border: 0;
    }

.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background: #f8f9fa;
    border: none;
    width: 100%;
    text-align: left;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

    .faq-question:hover {
        background: #e9ecef;
    }

.faq-answer {
    padding: 0 20px 20px;
    color: #666;
    line-height: 1.6;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fa8c16 0%, #ff6b35 100%);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    background: white;
    color: #fa8c16;
    border: none;
    border-radius: 8px;
    padding: 15px 30px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

    .cta-btn:hover {
        background: #f8f9fa;
        transform: translateY(-2px);
        color: #fa8c16;
        text-decoration: none;
    }

    .cta-btn.secondary {
        background: transparent;
        color: white;
        border: 2px solid white;
    }

        .cta-btn.secondary:hover {
            background: white;
            color: #fa8c16;
        }

@media (max-width: 1200px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2.5rem;
    }

    .contact-hero p {
        font-size: 1.1rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    .departments-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}
