﻿.contact-section {
    background-image: linear-gradient(143deg, #213c36 0%, #0d1f1a 80%) !important;
    /*    height: 100vh;*/
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 170px;
    
}

    .contact-section h1 {
        color: #55EA43;
        font-weight: bold;
        font-size: 60px;
        margin-top: 101px;
        text-align: center;
    }

    .contact-section .container {
        position: relative;
        background: rgba(26, 47, 42, 0.9);
        backdrop-filter: blur(20px);
        border: 2px solid rgba(57, 255, 20, 0.3);
        border-radius: 25px;
        padding: 3rem;
        width: 100%;
        /* max-width: 900px; */
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
        animation: slideIn 1s ease-out;
        display: flex;
        align-items: center;
        justify-content: center;
        animation: fadeIn 0.5s ease-in-out;
        
    }
    .contact-section .box {
        width: 100%;
    }

.form-content {
    display: none;
}

    .form-content.active {
        display: block;
        animation: fadeIn 0.5s ease-in-out;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.form-group {
    margin-bottom: 1.5rem;
}

    .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        color: #39ff14;
        font-weight: 600;
    }

.form-input {
    width: 100%;
    padding: 15px 20px;
    background: rgba(13, 31, 26, 0.8);
    border: 2px solid rgba(57, 255, 20, 0.3);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

    .form-input:focus {
        outline: none;
        border-color: #39ff14;
        box-shadow: 0 0 20px rgba(57, 255, 20, 0.2);
        background: rgba(13, 31, 26, 1);
    }

    .form-input::placeholder {
        color: #888;
    }

.form-select {
    width: 100% !important;
    padding: 15px 20px !important;
    background: #0F221E !important;
    background-color: #0F221E !important;
    border: 2px solid rgba(57, 255, 20, 0.3) !important;
    border-radius: 12px !important;
    color: #ffffff !important;
    font-size: 16px !important;
    transition: all 0.3s ease !important;
    outline: none !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    cursor: pointer !important;
    padding-right: 50px !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%234ade80' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e") !important;
    background-position: right 20px center !important;
    background-repeat: no-repeat !important;
    background-size: 16px 12px !important;
}

/* Focus state - Override Bootstrap focus */
.form-select:focus {
    border-color: #39ff14 !important;
    box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.0) !important;
    color: #ffffff !important;
}

/* Option styling */
.form-select option {
    background: #1f4a3a;
    color: #ffffff;
    padding: 10px;
}

/* Placeholder option styling */
.form-select option[value=""] {
    color: rgba(255, 255, 255, 0.6);
}

.submit-btn {
    width: 15%;
    padding: 10px;
    background: linear-gradient(45deg, #39ff14, #2dd10f);
    color: #1a2f2a;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(57, 255, 20, 0.4);
}

@media all and (max-width: 630px )
{
    .contact-section .box {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    .submit-btn 
    {
        width: 35%;
    }
}
