
.contact-section {
    padding: 8rem 2rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffffff, #00D4FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.contact-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}


.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.info-card i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #00D4FF;
    background: rgba(0, 212, 255, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.info-card:hover i {
    transform: scale(1.1);
    background: linear-gradient(45deg, #00D4FF, #2A2A72);
    color: #ffffff;
}

.info-card h3 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.info-card a {
    color: #00D4FF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-card a:hover {
    color: #ffffff;
}

.info-card p {
    color: rgba(255, 255, 255, 0.8);
}


.platform-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.platform-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
}

.platform-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.platform-link img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.platform-link span {
    font-size: 0.9rem;
}


.info-card .social-links {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.info-card .social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00D4FF;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
}

.info-card .social-links a:hover {
    color: #ffffff;
    background: linear-gradient(45deg, #00D4FF, #2A2A72);
    transform: translateY(-2px);
}


.info-card .social-links a::before {
    display: none;
}

.info-card .social-links a[title="Facebook"]:hover,
.info-card .social-links a[title="Instagram"]:hover,
.info-card .social-links a[title="LinkedIn"]:hover,
.info-card .social-links a[title="Behance"]:hover {
    box-shadow: none;
}


.contact-form {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00D4FF;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(45deg, #00D4FF, #2A2A72);
    border: none;
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: linear-gradient(45deg, #2A2A72, #00D4FF);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}


@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 6rem 1rem 3rem;
    }

    .contact-header h1 {
        font-size: 2.5rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .contact-header h1 {
        font-size: 2rem;
    }

    .info-card {
        padding: 1.5rem;
    }

    .platform-links {
        flex-direction: column;
        align-items: center;
    }

    .platform-link {
        width: 100%;
        justify-content: center;
    }
} 