/* 
   Contact Page Styles (Premium Dark Theme) 
   Scoped to #lcr-contact-wrapper to prevent conflicts 
*/

#lcr-contact-wrapper {
    background-color: #0E1116;
    color: #fff;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    margin: 0;
    padding: 0;
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    /* Reset common inherited properties */
    text-align: left;
    line-height: 1.5;
}

#lcr-contact-wrapper *,
#lcr-contact-wrapper *::before,
#lcr-contact-wrapper *::after {
    box-sizing: border-box;
}

/* Background Effect (Subtle Gradient) */
#lcr-contact-wrapper .lcr-contact-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(255, 226, 166, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0, 179, 107, 0.03) 0%, transparent 40%);
    z-index: 0;
    pointer-events: none;
}

/* Header */
#lcr-contact-wrapper .lcr-contact-header {
    padding: 25px 0;
    text-align: center;
    background: rgba(14, 17, 22, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 10;
}

#lcr-contact-wrapper .lcr-logo img {
    height: 38px;
    width: auto;
    display: block;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

#lcr-contact-wrapper .lcr-logo:hover img {
    transform: scale(1.05);
}

/* Main Content */
#lcr-contact-wrapper .lcr-contact-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    position: relative;
    z-index: 10;
}

#lcr-contact-wrapper .contact-container {
    width: 100%;
    max-width: 680px;
    background: #16191E;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 45px 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    position: relative;
}

/* Titles */
#lcr-contact-wrapper .contact-title {
    font-family: 'Akrobat', sans-serif;
    /* Lucrar Font */
    font-size: 38px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
    text-align: center;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

#lcr-contact-wrapper .contact-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 40px;
    text-align: center;
    font-weight: 300;
}

/* Form Layout */
#lcr-contact-wrapper .form-row {
    display: flex;
    gap: 20px;
}

#lcr-contact-wrapper .form-group {
    margin-bottom: 24px;
    width: 100%;
}

#lcr-contact-wrapper .form-group.half {
    flex: 1;
}

/* Labels */
#lcr-contact-wrapper .form-label {
    display: block;
    font-size: 13px;
    color: #efd7a0;
    /* Lucrar Gold */
    margin-bottom: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

/* Inputs */
#lcr-contact-wrapper .form-input,
#lcr-contact-wrapper .form-select,
#lcr-contact-wrapper .form-textarea {
    width: 100%;
    background: #0b0d11;
    /* Darker than container */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 14px 18px;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    outline: none;
    transition: all 0.25s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

#lcr-contact-wrapper .form-input::placeholder,
#lcr-contact-wrapper .form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.25);
    font-weight: 300;
}

#lcr-contact-wrapper .form-input:focus,
#lcr-contact-wrapper .form-select:focus,
#lcr-contact-wrapper .form-textarea:focus {
    border-color: #efd7a0;
    /* Gold Focus */
    background: #0f1217;
    box-shadow: 0 0 0 3px rgba(239, 215, 160, 0.1);
}

/* Custom Select Dropdown Arrow */
#lcr-contact-wrapper .select-wrapper {
    position: relative;
}

#lcr-contact-wrapper .form-select {
    cursor: pointer;
    appearance: none;
    padding-right: 40px;
}

#lcr-contact-wrapper .select-icon {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #efd7a0;
    pointer-events: none;
    font-size: 12px;
}

/* Option Styles for Dark Mode */
#lcr-contact-wrapper .form-select option {
    background: #16191E;
    color: #fff;
    padding: 10px;
}

/* Button */
#lcr-contact-wrapper .form-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #efd7a0 0%, #c5a059 100%);
    border: none;
    border-radius: 10px;
    padding: 16px;
    color: #121212;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#lcr-contact-wrapper .form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(239, 215, 160, 0.25);
    background: linear-gradient(135deg, #f5e4bc 0%, #dbb66d 100%);
}

#lcr-contact-wrapper .form-submit-btn:active {
    transform: translateY(1px);
}

#lcr-contact-wrapper .form-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    filter: grayscale(0.5);
}

/* Message Feedback */
#lcr-contact-wrapper #form-message {
    display: none;
    /* JS toggles fadeIn */
    margin-top: 25px;
    padding: 15px;
    border-radius: 8px;
    font-size: 14px;
    text-align: center;
    font-weight: 500;
}

#lcr-contact-wrapper #form-message.success {
    background: rgba(0, 179, 107, 0.15);
    /* Green bg */
    border: 1px solid rgba(0, 179, 107, 0.4);
    color: #00ea8d;
}

#lcr-contact-wrapper #form-message.error {
    background: rgba(255, 68, 68, 0.15);
    border: 1px solid rgba(255, 68, 68, 0.4);
    color: #ff6b6b;
}

/* Footer */
#lcr-contact-wrapper .lcr-contact-footer {
    padding: 30px 20px;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(14, 17, 22, 0.8);
    position: relative;
    z-index: 10;
}

#lcr-contact-wrapper .lcr-contact-footer p {
    margin: 0;
}

/* Animation */
.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    #lcr-contact-wrapper .contact-container {
        padding: 30px 20px;
        margin: 0 10px;
        max-width: 90vw;
    }

    #lcr-contact-wrapper .contact-title {
        font-size: 28px;
    }

    #lcr-contact-wrapper .form-row {
        flex-direction: column;
        gap: 0;
    }

    #lcr-contact-wrapper .lcr-contact-content {
        padding: 30px 0;
    }
}