/* ================= FOOTER STYLES ================= */

/* Disable text selection globally */
body {
    user-select: none;
    -webkit-user-select: none;
    /* Safari, Chrome */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* IE/Edge */
}

/* Disable image drag & right-click save */
img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    pointer-events: none;
}

/* Footer Container */
.footer {
    background-color: #1f1f1f;
    padding: 50px 20px 20px;
    color: #fff;
    font-family: 'Roboto', sans-serif;
}

/* Footer Grid */
.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Footer Column Title */
.footer-col h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #fff;
}

/* Footer List */
.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #9B9B9B;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #f09433;
}

/* Footer Logo Section */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo img {
    height: 80px;
    width: 230px;
}

/* Footer Description */
.footer-desc {
    font-size: 14px;
    color: #9B9B9B;
    margin-top: 10px;
}

/* Social Media Icons */
.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.social-icons a {
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    transition: background 0.3s ease, transform 0.2s ease;
    text-decoration: none;
}

.social-icons a:hover {
    transform: scale(1.2);
}

/* Social Media Specific Colors */
.social-icons a.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-icons a.instagram:hover {
    background: linear-gradient(90deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-icons a.x {
    background-color: #000;
    /* X logo black */
}

.social-icons a.x:hover {
    background-color: #1DA1F2;
}

.social-icons a.tiktok {
    background: linear-gradient(45deg, #43d8e2, #EE1D52);
}

.social-icons a.tiktok:hover {
    background: linear-gradient(90deg, #43d8e2, #EE1D52);
}

.social-icons a.youtube {
    background-color: #FF0000;
}

.social-icons a.youtube:hover {
    background-color: #a30000;
}

/* Footer Bottom Section */
.footer-bottom {
    border-top: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    font-size: 13px;
    max-width: 1200px;
    margin: 20px auto 0;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p {
    font-size: 13px;
}

.footer-links {
    display: flex;
    gap: 15px;
}

.footer-links a {
    text-decoration: none;
    color: #9B9B9B;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3B3CE3;
}

/* Responsive Footer for tablets & mobile */
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}