/* ===================================
   ENQUIRY PAGE - SPECIFIC STYLES
   To be used with main style.css
   =================================== */

/* Inner Page Header - Keep it transparent like homepage */
.inner-page .header {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.inner-page .top-bar {
    background: transparent;
}

.inner-page .navbar {
    background: transparent;
}

/* Page Hero Section */
.page-hero-big {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 0;
}

.page-hero-big::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.overlay-enquiry::after {
    content: '';
    position: absolute;
    inset: 20px 10px;
    background: radial-gradient(circle at top right, rgba(227, 30, 36, 0.06), transparent 60%);
    pointer-events: none;
    z-index: 0;
}

/* Enquiry Section */
.enquiry-section {
    padding: 6rem 0;
    background: var(--white);
}

.enquiry-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

/* Left Side - Info */
.enquiry-info {
    position: sticky;
    top: 120px;
}

.enquiry-info .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-bg);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.info-text {
    color: var(--grey-mid);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.info-features {
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-red);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.5rem;
    border-radius: 10px;
    transition: var(--transition);
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(227, 30, 36, 0.3);
}

.feature-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 0.5rem;
}

.feature-content p {
    font-size: 0.95rem;
    color: var(--grey-mid);
    line-height: 1.6;
}

.contact-details {
    background: var(--grey-light);
    padding: 2rem;
    border-left: 4px solid var(--primary-red);
    border-radius: 5px;
}

.contact-details h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
    color: var(--grey-mid);
    font-size: 0.95rem;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: var(--primary-red);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
    border-radius: 5px;
}

/* Right Side - Form */
.enquiry-form-container {
    background: var(--white);
    border: 2px solid rgba(0, 0, 0, 0.05);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

.form-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark-bg);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.form-subtitle {
    color: var(--grey-mid);
    font-size: 1rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-bg);
    margin-bottom: 0.6rem;
}

.required {
    color: var(--primary-red);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 0.95rem;
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: var(--transition);
    background: var(--white);
    color: var(--grey-mid);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(227, 30, 36, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    margin-bottom: 2rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--grey-mid);
    font-weight: 500;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary-red);
}

.submit-btn {
    width: 100%;
    padding: 1.3rem 3rem;
    background: var(--primary-red);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--red-hover);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: -1;
}

.submit-btn:hover::before {
    width: 250%;
    height: 250%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(227, 30, 36, 0.4);
}

.submit-btn i {
    font-size: 1.1rem;
}

/* Form Message Styles */
.form-message {
    padding: 1.2rem 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
    animation: slideDown 0.3s ease;
    border: 2px solid transparent;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-message.success {
    background: rgba(76, 175, 80, 0.1);
    border-color: rgba(76, 175, 80, 0.3);
    color: #2e7d32;
}

.form-message.error {
    background: rgba(244, 67, 54, 0.1);
    border-color: rgba(244, 67, 54, 0.3);
    color: #c62828;
}

.form-message i {
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.form-message strong {
    display: block;
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.form-note {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--grey-mid);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    line-height: 1.6;
}

.form-note i {
    color: var(--primary-red);
}

/* Responsive */
@media (max-width: 1024px) {
    .enquiry-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .enquiry-info {
        position: static;
    }
}

@media (max-width: 768px) {
    .page-hero-big {
        height: 100vh;
        min-height: 500px;
    }

    .equipment-overlay-section {
        padding: 3.5rem 0;
    }
    
    .enquiry-section {
        padding: 3rem 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .enquiry-form-container {
        padding: 2rem;
    }

    .enquiry-info .section-title {
        font-size: 2rem;
    }

    .form-title {
        font-size: 1.8rem;
    }

    .feature-item {
        gap: 1rem;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .page-hero-big {
        height: 100vh;
        min-height: 450px;
    }

    .enquiry-section {
        padding: 2.5rem 0;
    }

    .enquiry-info .section-title {
        font-size: 1.6rem;
    }
    
    .enquiry-form-container {
        padding: 1.5rem;
    }
    
    .form-title {
        font-size: 1.5rem;
    }

    .form-subtitle {
        font-size: 0.9rem;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .contact-details {
        padding: 1.5rem;
    }

    .submit-btn {
        padding: 1.1rem 2rem;
        font-size: 0.9rem;
    }
}