﻿:root {
    --primary-color: #4e54c8;
    --secondary-color: #8f94fb;
    --dark-color: #2a2a2a;
}

.contact-section {
    background-color: #f9f9f9;
    padding: 80px 0;
    position: relative;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

    .contact-header h2 {
        font-weight: 700;
        color: var(--dark-color);
        position: relative;
        display: inline-block;
        padding-bottom: 15px;
    }

        .contact-header h2:after {
            content: '';
            position: absolute;
            right: 0;
            bottom: 0;
            width: 50px;
            height: 3px;
            background: var(--primary-color);
            left: 0;
            margin: 0 auto;
        }

    .contact-header p {
        color: #666;
        font-size: 1.1rem;
        margin-top: 20px;
    }

.contact-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
}

    .contact-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
}

.contact-info h4 {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 15px;
    text-align: center;
}

.contact-info p {
    color: #666;
    text-align: center;
    margin-bottom: 0;
}

.contact-form {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    padding: 40px;
}

.form-control {
    height: 50px;
    border-radius: 5px;
    border: 1px solid #ddd;
    margin-bottom: 20px;
}

textarea.form-control {
    height: 150px;
    resize: none;
}

.btn-send {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}

    .btn-send:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(78, 84, 200, 0.4);
    }

.social-links {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

    .social-links a {
        width: 40px;
        height: 40px;
        background: #f1f1f1;
        color: var(--dark-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 5px;
        transition: all 0.3s ease;
    }

        .social-links a:hover {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: white;
            transform: translateY(-5px);
        }

@media (max-width: 768px) {
    .contact-card {
        margin-bottom: 30px;
    }
    .iframe{
        display : none;
    }
}
