
.enquire-header {
    background: #fff;
    box-shadow: 0 2px 8px rgba(46,125,50,0.07);
    padding: 24px 0 16px 0;
    text-align: center;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
}

    .enquire-header h1 {
        font-family: 'Playfair Display', serif;
        font-size: 2.2rem;
        color: #2e7d32;
        margin: 0;
        font-weight: 700;
        letter-spacing: 2px;
        text-shadow: 0 2px 8px #e8f5e9;
    }

.enquire-main {
    max-width: 600px;
    margin: 40px auto 32px auto;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 6px 24px rgba(46,125,50,0.10);
    padding: 36px 32px 28px 32px;
    position: relative;
    box-sizing: border-box;
}

    .enquire-main::before {
        content: "";
        position: absolute;
        top: -32px;
        left: -32px;
        width: 80px;
        height: 80px;
        background: url('rice-icon.png') no-repeat center/60px, #e8f5e9;
        opacity: 0.12;
        border-radius: 50%;
        z-index: 0;
    }

    .enquire-main::after {
        content: "";
        position: absolute;
        bottom: -32px;
        right: -32px;
        width: 80px;
        height: 80px;
        background: url('turmeric-icon.png') no-repeat center/60px, #e8f5e9;
        opacity: 0.12;
        border-radius: 50%;
        z-index: 0;
    }

.enquire-title {
    font-size: 1.35rem;
    color: #2e7d32;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 22px;
    text-align: center;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.enquire-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 1;
}

    .enquire-form label {
        font-weight: 600;
        color: #2e7d32;
        margin-bottom: 6px;
        font-size: 1rem;
        letter-spacing: 0.5px;
    }

    .enquire-form input,
    .enquire-form textarea,
    .enquire-form select {
        width: 100%;
        padding: 12px 14px;
        border-radius: 10px;
        border: 1.5px solid #c8e6c9;
        font-size: 1rem;
        background: #f8f8f8;
        color: #222;
        transition: border-color 0.2s, box-shadow 0.2s;
        box-shadow: 0 2px 8px rgba(46,125,50,0.04);
        box-sizing: border-box;
    }

        .enquire-form input:focus,
        .enquire-form textarea:focus,
        .enquire-form select:focus {
            border-color: #2e7d32;
            outline: none;
            box-shadow: 0 4px 16px rgba(46,125,50,0.10);
        }

    .enquire-form textarea {
        resize: vertical;
        min-height: 90px;
    }

.enquire-btns {
    display: flex;
    gap: 18px;
    justify-content: center;
    margin-top: 10px;
}

.enquire-btn {
    padding: 12px 32px;
    border-radius: 24px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    background: linear-gradient(90deg, #2e7d32 60%, #43a047 100%);
    color: #fff;
    box-shadow: 0 2px 8px rgba(46,125,50,0.08);
    letter-spacing: 1px;
}

    .enquire-btn:hover {
        background: linear-gradient(90deg, #1b5e20 60%, #388e3c 100%);
        box-shadow: 0 6px 18px rgba(46,125,50,0.13);
    }

    .enquire-btn.cancel {
        background: #fff;
        color: #2e7d32;
        border: 1.5px solid #2e7d32;
        box-shadow: none;
    }

        .enquire-btn.cancel:hover {
            background: #e8f5e9;
        }

.enquire-success {
    background: #c8e6c9;
    color: #2e7d32;
    border-radius: 10px;
    padding: 14px;
    text-align: center;
    font-weight: 600;
    margin-top: 22px;
    font-size: 1.08rem;
    box-shadow: 0 2px 8px rgba(46,125,50,0.08);
    animation: fadeInSuccess 0.7s;
    display: none;
    position: relative;
    z-index: 1;
}

@keyframes fadeInSuccess {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.enquire-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

    .enquire-icon img {
        width: 54px;
        height: 54px;
        border-radius: 50%;
        box-shadow: 0 2px 8px rgba(46,125,50,0.10);
        background: #e8f5e9;
        border: 2px solid #c8e6c9;
    }

@media (max-width: 700px) {
    .enquire-main {
        padding: 18px 8px;
        border-radius: 14px;
        margin: 24px 8px 16px 8px;
    }

    .enquire-header h1 {
        font-size: 1.2rem;
    }

    .enquire-title {
        font-size: 1.05rem;
    }

    .enquire-btn {
        font-size: 0.95rem;
        padding: 8px 16px;
    }

    .enquire-icon img {
        width: 38px;
        height: 38px;
    }

    .enquire-main::before,
    .enquire-main::after {
        width: 48px;
        height: 48px;
        left: -12px;
        right: -12px;
        top: -12px;
        bottom: -12px;
        background-size: 36px;
    }
}
