/* Contact Form Styles */

/* Input Fields */
.custum-input {
    border: 2px solid #e0e0e0;
    width: 100%;
    height: 50px;
    background: #ffffff;
    position: relative;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    border-radius: 12px !important;
    min-height: 60px;
    font-size: 1rem;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.custum-input:hover {
    border-color: #ECA427;
    box-shadow: 0 4px 12px rgba(236, 164, 39, 0.1);
}

.custum-input:focus {
    outline: none;
    border-color: #ECA427;
    background-color: #ffffff;
    box-shadow: 0 4px 16px rgba(236, 164, 39, 0.15);
}

.custum-input::-moz-placeholder {
    color: #999;
    font-size: 0.95rem;
}

.custum-input::placeholder {
    color: #999;
    font-size: 0.95rem;
}

.custum-input.textarea {
    height: 120px;
    padding-top: 1.25rem;
    resize: vertical;
    font-family: inherit;
}

/* Contact Form Button */
.contact-sec .btn-primary.custom-btn-primary,
.contact-sec button.btn-primary.custom-btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2.5rem !important;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 50px;
    background: linear-gradient(135deg, #ECA427 0%, #f5b842 100%);
    color: #ffffff;
    border: 2px solid transparent;
    box-shadow: 0 6px 20px rgba(236, 164, 39, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    z-index: 1;
    min-height: 60px;
    text-transform: uppercase;
}

.contact-sec .btn-primary.custom-btn-primary::before,
.contact-sec button.btn-primary.custom-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5b842 0%, #ECA427 100%);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.contact-sec .btn-primary.custom-btn-primary:hover,
.contact-sec button.btn-primary.custom-btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(236, 164, 39, 0.4);
    border-color: #ECA427;
    color: #ffffff;
}

.contact-sec .btn-primary.custom-btn-primary:hover::before,
.contact-sec button.btn-primary.custom-btn-primary:hover::before {
    left: 0;
}

.contact-sec .btn-primary.custom-btn-primary:active,
.contact-sec button.btn-primary.custom-btn-primary:active {
    transform: translateY(-2px);
}

/* Contact Form Box */
.contact-form-box {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

/* Form Labels (if needed) */
.contact-sec .form-label {
    color: #333;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

/* Error Messages */
.contact-sec .alert-danger {
    background-color: #fee;
    border-color: #fcc;
    color: #c33;
    border-radius: 10px;
    padding: 1rem;
}

.contact-sec .alert-danger ul {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-form-box {
        padding: 1.5rem;
    }
    
    .custum-input {
        font-size: 0.95rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .contact-sec .btn-primary.custom-btn-primary,
    .contact-sec button.btn-primary.custom-btn-primary {
        padding: 0.75rem 2rem !important;
        font-size: 1rem;
    }
}

