/* Footer Styles - Professional Component */

/* Main Footer */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    margin-bottom: 1rem;
}

.footer-logo h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #fff;
    margin: 0;
}

.footer-logo .logo-icon {
    color: var(--primary-color);
    font-size: 2rem;
}

.footer-logo .logo-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    display: block;
}

.footer-section h4 {
    font-family: 'Playfair Display', serif;
    color: #f0ad4e;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p {
    color: #e0e0e0;
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.95rem;
    text-align: center;
    margin-top: 0.5rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #e0e0e0;
    text-decoration: none;
    transition: var(--transition);
    font-weight: 400;
}

.footer-section ul li a:hover {
    color: #f0ad4e !important;
    text-decoration: underline;
    transform: translateX(5px);
}

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-top: 16px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: var(--transition);
    text-decoration: none;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
}

.footer-bottom p {
    margin: 0;
    color: #ccc;
    font-size: 0.95rem;
}

.whatsapp-link {
    color: #25D366 !important;
    text-decoration: none;
    transition: var(--transition);
}

.whatsapp-link:hover {
    color: #128c7e !important;
    text-decoration: underline;
}

/* Social Media Brand Colors */
.footer-facebook i {
    color: #1877f3 !important;
}

.footer-instagram i {
    color: #e4405f !important;
}

.footer-twitter i {
    color: #1da1f2 !important;
}

.footer-youtube i {
    color: #ff0000 !important;
}

/* Footer Layout - Centered for professional look */
.footer-section,
.footer-section h4,
.footer-section p,
.footer-section ul,
.footer-section ul li,
.footer-section ul li a,
.footer-logo,
.footer-bottom {
    text-align: center !important;
}

.footer,
.footer-section,
.footer-section h4,
.footer-section p,
.footer-section ul li a,
.footer-bottom {
    color: #e0e0e0 !important;
}

.footer-section ul li a:hover {
    color: #f0ad4e !important;
}

/* Simple WhatsApp Button */
.whatsapp-simple {
    position: fixed;
    bottom: 2rem;
    right: 2.5rem;
    z-index: 1002;
}

.whatsapp-btn {
    width: 64px;
    height: 64px;
    background: #25d366;
    border-radius: 50%;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    background: #128c7e;
}

.whatsapp-menu {
    display: none;
    position: absolute;
    bottom: 80px;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    min-width: 200px;
    z-index: 1002;
}

.whatsapp-menu.show {
    display: block;
}

.whatsapp-menu a {
    display: block;
    padding: 12px 16px;
    color: #25d366;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    transition: background 0.2s;
}

.whatsapp-menu a:last-child {
    border-bottom: none;
}

.whatsapp-menu a:hover {
    background: #f5f5f5;
}

/* Enhanced Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 8rem;
    right: 2.5rem;
    width: 64px;
    height: 64px;
    background: rgba(255,255,255,0.25);
    border-radius: 50%;
    box-shadow: 0 8px 32px rgba(46, 134, 171, 0.18), 0 0 0 4px rgba(46,134,171,0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    border: 1.5px solid rgba(46,134,171,0.18);
    backdrop-filter: blur(16px);
    transition: box-shadow 0.3s, background 0.3s, opacity 0.3s, visibility 0.3s, transform 0.18s;
    overflow: hidden;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    box-shadow: 0 20px 60px rgba(46, 134, 171, 0.25), 0 0 0 8px rgba(46,134,171,0.10);
    background: linear-gradient(135deg, rgba(46,134,171,0.18), rgba(241,143,1,0.10));
    transform: scale(1.08) rotate(-2deg);
}

.scroll-top::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 50%;
    pointer-events: none;
    background: linear-gradient(120deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.05) 100%);
    opacity: 0.7;
}

.scroll-top .progress-circle {
    width: 52px;
    height: 52px;
    display: block;
    z-index: 1;
}

.scroll-top .progress-circle path {
    stroke: url(#scrollTopGradient);
    stroke-width: 5;
    fill: none;
    stroke-linecap: round;
    filter: drop-shadow(0 2px 8px rgba(46,134,171,0.10));
    transition: stroke-dashoffset 0.2s linear;
}

.scroll-top .progress-circle defs {
    z-index: 2;
}

.scroll-top-arrow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    pointer-events: none;
    animation: arrow-bounce 1.4s infinite cubic-bezier(0.4,0,0.2,1);
}

@keyframes arrow-bounce {
    0%, 100% { transform: none; }
    50% { transform: translateY(-10px); }
}

.scroll-top-arrow svg {
    width: 28px;
    height: 28px;
    display: block;
    filter: drop-shadow(0 2px 6px rgba(46,134,171,0.10));
}

/* Legacy Scroll to Top Button (hidden) */
.scroll-top-btn {
    display: none !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-logo .logo-icon img {
        width: 45px;
        height: 45px;
    }
    
    .footer-logo h3 {
        font-size: 1.5rem;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-logo .logo-icon img {
        width: 40px;
        height: 40px;
    }
    
    .footer-logo h3 {
        font-size: 1.3rem;
    }
    
    .whatsapp-simple {
        bottom: 1.5rem;
        right: 1rem;
    }
    
    .whatsapp-btn {
        width: 44px;
        height: 44px;
        font-size: 1.8rem;
    }
    
    .whatsapp-menu {
        min-width: 180px;
    }
    
    .scroll-top {
        width: 44px;
        height: 44px;
        bottom: 6rem;
        right: 1rem;
    }
    
    .scroll-top .progress-circle {
        width: 32px;
        height: 32px;
    }
    
    .scroll-top-arrow svg {
        width: 20px;
        height: 20px;
    }
    
    .footer-content {
        padding: 0 1rem;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
    }
    
    .footer-section p {
        font-size: 0.9rem;
    }
    
    /* Add bottom padding to prevent overlap with floating buttons */
    .footer {
        padding-bottom: 6rem !important;
    }
    
    .footer-bottom {
        padding-bottom: 1rem;
    }
} 

 