/* Contact Hero Section */
    .contact-hero {
        padding: 10rem 2rem 4rem;
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
    }

    .contact-hero h1 {
        font-size: 3.2rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
    }

    .contact-hero span.highlight {
        color: #17ef97;
    }

    .contact-hero p {
        font-size: 1.2rem;
        max-width: 800px;
        margin: 0 auto 2rem;
        color: #f0f0f0;
    }

    /* Contact Options Section */
    .contact-options {
        padding: 2rem 2rem 4rem;
        max-width: 1200px;
        margin: 0 auto;
    }

    .options-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .option-card {
        background: linear-gradient(145deg, #111 0%, #0a0a0a 100%);
        border-radius: 16px;
        padding: 2rem;
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border: 1px solid #222;
    }

    .option-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 20px rgba(23, 239, 151, 0.1);
        border-color: #17ef97;
    }

    .option-icon {
        background: rgba(23, 239, 151, 0.1);
        width: 80px;
        height: 80px;
        margin: 0 auto 1.5rem;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .option-icon img {
        width: 40px;
        height: 40px;
    }

    .option-card h3 {
        margin-bottom: 1rem;
        font-size: 1.5rem;
    }

    .option-card p, .option-card a {
        margin-bottom: 0.8rem;
        color: #ccc;
    }

    .option-card a {
        display: block;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .option-card a:hover {
        color: #17ef97;
    }

    /* Contact Form Section */
    .contact-form-section {
        padding: 4rem 2rem;
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        gap: 3rem;
    }

    .form-content {
        flex: 1;
    }

    .form-content h2 {
        font-size: 2.4rem;
        margin-bottom: 1.5rem;
    }

    .form-content p {
        margin-bottom: 2rem;
        color: #f0f0f0;
    }

    .contact-form {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .form-group {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .form-group label {
        font-weight: 600;
    }

    .form-group input, .form-group textarea, .form-group select {
        padding: 1rem;
        border-radius: 8px;
        border: 1px solid #333;
        background: rgba(255, 255, 255, 0.05);
        color: #fff;
        font-size: 1rem;
        transition: border-color 0.3s ease;
    }

    .form-group input:focus, .form-group textarea:focus, .form-group select:focus {
        outline: none;
        border-color: #17ef97;
    }

    .form-group textarea {
        min-height: 150px;
        resize: vertical;
    }

    .form-submit {
        display: inline-block;
        padding: 1rem 2rem;
        background: #17ef97;
        color: #000;
        border: none;
        border-radius: 25px;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        transition: transform 0.3s ease;
        margin-top: 1rem;
        text-align: center;
    }

    .form-submit:hover {
        transform: scale(1.05);
    }

    .form-image {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .form-image img {
        max-width: 100%;
        height: auto;
        border-radius: 15px;
    }

    /* Map Section */
    .map-section {
        padding: 2rem;
        max-width: 1200px;
        margin: 0 auto 4rem;
    }

    .map-container {
        height: 400px;
        border-radius: 16px;
        overflow: hidden;
        position: relative;
    }

    .map-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10;
    }

    .map-card {
        background: rgba(0, 0, 0, 0.8);
        border-radius: 16px;
        padding: 2rem;
        max-width: 400px;
        backdrop-filter: blur(10px);
        border: 1px solid #333;
    }

    .map-card h3 {
        color: #17ef97;
        margin-bottom: 1rem;
    }

    .map-card p {
        margin-bottom: 1rem;
    }

    .map-card a {
        display: inline-block;
        padding: 0.8rem 1.5rem;
        background: #17ef97;
        color: #000;
        text-decoration: none;
        border-radius: 25px;
        font-weight: 600;
        margin-top: 1rem;
        transition: transform 0.3s ease;
    }

    .map-card a:hover {
        transform: scale(1.05);
    }

    /* FAQ Section */
    .faq-section {
        padding: 4rem 2rem;
        max-width: 800px;
        margin: 0 auto;
    }

    .faq-section h2 {
        text-align: center;
        font-size: 2.4rem;
        margin-bottom: 3rem;
    }

    .faq-item {
        margin-bottom: 1.5rem;
        background: #111;
        border-radius: 12px;
        padding: 1.5rem;
        transition: transform 0.3s ease;
    }

    .faq-item:hover {
        transform: translateY(-5px);
    }

    .faq-question {
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 1rem;
        color: #17ef97;
    }

    .faq-answer {
        color: #e0e0e0;
    }

    /* Mobile Responsive */
    @media (max-width: 992px) {
        .options-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .contact-form-section {
            flex-direction: column;
        }

        .form-image {
            order: -1;
        }
    }
    
    @media (max-width: 768px) {
        .options-grid {
            grid-template-columns: 1fr;
        }
    }