.page-main-content {
    padding-top: 0;
}

.enquiry-page-container {
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
    min-height: calc(100vh - 60px);
    position: relative;
    overflow: hidden;
}

.enquiry-image-section {
    background-image: url('/files/imgs/common/gigaflops_background.png');
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.enquiry-form-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
    z-index: 2;
    width: 900px;
    max-width: 90vw;
    background-color: rgba(31, 41, 55, 0.5);
    backdrop-filter: blur(8px);
    border-left: 1px solid rgba(55, 65, 81, 0.5);
    animation: slideInFromRight 1.0s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.enquiry-form-wrapper {
    width: 100%;
    max-width: 500px;
    position: relative;
    z-index: 2;
    padding: 2.5rem;
}

@keyframes slideInFromRight {
    from {
        transform: translateX(100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.enquiry-form-wrapper .contact-header {
    text-align: left;
    margin-bottom: 1.5rem;
}

.enquiry-form-wrapper .contact-title {
    font-size: 2.5rem;
}

.enquiry-form-wrapper .contact-subtitle {
    font-size: 1.1rem;
}

.contact-form-group {
    margin-bottom: 1rem;
}

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

.form-row-grid .contact-form-group {
    margin-bottom: 0;
}

.contact-form-footer {
    margin-top: 1.5rem;
}

.fab-container {
    display: none;
}

@media (max-width: 900px) {
    .enquiry-page-container {
        justify-content: center;
    }

    .enquiry-image-section::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1;
    }

    .enquiry-form-section {
        width: 100%;
        max-width: 100%;
        min-width: auto;
        border-left: none;
        padding: 3rem 1.5rem;
    }

    .enquiry-form-wrapper {
        z-index: 3;
        padding: 0;
    }

    .enquiry-form-wrapper .contact-header {
        text-align: center;
    }

    .enquiry-form-wrapper .contact-title {
        font-size: 2rem;
    }
}

@media (max-width: 600px) {
    .enquiry-form-wrapper .contact-title {
        display: none;
    }

    .enquiry-form-wrapper .contact-subtitle {
        display: none;
    }

    .contact-form-group {
        margin-bottom: 0.75rem;
    }

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

    .form-row-grid .contact-form-group {
        margin-bottom: 0;
    }

    .form-row-grid .contact-form-group:last-child {
        margin-bottom: 0;
    }

    .enquiry-page-container {
        min-height: calc(100vh - 60px);
        align-items: flex-start;
        padding-top: 2rem;
    }

    .enquiry-form-section {
        align-items: flex-start;
        padding: 0 1rem;
        background: none;
        backdrop-filter: none;
    }

    .enquiry-form-wrapper {
        background-color: rgba(31, 41, 55, 0.5);
        backdrop-filter: blur(8px);
        border: 1px solid rgba(55, 65, 81, 0.5);
        border-radius: 12px;
        padding: 2rem;
    }
}