.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;
    }
}

/* Desktop industrial contact page */
.page-main-content {
    background: #f3f5f8;
}

.enquiry-page-container {
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 60px);
    padding: 7rem 2rem 4rem;
    background:
        linear-gradient(90deg, rgba(9, 16, 30, 0.88) 0%, rgba(9, 16, 30, 0.7) 42%, rgba(9, 16, 30, 0.18) 100%),
        url('/files/imgs/common/gigaflops_background.png') center / cover no-repeat;
}

.enquiry-page-container::after {
    content: '';
    position: absolute;
    inset: 6rem max(1rem, calc((100vw - 1280px) / 2 + 1rem)) 3rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    pointer-events: none;
    z-index: 1;
}

.enquiry-image-section {
    display: none;
}

.enquiry-form-section {
    width: min(100%, 620px);
    max-width: none;
    background: #fff;
    backdrop-filter: none;
    border-left: 0;
    border: 1px solid #d8dee8;
    animation: none;
}

.enquiry-form-wrapper {
    max-width: none;
    padding: 2.4rem;
}

.enquiry-form-wrapper .contact-title {
    color: #111827;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.25;
}

.enquiry-form-wrapper .contact-subtitle {
    color: #667085;
    line-height: 1.7;
}

.contact-label {
    color: #111827;
    font-weight: 650;
}

.contact-input,
.contact-textarea {
    border-radius: 0;
    border-color: #d8dee8;
    background: #f8fafc;
    color: #111827;
}

.contact-input:focus,
.contact-textarea:focus {
    border-color: #6b789a;
    box-shadow: none;
}

.contact-submit-btn {
    border-radius: 0;
    box-shadow: none;
}
