/* Contact Section Redesign */
.contact-section {
    position: relative;
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: flex-start;
}

@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Contact Info Box (Left) */
.contact-info-box {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 243, 255, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.info-text h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.info-text p {
    color: #999;
    font-size: 0.95rem;
}

/* Modern Form (Right) */
.modern-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
    background: transparent;
}

.input-group {
    position: relative;
}

.modern-input {
    width: 100%;
    padding: 15px 0;
    font-size: 1.1rem;
    color: white;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    outline: none;
    transition: all 0.3s;
}

.modern-input:focus {
    border-bottom-color: var(--primary-color);
}

.modern-input::placeholder {
    color: transparent;
}

.floating-label {
    position: absolute;
    top: 15px;
    left: 0;
    color: #888;
    font-size: 1.1rem;
    pointer-events: none;
    transition: all 0.3s ease;
}

.modern-input:focus~.floating-label,
.modern-input:not(:placeholder-shown)~.floating-label {
    top: -10px;
    font-size: 0.85rem;
    color: var(--primary-color);
}

.btn-send {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    color: white;
    /* Yazıyı beyaz yaptım */
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-send:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(188, 19, 254, 0.3);
}

/* FOOTER */
.site-footer {
    background: linear-gradient(180deg, #0f1012 0%, #000000 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 0 30px;
    margin-top: 100px;
    position: relative;
    overflow: hidden;
}

/* Üst Neon Cizgi Efekti */
.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.7;
    box-shadow: 0 0 15px var(--primary-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

@media (max-width: 968px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-info .logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo-img {
    width: 40px;
    height: auto;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.footer-desc {
    color: #888;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.footer-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 6px;
    color: white;
    flex: 1;
}

.btn-small {
    background: var(--primary-color);
    color: black;
    border: none;
    padding: 10px 15px;
    border-radius: 6px;
    cursor: pointer;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #111;
    color: #666;
    font-size: 0.9rem;
}