@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    /* background: #0b0014; */
    /* color: #fff; */
}

footer {
    background: radial-gradient(circle at top right, #231038, #0b0014 80%);
    padding: 4rem 10%;
    position: relative;
    overflow: hidden;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.footer-left .logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    background: linear-gradient(135deg, #b784ff, #9654ff);
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
    border-radius: 12px;
    padding: 8px 12px;
}

.logo h2 {
    font-size: 1.6rem;
    font-weight: 600;
}

.tagline {
    margin: 10px 0 20px;
    color: #ccc;
    font-size: 0.95rem;
}


/* Social Icons */

.social-icons {
    display: flex;
    align-items: center;
    gap: 18px;
}

.social-icons a {
    color: #ccc;
    font-size: 1.25rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    text-decoration: none;
}

.social-icons a:hover {
    transform: translateY(-3px);
}


/* Platform Colors */

.social-icons a.facebook:hover {
    color: #1877f2;
    background: rgba(24, 119, 242, 0.15);
}

.social-icons a.x:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
}

.social-icons a.instagram:hover {
    color: #e1306c;
    background: rgba(225, 48, 108, 0.15);
}

.social-icons a.whatsapp:hover {
    color: #25D366;
    background: rgba(37, 211, 102, 0.15);
}


/* Middle & Right Columns */

.footer-middle h4,
.footer-right h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #616060;
}

.footer-middle ul {
    list-style: none;
}

.footer-middle li {
    margin: 6px 0;
}

.footer-middle a {
    text-decoration: none;
    color: #ccc;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-middle a:hover {
    color: #b784ff;
}

.footer-right p {
    color: #ccc;
    line-height: 1.6;
}


/* Bottom Section */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    color: #aaa;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: #b784ff;
    text-decoration: none;
    margin-left: 15px;
}

.footer-bottom a:hover {
    text-decoration: underline;
}


/* Big Faded Text */

footer::before {
    content: "Qamaralmadeena";
    position: absolute;
    bottom: 20px;
    left: 10%;
    font-size: 10rem;
    font-weight: 600;
    opacity: 0.04;
    color: #fff;
    letter-spacing: -10px;
    z-index: 1;
}


/* Responsive */

@media (max-width: 900px) {
    .footer-container {
        flex-direction: column;
        gap: 2rem;
    }
    footer::before {
        font-size: 9rem;
        left: 5%;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 0.8rem;
    }
}


/* Floating Contact Button */

.contact-float {
    position: fixed;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
}

.contact-icon {
    background-color: #376ebb;
    color: white;
    border: none;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    cursor: pointer;
    font-size: 24px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    transition: background 0.3s ease, transform 0.3s ease;
}

.contact-icon:hover {
    background-color: #f4a530;
    transform: scale(1.05);
}


/* Popup Contact Box */

.contact-popup {
    position: absolute;
    right: 70px;
    top: 50%;
    text-align: center;
    transform: translateY(-50%);
    background-color: #fff;
    color: #333;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    padding: 1rem 1.2rem;
    width: 230px;
    display: none;
    animation: fadeIn 0.3s ease;
}

.contact-popup h4 {
    margin-top: 0;
    font-size: 1.1rem;
    color: #000;
    text-align: center;
    margin-bottom: 10px;
}

.contact-popup ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.contact-popup ul li {
    margin-bottom: 10px;
}

.contact-popup a {
    color: #333;
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease;
}

.contact-popup a:hover {
    color: #182324;
}

.contact-popup i {
    color: #18191a;
}


/* Animation */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-50%) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
}


/* Mobile Responsive */

@media (max-width: 768px) {
    .contact-float {
        right: 15px;
        bottom: 90px;
        top: auto;
        transform: none;
    }
    .contact-popup {
        right: 70px;
        top: auto;
        bottom: 0;
        transform: none;
    }
}