.contact-container  {
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 20px;
    min-height: 100vh;
}

.contact-grid  {
    display: grid;
    grid-template-columns: 0.8fr 1fr;
    gap: 100px;
    padding: 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-form  {
    width: 100%;
    max-width: 100%;
    height: fit-content;
}

.cyber-box-contact::before  {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,215,0,0.1), transparent );
    animation: scan 3s linear infinite;
    z-index: -1;
}

.contact-title  {
    color: #ffd700;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8em;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.info-items  {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item  {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255,215,0,0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.info-item i  {
    color: #ffd700;
    font-size: 1.4em;
}

.info-item span  {
    color: #ffd700;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1.5px;
    font-size: 0.9em;
}

input[type="text"], input[type="email"], textarea  {
    width: 450px;
    padding: 0 25px;
    background: rgba(0,0,0,0.6);
    border: 1px solid rgba(255,215,0,0.15);
    border-radius: 8px;
    color: #ffd700;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9em;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

input[type="text"], input[type="email"]  {
    height: 55px;
}

textarea  {
    height: 150px;
    padding: 15px 25px;
    margin-top: 20px;
    resize: none;
}

.send-button  {
    width: 450px;
    height: 55px;
    padding: 0 25px;
    background: rgba(0,0,0,0.6);
    border: 1px solid rgba(255,215,0,0.15);
    border-radius: 8px;
    color: #ffd700;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9em;
    letter-spacing: 1.5px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    cursor: pointer;
    transition: all 0.3s ease;
}

.send-button:hover  {
    background: rgba(255,215,0,0.1);
}

.custom-select  {
    width: 450px;
    height: 55px;
    padding: 0 25px;
    background: rgba(0,0,0,0.6);
    border: 1px solid rgba(255,215,0,0.15);
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
    position: relative;
    margin-left: auto;
    margin-right: auto;
}

.select-selected  {
    width: 100%;
    height: 100%;
    color: #ffd700;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9em;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.select-items  {
    width: 500px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,215,0,0.15);
    border-radius: 8px;
    position: absolute;
    top: 100%;
    left: 0;
    transform: scaleY(0);
    margin-top: 5px;
    z-index: 100;
    opacity: 0;
    transition: all 0.3s ease;
    visibility: hidden;
}

.select-items div  {
    color: #ffd700;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9em;
    letter-spacing: 1.5px;
    padding: 5px 15px;
    height: 55px;
    display: flex;
    align-items: center;
    cursor: pointer;
    border-bottom: 1px solid rgba(255,215,0,0.05);
    transition: all 0.3s ease;
}

.select-items div:last-child  {
    border-bottom: none;
}

.select-items div:hover, .select-items div:active  {
    background: rgba(255,215,0,0.1);
}

.select-items div:first-of-type:hover, .select-items div:first-of-type:active  {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.select-items div:last-of-type:hover, .select-items div:last-of-type:active  {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.select-items div:first-of-type.same-as-selected  {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.select-items div:last-of-type.same-as-selected  {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.select-hide  {
    display: none;
}

input::placeholder, textarea::placeholder  {
    color: rgba(255,215,0,0.5);
    opacity: 1;
}

input[type="text"], input[type="email"], textarea  {
    color: #ffd700;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder  {
    color: rgba(255,215,0,0.5);
}

input::-moz-placeholder, textarea::-moz-placeholder  {
    color: rgba(255,215,0,0.5);
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder  {
    color: rgba(255,215,0,0.5);
}

input[type="text"], input[type="email"], textarea, .custom-select  {
    outline: none;
    transition: all 0.3s ease;
}

input[type="text"]:focus, input[type="email"]:focus, textarea:focus, .custom-select:focus  {
    box-shadow: 0 0 15px rgba(255,215,0,0.2);
    border-color: rgba(255,215,0,0.3);
}

input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, input:-webkit-autofill:active  {
    -webkit-box-shadow: 0 0 0 30px rgba(0,0,0,0.6) inset !important;
    -webkit-text-fill-color: #ffd700 !important;
    transition: background-color 5000s ease-in-out 0s;
}


/* Toast bildirimi stilleri */

.toast {

    position: fixed;

    top: 20px;

    right: 20px;

    background: rgba(220, 38, 38, 0.95);

    color: white;

    padding: 12px 24px;

    border-radius: 6px;

    margin-bottom: 10px;

    display: flex;

    align-items: center;

    gap: 10px;

    backdrop-filter: blur(8px);

    border: 1px solid rgba(255, 255, 255, 0.1);

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);

    transform: translateX(120%);

    opacity: 0;

    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    min-width: 300px;

    max-width: 400px;

    z-index: 1000;

}



.toast.success {

    background: rgba(34, 197, 94, 0.95);

}



.toast.show {

    transform: translateX(0);

    opacity: 1;

}



.toast i {

    font-size: 16px;

}



.toast-message {

    font-size: 14px;

    font-weight: 500;

}


@keyframes slideIn  {
    from  {
    transform: translateX(100%);
    opacity: 0;
}

to  {
    transform: translateX(0);
    opacity: 1;
}
}

@keyframes slideOut  {
    from  {
    transform: translateX(0);
    opacity: 1;
}

to  {
    transform: translateX(100%);
    opacity: 0;
}
}

.custom-select  {
    position: relative;
    cursor: pointer;
}

.custom-select::after  {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #ffd700;
    pointer-events: none;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.custom-select.active::after  {
    transform: translateY(-50%) rotate(180deg);
}

.custom-select.active .select-items  {
    transform: scaleY(1);
    opacity: 1;
    visibility: visible;
}

.custom-select.active .select-items div  {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.2s;
}

.custom-select.active .select-items div:nth-child(2)  {
    transition-delay: 0.25s;
}

.custom-select.active .select-items div:nth-child(3)  {
    transition-delay: 0.3s;
}

.custom-select.active .select-items div:nth-child(4)  {
    transition-delay: 0.35s;
}


@media screen and (max-width: 768px)  {
    
    .contact-container  {
    padding: 0 15px;
    margin: 20px auto;
}

.contact-grid  {
    grid-template-columns: 1fr;
    padding: 15px;
    gap: 20px;
}

input[type="text"], input[type="email"], textarea, .custom-select, .send-button  {
    width: calc(100% - 30px);
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
    margin-bottom: 15px;
    font-size: 0.85em;
}

.select-items  {
    width: 100%;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
    font-size: 0.85em;
}

input[type="text"], input[type="email"], .custom-select, .send-button  {
    height: 45px;
}

textarea  {
    height: 120px;
    padding: 12px 15px;
    margin-top: 15px;
}

.select-items  {
    width: 100%;
    max-width: 500px;
}

.select-items div  {
    font-size: 1.2em;
    padding: 12px 18px;
    height: 50px;
    -webkit-tap-highlight-color: transparent;
}

.select-items div:active  {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    background: rgba(255,215,0,0.1);
}

.contact-title  {
    font-size: 1.3em;
    margin-bottom: 20px;
    text-align: center;
}

.info-items  {
    gap: 12px;
}

.info-item  {
    padding: 15px 15px;
}

.info-item i  {
    font-size: 1.1em;
}

.info-item span  {
    font-size: 0.85em;
}
}


@media screen and (max-width: 480px)  {
    
    .contact-container  {
    padding: 0 10px;
    margin: 15px auto;
}

.contact-grid  {
    padding: 10px;
    gap: 15px;
}

input[type="text"], input[type="email"], textarea, .custom-select, .send-button  {
    padding: 0 12px;
    margin-bottom: 12px;
    font-size: 0.8em;
}

.contact-title  {
    font-size: 1.2em;
    margin-bottom: 15px;
}

.info-item  {
    padding: 15px 15px;
}

.info-item i  {
    font-size: 1em;
}

.info-item span  {
    font-size: 0.8em;
}

textarea  {
    height: 100px;
    padding: 10px 12px;
    margin-top: 12px;
}

.select-items div  {
    padding: 10px 12px;
    height: 40px;
    font-size: 0.8em;
}
}

.select-items div:first-child:hover, .select-items div:first-child:active  {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    background: rgba(255,215,0,0.1);
}

.select-items div:first-child.same-as-selected  {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    background: rgba(255,215,0,0.15);
}

.select-items div:last-child.same-as-selected  {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    background: rgba(255,215,0,0.15);
}

.select-items div:nth-child(2).same-as-selected  {
    background: rgba(255,215,0,0.15);
}

.select-items div:nth-child(3).same-as-selected  {
    background: rgba(255,215,0,0.15);
}

.contact-grid::after  {
    display: none;
    content: '';
    width: 80%;
    height: 2px;
    background: linear-gradient( 90deg, transparent, rgba(255,215,0,0.5), transparent );
    position: relative;
    margin: 2rem auto;
}


@media screen and (max-width: 768px)  {
    
    .contact-grid  {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 1rem;
}

.contact-grid::after  {
    display: block;
}

.contact-info  {
    margin-bottom: 2.4rem;
}

.contact-form  {
    margin-top: 1rem;
}
}

@keyframes glowLine  {
    0%  {
    opacity: 0.3;
}

50%  {
    opacity: 1;
}

100%  {
    opacity: 0.3;
}
}


@media screen and (max-width: 768px)  {
    
    .contact-grid::after  {
    animation: glowLine 2s ease-in-out infinite;
}
}

.contact-info  {
    position: relative;
    overflow: hidden;
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255,215,0,0.15);
    padding: 30px;
    border-radius: 8px;
}

.contact-info::before, .contact-info::after  {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid #ffd700;
    opacity: 0.3;
    animation: cornerPulse 3s ease-in-out infinite;
}

.contact-info::before  {
    top: -2px;
    left: -2px;
    border-right: 0;
    border-bottom: 0;
}

.contact-info::after  {
    bottom: -2px;
    right: -2px;
    border-left: 0;
    border-top: 0;
}

@keyframes cornerPulse  {
    0%  {
    opacity: 0.1;
}

50%  {
    opacity: 0.4;
}

100%  {
    opacity: 0.1;
}
}

.contact-info:hover::before, .contact-info:hover::after  {
    animation: cornerPulse 1.5s ease-in-out infinite;
}

.contact-info::before  {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient( circle, rgba(255,215,0,0.1) 0%, transparent 70% );
    animation: rotateGlow 10s linear infinite;
    z-index: -1;
}

@keyframes rotateGlow  {
    0%  {
    transform: rotate(0deg);
}

100%  {
    transform: rotate(360deg);
}
}

.info-item  {
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-item:hover  {
    transform: translateX(10px);
    box-shadow: -5px 0 15px rgba(255,215,0,0.1);
}

.info-item::before  {
    content: '';
    position: absolute;
    left: -30px;
    top: 50%;
    width: 20px;
    height: 2px;
    background: linear-gradient( 90deg, transparent, rgba(255,215,0,0.5) );
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.info-item:hover::before  {
    transform: scaleX(1);
}

.info-item i  {
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse  {
    0%  {
    transform: scale(1);
    opacity: 1;
}

50%  {
    transform: scale(1.1);
    opacity: 0.8;
}

100%  {
    transform: scale(1);
    opacity: 1;
}
}

.info-items .info-item:nth-child(1) i  {
    animation-delay: 0s;
}

.info-items .info-item:nth-child(2) i  {
    animation-delay: 0.5s;
}

.info-items .info-item:nth-child(3) i  {
    animation-delay: 1s;
}

.info-items .info-item:nth-child(4) i  {
    animation-delay: 1.5s;
}