/* Hero Section */
    .contact-hero {
        padding: 9rem 0 3rem;
        background: #1E73BE;
        color: #ffffff;
        position: relative;
        overflow: hidden;
    }

    .contact-hero-bg {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, #1E73BE 0%, #155a94 100%);
    }

    .contact-hero-bg::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 40%;
        height: 100%;
        background: rgba(255, 255, 255, 0.05);
        clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
    }

    .contact-hero-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
        position: relative;
        z-index: 1;
        text-align: center;
    }

    .contact-breadcrumb {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 2rem;
        font-size: 0.9rem;
        background: rgba(255, 255, 255, 0.1);
        padding: 0.5rem 1rem;
        backdrop-filter: blur(10px);
    }

    .contact-breadcrumb a {
        color: rgba(255, 255, 255, 0.9);
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .contact-breadcrumb a:hover {
        color: #ffffff;
    }

    .contact-breadcrumb i {
        font-size: 0.7rem;
        color: rgba(255, 255, 255, 0.6);
    }

    .contact-breadcrumb span {
        color: #ffffff;
        font-weight: 500;
    }

    .contact-hero-title {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .contact-hero-description {
        font-size: 1.15rem;
        line-height: 1.7;
        margin-bottom: 2rem;
        opacity: 0.95;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .contact-hero-cta {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        padding: 1rem 2rem;
        font-weight: 600;
        font-size: 1rem;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .hero-btn-primary {
        background: #ffffff;
        color: #1E73BE;
        border: 2px solid #ffffff;
    }

    .hero-btn-primary:hover {
        background: transparent;
        color: #ffffff;
    }

    .hero-btn-secondary {
        background: transparent;
        color: #ffffff;
        border: 2px solid #ffffff;
    }

    .hero-btn-secondary:hover {
        background: #ffffff;
        color: #1E73BE;
    }

    /* Main Contact Section */
    .contact-main {
        padding: 5rem 0;
        background: #ffffff;
    }

    .contact-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    .contact-content {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 4rem;
    }

    .content-subtitle {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .subtitle-line {
        width: 50px;
        height: 2px;
        background: #1E73BE;
    }

    .content-subtitle span {
        font-size: 0.875rem;
        font-weight: 600;
        color: #1E73BE;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    .content-title {
        font-size: 2.2rem;
        font-weight: 700;
        color: #000000;
        line-height: 1.3;
        margin-bottom: 1.5rem;
    }

    .content-paragraph {
        font-size: 1rem;
        line-height: 1.8;
        color: #666666;
        margin-bottom: 2rem;
    }

    /* Contact Form */
    .contact-form {
        margin-top: 2rem;
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .form-group {
        display: flex;
        flex-direction: column;
        margin-bottom: 1.5rem;
    }

    .form-group label {
        font-size: 0.95rem;
        font-weight: 600;
        color: #333333;
        margin-bottom: 0.5rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.875rem;
        font-size: 1rem;
        border: 2px solid #e8e8e8;
        background: #ffffff;
        color: #333333;
        transition: all 0.3s ease;
        font-family: inherit;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: #1E73BE;
    }

    .form-group textarea {
        resize: vertical;
        min-height: 120px;
    }

    .checkbox-group {
        flex-direction: row;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .checkbox-group input[type="checkbox"] {
        width: 20px;
        height: 20px;
        margin-top: 2px;
        flex-shrink: 0;
    }

    .checkbox-group label {
        font-size: 0.875rem;
        font-weight: 400;
        margin-bottom: 0;
    }

    .checkbox-group label a {
        color: #1E73BE;
        text-decoration: underline;
    }

    .form-submit-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        padding: 1rem 2.5rem;
        background: #1E73BE;
        color: #ffffff;
        border: 2px solid #1E73BE;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .form-submit-btn:hover {
        background: #155a94;
        border-color: #155a94;
    }

    /* Contact Info Sidebar */
    .info-box {
        background: #ffffff;
        padding: 2rem;
        margin-bottom: 2rem;
        border: 1px solid #e8e8e8;
    }

    .info-box h3 {
        font-size: 1.3rem;
        font-weight: 700;
        color: #000000;
        margin-bottom: 2rem;
    }

    .info-box h4 {
        font-size: 1rem;
        font-weight: 700;
        color: #000000;
        margin-bottom: 0.5rem;
    }

    .info-item {
        display: flex;
        gap: 1.25rem;
        padding: 1.5rem 0;
        border-bottom: 1px solid #e8e8e8;
    }

    .info-item:last-child {
        border-bottom: none;
    }

    .info-icon {
        width: 50px;
        height: 50px;
        background: #1E73BE;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .info-icon i {
        color: #ffffff;
        font-size: 1.25rem;
    }

    .info-content {
        flex: 1;
    }

    .info-content a {
        color: #1E73BE;
        text-decoration: none;
        font-weight: 600;
        display: block;
        margin-bottom: 0.25rem;
    }

    .info-content a:hover {
        text-decoration: underline;
    }

    .info-content p {
        font-size: 0.875rem;
        color: #666666;
        line-height: 1.6;
        margin: 0;
    }

    .highlight-box {
        background: linear-gradient(135deg, #1E73BE 0%, #155a94 100%);
        color: #ffffff;
        border: none;
        text-align: center;
    }

    .highlight-box i.fas.fa-headset {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        opacity: 0.9;
    }

    .highlight-box h4 {
        color: #ffffff;
    }

    .highlight-box p {
        color: rgba(255, 255, 255, 0.9);
    }

    .emergency-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        width: 100%;
        padding: 1rem;
        background: #ffffff;
        color: #1E73BE;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        border: 2px solid #ffffff;
        margin-top: 1rem;
    }

    .emergency-btn:hover {
        background: transparent;
        color: #ffffff;
    }

    .social-box h4 {
        margin-bottom: 1rem;
    }

    .social-links {
        display: flex;
        gap: 1rem;
    }

    .social-links a {
        width: 40px;
        height: 40px;
        background: #f8f9fa;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #1E73BE;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .social-links a:hover {
        background: #1E73BE;
        color: #ffffff;
    }

    /* Map Section */
    .contact-map-section {
        background: #f8f9fa;
    }

    .map-container {
        width: 100%;
        height: 450px;
    }

    .map-container iframe {
        width: 100%;
        height: 100%;
        display: block;
    }

    /* FAQ Section */
    .contact-faq {
        padding: 5rem 0;
        background: #ffffff;
    }

    .faq-header {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 4rem;
    }

    .faq-list {
        max-width: 900px;
        margin: 0 auto;
    }

    .faq-item {
        background: #f8f9fa;
        margin-bottom: 1rem;
        border: 1px solid #e8e8e8;
    }

    .faq-question {
        padding: 1.5rem 2rem;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: all 0.3s ease;
    }

    .faq-question:hover {
        background: #ffffff;
    }

    .faq-question h4 {
        font-size: 1.1rem;
        font-weight: 600;
        color: #000000;
        margin: 0;
    }

    .faq-question i {
        color: #1E73BE;
        transition: transform 0.3s ease;
    }

    .faq-answer {
        padding: 0 2rem 1.5rem;
        display: none;
    }

    .faq-answer p {
        font-size: 0.95rem;
        color: #666666;
        line-height: 1.7;
        margin: 0;
    }

    .faq-item.active .faq-answer {
        display: block;
    }

    .faq-item.active .faq-question i {
        transform: rotate(180deg);
    }

    /* Responsive */
    @media screen and (max-width: 968px) {
        .contact-hero {
            padding: 9rem 0 2rem;
        }

        .contact-hero-title {
            font-size: 2.5rem;
        }

        .hero-content-wrapper {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .hero-image-content {
            order: -1;
        }

        .contact-content {
            grid-template-columns: 1fr;
            gap: 3rem;
        }

        .form-row {
            grid-template-columns: 1fr;
        }

        .contact-hero-cta {
            flex-direction: column;
        }

        .hero-btn-primary,
        .hero-btn-secondary {
            width: 100%;
            justify-content: center;
        }
    }

    @media screen and (max-width: 768px) {
        .contact-hero {
            padding: 7rem 0 1.5rem;
        }

        .contact-hero-title {
            font-size: 2rem;
        }

        .content-title {
            font-size: 1.8rem;
        }

        .map-container {
            height: 350px;
        }
    }