/* css/components.css */

/* Navbar */
.navbar {
    transition: all 0.3s ease;
}
.navbar.scrolled {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    background-color: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05) !important;
}
.nav-link {
    color: #4a5568 !important;
    position: relative;
    padding: 0.5rem 1rem !important;
}
.nav-link:hover, .nav-link.active {
    color: var(--bs-primary) !important;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background-color: var(--bs-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.nav-link:hover::after, .nav-link.active::after {
    transform: scaleX(1);
}

/* Dropdown */
.dropdown-menu {
    border-radius: 0.5rem;
    padding: 0.5rem 0;
}
.dropdown-item {
    padding: 0.5rem 1.5rem;
    transition: all 0.2s;
}
.dropdown-item:hover {
    background-color: var(--bg-primary-subtle);
    color: var(--bs-primary);
    padding-left: 2rem;
}

/* Buttons */
.btn {
    font-weight: 500;
    transition: all 0.3s ease;
}
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Cards & Hover Effects */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}
.hover-scale:hover {
    transform: scale(1.05);
}

/* Icon Circle */
.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.kademe-card:hover .icon-circle {
    transform: scale(1.1) rotate(5deg);
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}
.whatsapp-btn:hover {
    transform: scale(1.1);
    color: white;
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background-color: white;
    z-index: 1050;
    transition: bottom 0.5s ease-in-out;
    border-top: 4px solid var(--bs-primary);
}
.cookie-consent.show {
    bottom: 0;
}

/* Footer Social Buttons */
.social-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.social-btn:hover {
    background-color: var(--bs-secondary);
    border-color: var(--bs-secondary);
    color: white;
    transform: translateY(-3px);
}
