/* CONTACTS SECTION */
.contacts-section {
    padding: 100px 20px;
    background: transparent;
    position: relative;
overflow: hidden;}

.contacts-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contacts-header {
    text-align: center;
    margin-bottom: 60px;
}

.contacts-header h2 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: 1px;
}

.contacts-header p {
    color: #7fa6d6;
    font-size: 18px;
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.contact-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 25px;

    padding: 30px;

    text-decoration: none;

    background: transparent;

    border: 1px solid rgba(70, 140, 255, 0.2);

    border-radius: 24px;

    transition: 0.35s ease;

    overflow: hidden;
}
.contact-card::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(0, 183, 255, 0.12),
            rgba(0, 89, 255, 0.04)
        );

    opacity: 0;

    transition: 0.35s ease;
}

.contact-card:hover {
    transform: translateY(-8px);

    border-color: rgba(88, 175, 255, 0.5);

    box-shadow:
        0 0 30px rgba(0, 140, 255, 0.2),
        0 0 60px rgba(0, 110, 255, 0.12);
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-icon {
    position: relative;
    z-index: 2;

    width: 60px;
    height: 60px;

    flex-shrink: 0;
}

.contact-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;

    filter:
        drop-shadow(0 0 12px rgba(0, 170, 255, 0.45));
}

.contact-info {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
}
.contact-title {
    color: #00cfff;

    font-size: 24px;
    font-weight: 600;

    margin-bottom: 10px;

    text-shadow: 0 0 10px rgba(0, 207, 255, 0.4);
}

.contact-value {
    color: #00cfff;

    font-size: 17px;

    transition: 0.3s ease;

    text-shadow: 0 0 8px rgba(255,255,255,0.25);
}

.contact-card:hover .contact-value {
    color: #00ffff;
}
.services-title {
    color: #00cfff;

    font-size: 36px;
    font-weight: 600;

    margin-bottom: 10px;

    text-shadow: 0 0 10px rgba(0, 207, 255, 0.4);
}

.footer {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
}
/* RESPONSIVE */

@media (max-width: 768px) {

    .contacts-section {
        padding: 70px 15px;
    }

    .contacts-header h2 {
        font-size: 36px;
    }

    .contact-card {
        padding: 24px;
    }

    .contact-icon {
        width: 72px;
        height: 72px;
    }

    .contact-title {
        font-size: 20px;
    }

    .contact-value {
        font-size: 15px;
    }
}







