/* ===== PAGE CONFIGURATION ===== */
    :root {
        /* Header Configuration */
        --header-height: 80px;
        --header-height-mobile: 60px;

        /* Hero Configuration */
        --hero-padding-top: 180px;
        --hero-min-height: 60vh;
        --hero-margin-top: 0px;

        /* Mobile Configuration */
        --hero-padding-top-mobile: 120px;
        --hero-min-height-mobile: 50vh;
    }

/* Hero Section */
    #custom-container-contact .contact-hero {
        position: relative;
        min-height: var(--hero-min-height);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: var(--hero-padding-top) 2rem 4rem;
        margin-top: var(--hero-margin-top);
        overflow: hidden;
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    }

    #custom-container-contact .hero-background {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 0;
    }

    #custom-container-contact .animated-gradient {
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, rgba(255, 107, 53, 0.1), rgba(255, 107, 53, 0.05), transparent);
    }

    #custom-container-contact .hero-content {
        position: relative;
        z-index: 1;
        text-align: center;
        max-width: 800px;
        margin: 0 auto;
    }

    #custom-container-contact .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: rgba(255, 107, 53, 0.2);
        color: #ff6b35;
        padding: 0.5rem 1rem;
        border-radius: 2rem;
        font-size: 0.9rem;
        font-weight: 600;
        margin-bottom: 1.5rem;
        border: 1px solid rgba(255, 107, 53, 0.3);
    }

    #custom-container-contact .contact-hero h1 {
        font-family: var(--font-heading);
        font-size: 3rem;
        font-weight: 800;
        color: white;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }

    #custom-container-contact .contact-hero p {
        font-size: 1.25rem;
        color: white !important;
        opacity: 1 !important;
        line-height: 1.6;
        margin-bottom: 2rem;
    }

    #custom-container-contact .hero-highlight {
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        background: rgba(255, 255, 255, 0.1);
        padding: 1rem 1.5rem;
        border-radius: 0.5rem;
        color: white;
        font-size: 1.1rem;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    #custom-container-contact .hero-highlight i {
        color: #ff6b35;
        font-size: 1.5rem;
    }

    #custom-container-contact .hero-highlight strong {
        color: #ff6b35;
        font-size: 1.3rem;
    }

    /* Contact Section */
    #custom-container-contact .contact-section {
        padding: 5rem 0;
        background: #f8f9fa;
    }

    #custom-container-contact .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    /* Contact Info */
    #custom-container-contact .contact-info {
        background: white;
        padding: 2.5rem;
        border-radius: 1rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    }

    #custom-container-contact .contact-info h2 {
        font-family: var(--font-heading);
        font-size: 2rem;
        color: #1a1a2e;
        margin-bottom: 1rem;
    }

    #custom-container-contact .contact-info > p {
        font-size: 1.1rem;
        color: #6c757d;
        margin-bottom: 2.5rem;
        line-height: 1.6;
    }

    #custom-container-contact .contact-details {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    #custom-container-contact .contact-item {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    #custom-container-contact .contact-icon {
        width: 48px;
        height: 48px;
        background: linear-gradient(135deg, #ff6b35, #ff5520);
        border-radius: 0.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.2rem;
        flex-shrink: 0;
    }

    #custom-container-contact .contact-text {
        flex: 1;
        color: #6c757d;
        font-size: 0.95rem;
        line-height: 1.5;
    }

    #custom-container-contact .contact-text strong {
        font-weight: 600;
        color: #1a1a2e;
        margin-right: 0.5rem;
    }

    #custom-container-contact .contact-text a {
        color: #6c757d;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    #custom-container-contact .contact-text a:hover {
        color: #ff6b35;
    }

    /* Contact Form */
    #custom-container-contact .contact-form-wrapper {
        background: white;
        padding: 2.5rem;
        border-radius: 1rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    }

    #custom-container-contact .contact-form-wrapper h2 {
        font-family: var(--font-heading);
        font-size: 2rem;
        color: #1a1a2e;
        margin-bottom: 1.5rem;
    }

    #custom-container-contact .contact-form {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
    }

    #custom-container-contact .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem;
    }

    #custom-container-contact .form-group {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    #custom-container-contact .form-group label {
        font-weight: 600;
        color: #1a1a2e;
        font-size: 0.875rem;
    }

    #custom-container-contact .required {
        color: #ef4444;
        margin-left: 2px;
    }

    #custom-container-contact .form-group input,
    #custom-container-contact .form-group textarea,
    #custom-container-contact .form-group select {
        padding: 0.75rem;
        border: 1px solid #e9ecef;
        border-radius: 0.5rem;
        font-size: 0.95rem;
        transition: all 0.3s ease;
        background-color: #f8fafc;
        color: #1a1a2e;
    }

    #custom-container-contact .form-group input:focus,
    #custom-container-contact .form-group textarea:focus,
    #custom-container-contact .form-group select:focus {
        outline: none;
        border-color: #ff6b35;
        box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.2);
        background-color: white;
    }

    #custom-container-contact .form-group textarea {
        min-height: 120px;
        resize: vertical;
    }

    #custom-container-contact .form-error {
        display: none;
        color: #ef4444;
        font-size: 0.75rem;
        margin-top: 0.25rem;
    }

    #custom-container-contact .form-checkbox {
        display: flex;
        align-items: flex-start;
        gap: 0.5rem;
        margin: 0.5rem 0 1.5rem 0;
    }

    #custom-container-contact .form-checkbox input[type="checkbox"] {
        margin-top: 3px;
        width: 16px;
        height: 16px;
        cursor: pointer;
        accent-color: #ff6b35;
    }

    #custom-container-contact .form-checkbox label {
        font-size: 0.875rem;
        color: #6c757d;
        cursor: pointer;
        line-height: 1.4;
    }

    #custom-container-contact .btn-large {
        padding: 1rem 2.5rem;
        font-size: 1.1rem;
    }

    #custom-container-contact .form-note {
        text-align: center;
        font-size: 0.75rem;
        color: #9ca3af;
        margin-top: 1rem;
    }

    /* Map Section */
    #custom-container-contact .map-section {
        height: 400px;
        position: relative;
        overflow: hidden;
    }

    #custom-container-contact .map-section iframe {
        width: 100%;
        height: 100%;
        border: 0;
        filter: grayscale(20%);
        transition: filter 0.3s ease;
    }

    #custom-container-contact .map-section:hover iframe {
        filter: grayscale(0%);
    }

    /* CTA Section */
    #custom-container-contact .contact-cta {
        padding: 5rem 0;
        background: linear-gradient(135deg, #ff6b35 0%, #ff5520 100%);
    }

    #custom-container-contact .cta-content {
        text-align: center;
        max-width: 700px;
        margin: 0 auto;
    }

    #custom-container-contact .cta-content h2 {
        font-family: var(--font-heading);
        font-size: 2.5rem;
        color: white !important;
        margin-bottom: 1rem;
    }

    #custom-container-contact .cta-content p {
        font-size: 1.2rem;
        color: white !important;
        margin-bottom: 2rem;
    }

    #custom-container-contact .cta-buttons {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    #custom-container-contact .btn {
        padding: 0.75rem 2rem;
        border-radius: 0.5rem;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        display: inline-block;
    }

    #custom-container-contact .btn-primary {
        background: white;
        color: #ff6b35;
    }

    #custom-container-contact .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

    #custom-container-contact .btn-secondary {
        background: transparent;
        color: white;
        border: 2px solid white;
    }

    #custom-container-contact .btn-secondary:hover {
        background: white;
        color: #ff6b35;
    }

    /* Responsive */
    @media (max-width: 768px) {
        #custom-container-contact .contact-hero {
            padding-top: var(--hero-padding-top-mobile);
            min-height: var(--hero-min-height-mobile);
        }

        #custom-container-contact .contact-hero h1 {
            font-size: 2rem;
        }

        #custom-container-contact .contact-hero p {
            font-size: 1rem;
        }

        #custom-container-contact .contact-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        #custom-container-contact .form-row {
            grid-template-columns: 1fr;
        }

        #custom-container-contact .contact-info,
        #custom-container-contact .contact-form-wrapper {
            padding: 1.5rem;
        }

        #custom-container-contact .cta-buttons {
            flex-direction: column;
            align-items: center;
        }

        #custom-container-contact .cta-buttons .btn {
            width: 100%;
            max-width: 300px;
        }
    }
