/* Mega Menü  */
.nav-item.dropdown.mega-dropdown {
    position: static; 
}

.dropdown-menu.mega-menu {
    width: 50%; 
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    padding: 15px 10px;
    border-radius: 0 0 10px 10px;
    border-top: 3px solid #359ad6;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-top: 0 !important; 
}

.product-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 15px 5px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #333;
    background-color: #f9f9f9;
    height: 100%;
    border: 1px solid transparent;
}

.product-box i {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #359ad6;
    transition: all 0.3s ease;
}

.product-box img {
    width: 40px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.product-box span {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.product-box:hover {
    background-color: #359ad6;
    color: #fff !important;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(11, 94, 215, 0.3);
}

.product-box:hover i {
    color: #fff;
}

.corporate-link {
    text-decoration: none;
    color: #555;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.2s ease;
    display: block;
    padding: 5px 0;
}

.corporate-link:hover {
    color: #359ad6;
    transform: translateX(-5px);
}

.border-end {
    border-color: #eee !important;
}

@media (min-width: 992px) {
    .nav-item.dropdown.mega-dropdown > .nav-link {
        padding-bottom: 1.5rem !important;
    }
    
    .nav-item.dropdown:hover > .dropdown-menu,
    .dropdown-menu:hover {
        display: block;
        animation: fadeIn 0.3s ease;
    }
    
    .nav-item.dropdown.mega-dropdown .dropdown-menu {
        margin-top: -1rem !important; 
    }
    
    .nav-item.dropdown {
        position: relative;
    }
    
    .nav-item.dropdown .dropdown-menu {
        transition: opacity 0.2s ease, visibility 0.2s ease;
    }
}

@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(10px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

  /* FAQ Section */
  .custom-faq .accordion-item {
    border: none;
    margin-bottom: 15px; 
    border-radius: 8px !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    background-color: #fff;
    overflow: hidden; 
}

.custom-faq .accordion-button {
    background-color: #fff;
    color: #333;
    padding: 1.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    box-shadow: none !important; 
    transition: all 0.3s ease; 
}

.custom-faq .accordion-button.collapsed:hover {
    background-color: #359ad6 !important; 
    color: #ffffff !important; 
}

.custom-faq .accordion-button.collapsed:hover .faq-num {
    color: #ffffff !important;
}

.custom-faq .accordion-button.collapsed:hover::after {
    filter: brightness(0) invert(1) !important;
}

.custom-faq .accordion-button:not(.collapsed) {
    background-color: #f8f9fa !important; 
    color: #359ad6 !important; 
    font-weight: bold;
    box-shadow: inset 0 -1px 0 rgba(0,0,0,0.125);
}

.faq-num {
    font-family: 'Oswald', sans-serif; 
    color: #359ad6; 
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 10px;
    transition: color 0.3s ease;
}

.custom-faq .accordion-body {
    padding: 1.5rem;
    padding-top: 1rem;
    line-height: 1.6;
    color: #555;
    background-color: #fff;
}

.custom-faq .accordion-button::after {
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.custom-faq .accordion-button:not(.collapsed)::after {
    filter: invert(53%) sepia(66%) saturate(464%) hue-rotate(170deg) brightness(90%) contrast(88%);
}

/* Cookie Box Tasarımı */
.cookie-box {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 100%;
    max-width: 420px;
    background: rgba(255, 255, 255, 0.95); 
    backdrop-filter: blur(10px); 
    border: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 9999; 
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.cookie-box.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-icon {
    width: 60px;
    height: 60px;
}

@media (max-width: 576px) {

    .dropdown-menu.mega-menu {
        width: 85%; 
        
    }
    .cookie-box {
        bottom: 0;
        right: 0;
        left: 0;
        max-width: 100%;
        border-radius: 20px 20px 0 0 !important; 
        padding-bottom: 30px; 
    }
}

/* Social Media Side Bar */
.sticky-social-bar {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%); 
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end; 
    gap: 5px; 
}

.social-item {
    display: flex;
    align-items: center;
    justify-content: flex-end; 
    width: 50px; 
    height: 50px;
    background-color: #359ad6; 
    text-decoration: none;
    color: white;
    border-radius: 5px 0 0 5px; 
    transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.3s ease; 
    overflow: hidden; 
    box-shadow: -2px 2px 5px rgba(0,0,0,0.2);
    position: relative;
}

.social-item:hover {
    width: 160px; 
}

.social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0; 
    z-index: 2;
}
.social-text {
    position: absolute;
    right: 60px; 
    color: white;
    font-family: 'Inter', sans-serif; 
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0; 
    transform: translateX(10px);
    transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s; 
}

.social-item:hover .social-text {
    opacity: 1;
    transform: translateX(0);
}

.social-item.instagram:hover {
    background: #f09433; 
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
}

.social-item.facebook:hover {
    background-color: #1877F2;
}

.social-item.linkedin:hover {
    background-color: #0077B5;
}

.social-item.youtube:hover {
    background-color: #FF0000;
}

.social-item.whatsapp:hover {
    background-color: #25D366;
}

.whatsapp-hover-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 5000;
  }
 
  .quote-btn-v2 {
    padding: 6px 14px !important;
  }
  
  .quote-btn-v2:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(53, 154, 214, 0.3);
    transition: all 0.3s ease;
  }