body.elementor-page-41:not(.elementor-motion-effects-element-type-background), body.elementor-page-41 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#0A0A0A;}/* Start custom CSS for shortcode, class: .elementor-element-b21b7f6 */.wpcf7 {
    margin: 0;
    padding: 0;
}

.wpcf7-form {
    margin: 0;
    padding: 0;
}

/* ===== FORM ROWS ===== */
.wpcf7-form p {
    margin: 0 0 10px 0;
}

/* ===== LABELS ===== */
.wpcf7-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #cccccc;
    margin-bottom: 0px;
    font-family: inherit;
}

/* ===== INPUT FIELDS ===== */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="number"],
.wpcf7-form input[type="url"],
.wpcf7-form select,
.wpcf7-form textarea {
    width: 100%;
    padding: 14px 18px;
    background: #0f0f0f;
    border: 1px solid rgba(222, 161, 81, 0.1);
    border-radius: 10px;
    color: #ffffff;
    font-size: 15px;
    transition: all 0.3s ease;
    outline: none;
    font-family: inherit;
    box-sizing: border-box;
}

/* ===== FOCUS STATE ===== */
.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form input[type="number"]:focus,
.wpcf7-form input[type="url"]:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
    border-color: #dea151;
    box-shadow: 0 0 0 3px rgba(222, 161, 81, 0.1);
    background: #1a1a1a;
}

/* ===== TEXTAREA ===== */
.wpcf7-form textarea {
    height: 120px;
    resize: vertical;
    min-height: 80px;
}

/* ===== PLACEHOLDER ===== */
.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder {
    color: #666666;
    font-weight: 400;
}

/* ===== SELECT DROPDOWN ===== */
.wpcf7-form select {
    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='%23999999' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
    padding-right: 40px;
}

.wpcf7-form select option {
    background: #1a1a1a;
    color: #ffffff;
    padding: 10px;
}

/* ============================================================ */
/* ===== SUBMIT BUTTON ===== */
/* ============================================================ */
.wpcf7-form input[type="submit"] {
    background: linear-gradient(135deg, #dea151, #f0b86a);
    color: #0a0a0a;
    padding: 16px 44px;
    border-radius: 50px;
    border: none;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
    position: relative;
    overflow: hidden;
    width: 100%;
    font-family: inherit;
    box-sizing: border-box;
    margin-top: 6px;
    letter-spacing: 0.5px;
}

/* ===== BUTTON SHINE EFFECT ===== */
.wpcf7-form input[type="submit"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: all 0.6s ease;
}

.wpcf7-form input[type="submit"]:hover::before {
    left: 100%;
}

.wpcf7-form input[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(222, 161, 81, 0.35);
}

.wpcf7-form input[type="submit"]:active {
    transform: translateY(0);
}

/* ============================================================ */
/* ===== SPINNER ===== */
/* ============================================================ */
.wpcf7-form .wpcf7-spinner {
    display: block;
    margin: 16px auto 0;
    background: rgba(222, 161, 81, 0.2);
    border-radius: 50%;
    width: 28px;
    height: 28px;
    border: 3px solid rgba(222, 161, 81, 0.1);
    border-top-color: #dea151;
    animation: wpcf7-spin 0.8s linear infinite;
}

@keyframes wpcf7-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ============================================================ */
/* ===== RESPONSE MESSAGES ===== */
/* ============================================================ */
.wpcf7-form .wpcf7-response-output {
    margin: 20px 0 0;
    padding: 14px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
}

/* ===== ERROR MESSAGE ===== */
.wpcf7-form .wpcf7-validation-errors {
    border: 2px solid #ff6b6b !important;
    background: rgba(255, 107, 107, 0.08) !important;
    color: #ff6b6b !important;
    padding: 18px 24px !important;
    border-radius: 12px !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    text-align: center !important;
    animation: errorShake 0.5s ease forwards !important;
}

.wpcf7-form .wpcf7-validation-errors::before {
    content: '❌ ';
    font-size: 18px;
}

/* ===== SUCCESS MESSAGE ===== */
.wpcf7-form .wpcf7-mail-sent-ok {
    border: 2px solid #51cf66 !important;
    background: rgba(81, 207, 102, 0.08) !important;
    color: #51cf66 !important;
    padding: 18px 24px !important;
    border-radius: 12px !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    text-align: center !important;
    position: relative !important;
    box-shadow: 0 4px 20px rgba(81, 207, 102, 0.15) !important;
    animation: successPop 0.5s cubic-bezier(0.77, 0, 0.175, 1) forwards !important;
}

.wpcf7-form .wpcf7-mail-sent-ok::before {
    content: '✅ ';
    font-size: 20px;
    display: inline-block;
}

/* ===== SUCCESS GLOW BORDER EFFECT ===== */
.wpcf7-form .wpcf7-mail-sent-ok::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 12px;
    background: linear-gradient(135deg, #51cf66, #20c997, #51cf66);
    background-size: 200% 200%;
    animation: borderGlow 2s ease-in-out infinite;
    z-index: -1;
    opacity: 0.3;
}

/* ===== MAIL SENT NG ===== */
.wpcf7-form .wpcf7-mail-sent-ng {
    border: 2px solid #ff6b6b !important;
    background: rgba(255, 107, 107, 0.08) !important;
    color: #ff6b6b !important;
    padding: 18px 24px !important;
    border-radius: 12px !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    text-align: center !important;
    animation: errorShake 0.5s ease forwards !important;
}

.wpcf7-form .wpcf7-mail-sent-ng::before {
    content: '❌ ';
    font-size: 18px;
}

/* ===== SPAM BLOCKED MESSAGE ===== */
.wpcf7-form .wpcf7-spam-blocked {
    border: 2px solid #ffd93d !important;
    background: rgba(255, 217, 61, 0.08) !important;
    color: #ffd93d !important;
    padding: 18px 24px !important;
    border-radius: 12px !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    text-align: center !important;
    animation: errorShake 0.5s ease forwards !important;
}

.wpcf7-form .wpcf7-spam-blocked::before {
    content: '⚠️ ';
    font-size: 18px;
}

/* ===== ABORTED MESSAGE ===== */
.wpcf7-form .wpcf7-aborted {
    border: 2px solid #ff6b6b !important;
    background: rgba(255, 107, 107, 0.08) !important;
    color: #ff6b6b !important;
    padding: 18px 24px !important;
    border-radius: 12px !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    text-align: center !important;
    animation: errorShake 0.5s ease forwards !important;
}

.wpcf7-form .wpcf7-aborted::before {
    content: '🚫 ';
    font-size: 18px;
}/* End custom CSS */