@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700,800,900');
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@500;700;900&family=Inter:wght@400;500;600;800&display=swap');

/* =========================
   TCM DARK FOOTER CSS 
   (100% CENTERED EVERYWHERE)
========================= */
.site-footer {
    background: #0d203b; 
    color: #cbd5e1;
    padding: 60px 20px 20px;
    border-top: 1px solid #1e293b;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

/* Top Neon Gradient Border Effect */
.site-footer::before {
    content: ''; 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 3px;
    background: linear-gradient(90deg, transparent, #00e5ff, transparent);
    opacity: 0.5;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; 
    align-items: flex-start;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 40px;
    border-bottom: 1px dashed #1e293b;
    text-align: center; 
}

.footer-column {
    flex: 1 1 250px;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center; 
}

.footer-column h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #00e5ff;
    letter-spacing: 1px;
    display: inline-block;
    position: relative;
    padding-bottom: 5px;
}

/* Green Underline (Always Centered) */
.footer-column h4::after {
    content: ''; 
    position: absolute; 
    bottom: -5px; 
    left: 50%; 
    transform: translateX(-50%); 
    width: 60px; 
    height: 2px;
    background: #00ff88; 
    box-shadow: 0 0 8px #00ff88;
}

/* =========================
   TEXT & LINKS
========================= */
.footer-column a {
    color: #94a3b8;
    text-decoration: none;
    margin-bottom: 12px;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 15px;
    font-weight: 500;
}

.footer-column a:hover {
    color: #00ff88;
    transform: scale(1.05); 
    text-shadow: 0 0 8px rgba(0, 255, 136, 0.4);
}

.footer-column p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.footer-column p a {
    color: #00e5ff;
    margin-bottom: 0;
    display: inline;
    font-weight: 600;
}
.footer-column p a:hover {
    color: #00ff88;
    transform: none; 
}

/* =========================
   LOGO & ABOUT
========================= */
.footer-logo {
    width: 200px;
    margin-bottom: 20px;
}

.footer-about {
    text-align: center;
}

.footer-about strong {
    color: #ffffff;
    font-size: 16px;
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* =========================
   CONTACT BUTTONS (VERTICAL)
========================= */
.vertical-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center; 
    margin-top: 10px;
    width: 100%;
}

.v-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #94a3b8 !important;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 18px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
    max-width: 220px;
    justify-content: flex-start;
}

.v-contact-btn i {
    color: #00e5ff;
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.v-contact-btn:hover {
    background: rgba(0, 229, 255, 0.1);
    border-color: #00e5ff;
    color: #fff !important;
    transform: translateX(5px); 
}

/* =========================
   SOCIAL ICONS (UPDATED AS PER CONTACT.CSS)
========================= */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    margin-bottom: 10px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px; /* Square shape with rounded corners as requested */
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon.insta { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.social-icon.yt { background: #ff0000; }
.social-icon:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(255,255,255,0.2); color:#fff; }

/* =========================
   PLAYSTORE & CREDITS
========================= */
.footer-playstore {
    text-align: center;
    margin-top: 15px;
    margin-bottom: 25px;
}

.footer-playstore img {
    height: 55px; 
    width: auto;
    transition: transform 0.3s ease;
}

.footer-playstore img:hover {
    transform: scale(1.05); 
}

.developer-credit {
    margin-top: 15px;
    text-align: center;
    font-size: 14px;
    color: #94a3b8;
}

.developer-credit p { margin-bottom: 5px; }

.developer-credit a {
    color: #00e5ff;
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.developer-credit a:hover {
    color: #00ff88;
    text-shadow: 0 0 12px rgba(0, 255, 136, 0.6);
}

/* =========================
   MOBILE RESPONSIVENESS
========================= */
@media (max-width: 768px) {
    .footer-container { gap: 35px; }
    .vertical-contact { align-items: center; }
    .v-contact-btn { justify-content: center; }
}
