﻿/* =========================
   PAGE
========================= */

body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient( 135deg, #F8F4E9 0%, #F3E8FF 50%, #FFF8E7 100% );
}

/* =========================
   CONTACT SECTION
========================= */

.contact-section {
    padding: 80px 20px;
}

.contact-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

    /* =========================
   HEADINGS
========================= */

    .contact-container h1 {
        font-size: 56px;
        color: #5B21B6;
        margin-bottom: 10px;
        font-weight: 800;
        letter-spacing: 2px;
    }

    .contact-container h2 {
        color: #555;
        font-size: 24px;
        font-weight: 500;
        margin-bottom: 50px;
    }

        /* Decorative Line */

        .contact-container h2::after {
            content: "";
            display: block;
            width: 120px;
            height: 5px;
            background: linear-gradient( 90deg, #5B21B6, #A855F7 );
            margin: 20px auto 0;
            border-radius: 20px;
        }

/* =========================
   CARDS
========================= */

.contact-card {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(10px);
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 25px;
    box-shadow: 0 15px 30px rgba(0,0,0,.08);
    transition: all .4s ease;
    border: 1px solid rgba(255,255,255,.4);
}

    .contact-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(91,33,182,.18);
    }

    .contact-card h3 {
        color: #5B21B6;
        margin-bottom: 20px;
        font-size: 24px;
    }

    .contact-card p {
        color: #444;
        line-height: 1.9;
        font-size: 16px;
    }

    /* =========================
   LINKS
========================= */

    .contact-card a {
        color: #2563EB;
        text-decoration: none;
        font-weight: 600;
        transition: .3s;
    }

        .contact-card a:hover {
            color: #5B21B6;
        }

/* =========================
   MAP BUTTON
========================= */

.map-btn {
    display: inline-block;
    background: linear-gradient( 135deg, #5B21B6, #7C3AED );
    color: white !important;
    padding: 14px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: .3s;
}

    .map-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(91,33,182,.25);
    }

/* =========================
   PHONE NUMBERS
========================= */

.phone-numbers {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

    .phone-numbers a {
        background: #ECFDF5;
        color: #10B981;
        padding: 12px 18px;
        border-radius: 30px;
        font-weight: 600;
    }

        .phone-numbers a:hover {
            background: #10B981;
            color: white;
        }

   
    .contact-card i {
        color: #D8B4FE;
        margin-right: 8px;
    }

    
/* =========================
   SOCIAL ICONS
========================= */

.social-icons {
    position: fixed;
    right: 25px;
    bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

    .social-icons a {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        color: white;
        font-size: 26px;
        text-decoration: none;
        transition: .3s;
        box-shadow: 0 10px 20px rgba(0,0,0,.15);
    }

        .social-icons a:hover {
            transform: scale(1.12);
        }

/* WhatsApp */

.whatsapp {
    background: #25D366;
}

/* Instagram */

.instagram {
    background: linear-gradient( 135deg, #F58529, #DD2A7B, #8134AF, #515BD4 );
}
.youtube {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #ff0000, #ff4d4d);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 28px;
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.4);
    transition: all 0.3s ease;
}

    .youtube:hover {
        transform: translateY(-4px) scale(1.1);
        background: linear-gradient(135deg, #cc0000, #ff0000);
        box-shadow: 0 8px 20px rgba(255, 0, 0, 0.6);
        color: white;
    }

    .youtube i {
        line-height: 1;
    }
.facebook {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #1877F2, #4267B2);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 28px;
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.5);
    transition: all 0.3s ease;
}

    .facebook:hover {
        transform: translateY(-4px) scale(1.1);
        background: linear-gradient(135deg, #4267B2, #1877F2);
        box-shadow: 0 8px 20px rgba(24, 119, 242, 0.7);
        color: white;
    }

    .facebook i {
        line-height: 1;
    }


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

    .contact-container h1 {
        font-size: 38px;
    }

    .contact-container h2 {
        font-size: 18px;
    }

    .contact-card {
        padding: 22px;
    }

    .phone-numbers {
        flex-direction: column;
    }

    .social-icons {
        right: 15px;
        bottom: 15px;
    }

        .social-icons a {
            width: 52px;
            height: 52px;
            font-size: 22px;
        }
}
