/* ===== UNIVERSAL HEADER & FOOTER CSS STYLES ===== */

/* ===== EXISTING STYLES CONTINUE BELOW ===== */

/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== HEADER STYLES ===== */

/* Brand Bar - Base Styles */
.brand-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(135deg, rgba(24, 24, 40, 0.95) 0%, rgba(24, 24, 40, 0.9) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(16, 213, 194, 0.2);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.brand-title-logo-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
}

.header-logo-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    /* overflow: hidden; - removed to allow glow effect */
    
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    
    /* Remove all focus and outline effects */
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

.header-logo-wrapper:hover {
    transform: rotate(3deg);
}

.header-logo-wrapper:active {
    transform: rotate(6deg) scale(0.98);
    transition: all 0.1s ease;
}

.header-logo-wrapper:focus,
.header-logo-wrapper:active,
.header-logo-wrapper:focus-visible {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

/* Removed hover effects for logo wrapper */

.header-logo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 2;
    position: relative;
}

.header-logo-glow-effect {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: rgba(16, 213, 194, 0.7);
       
    border-radius: 50%;
    z-index: 1;
    opacity: 0 !important; /* Parlama efekti tamamen devre dışı */
    transition: opacity 1s ease;
    filter: blur(15px);
    pointer-events: none;
    display: none; /* Tamamen gizlendi */
}

.header-logo-wrapper:hover .header-logo-glow-effect {
    opacity: 0 !important; /* Parlama efekti hover'da da devre dışı */
    /* animation: gentleGlow 10s ease-in-out infinite; */ /* Animasyon kaldırıldı */
}

/* Removed glow effect hover */

@keyframes gentleGlow  {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.01);
        opacity: 1;
    }
}

.brand-title-underline-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.brand-title {
    font-family: 'Pacifico', 'Dancing Script', 'Kalam', cursive;
    font-size: 2.2rem;
    font-weight: 400;
    background:  linear-gradient(135deg,
            #00d8cc 5%,    /* Teal */
            #8a2be2 55%,   /* Purple */
            #ff3c6e 85%,   /* Pink */
            #e67e4d 100%   /* Bright Orange */     );
    /* background-size: 300% 300%; */ /* Parlama efekti için kaldırıldı */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* animation: gradientMove 8s ease-in-out infinite; */ /* Parlama animasyonu kaldırıldı */
    /* filter: drop-shadow(0 0 15px rgba(16, 213, 194, 0.5)); */ /* Parlama efekti kaldırıldı */
    letter-spacing: 1px;
    /* Fallback for browsers that don't support background-clip */
    color: #00d8cc;
}

.brand-underline {
    width: 200px;
    height: 3px;
    background:  linear-gradient(135deg,
            #00d8cc 5%,    /* Teal */
            #8a2be2 55%,   /* Purple */
            #ff3c6e 85%,   /* Pink */
            #e67e4d 100%   /* Bright Orange */     );
    /* animation: gradientMove 8s ease-in-out infinite; */ /* Animasyon kaldırıldı - sabit renkler */
    border-radius: 2px;
    margin-top: 5px;
}

@keyframes gradientMove {
    0%, 100% { background-position: 0% 50%; }
    25% { background-position: 100% 0%; }
    50% { background-position: 100% 100%; }
    75% { background-position: 0% 100%; }
}

/* ===== HAMBURGER MENU STYLES ===== */

.hamburger-menu {
    position: fixed;
    top: 51px;
    left: 20px;
    width: 45px;
    height: 45px;
    background: rgba(24, 24, 40, 0.8);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    z-index: 10001;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
}

.hamburger-menu:hover {
    /* background: rgba(16, 213, 194, 0.2); */ /* Background renk değişimi kaldırıldı */
    border: 2px solid rgba(0, 216, 204, 0.5); /* Sadece border rengi değişiyor */
    transform: scale(1.05);
    /* opacity: 0.8; */ /* Opacity değişimi kaldırıldı */
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background:  linear-gradient(135deg,
            #00d8cc 5%,    /* Teal */
            #8a2be2 55%,   /* Purple */
            #ff3c6e 85%,   /* Pink */
            #e67e4d 100%   /* Bright Orange */     );
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== SIDE NAVIGATION STYLES ===== */

.side-nav {
    position: fixed;
    top: 0;
    left: -380px;
    width: 380px;
    height: 100vh;
    background: linear-gradient(180deg, rgba(24, 24, 40, 0.95) 0%, rgba(24, 24, 40, 0.98) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 10000;
    transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow-y: auto;
    border-right: 1px solid rgba(16, 213, 194, 0.2);
    scrollbar-color:  #8a2be2  rgba(16, 213, 194, 0.1)!important;
}



.side-nav.active {
    left: 0;
}

.side-nav-content {
    padding: 100px 30px 20px 25px;
}

/* ===== NAVIGATION CATEGORY STYLES - UPDATED ===== */
.nav-category {
    margin-bottom: 15px;
}

.nav-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: transparent;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: visible;
}

/* updated - Clean hover effect with only left gradient line */
.nav-category-header:hover {
    background: transparent;
    transform: translateX(6px);
    box-shadow: 0 2px 15px rgba(16, 213, 194, 0.2);
}

/* Left gradient line for nav-category-header */
.nav-category-header:hover::before {
    content: '';
    position: absolute;
    left: -3px;
    top: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(135deg,
            #00d8cc 5%,    /* Teal */
            #8a2be2 55%,   /* Purple */
            #ff3c6e 85%,   /* Pink */
            #e67e4d 100%   /* Bright Orange */
    );
    background-size: 300% 300%;
    animation: gradientMove 8s ease-in-out infinite;
    border-radius: 0 3px 3px 0;
    z-index: 102;
}

/* Focus accessibility */
.nav-category-header:focus-visible {
    outline: none;
    transform: translateX(6px);
}

.nav-category-header:focus-visible::before {
    content: '';
    position: absolute;
    left: -3px;
    top: 0;
    bottom: 0;
    width: 6px;
    background: rgba(16, 213, 194, 0.3);
    background-size: 300% 300%;
    animation: gradientMove 8s ease-in-out infinite;
    border-radius: 0 3px 3px 0;
    z-index: 102;
}

.nav-category-header span {
    background: linear-gradient(135deg,
            #00d8cc 5%,    /* Teal */
            #8a2be2 55%,   /* Purple */
            #ff3c6e 85%,   /* Pink */
            #e67e4d 100%   /* Bright Orange */     );
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientMove 8s ease-in-out infinite;
    font-weight: 600;
    font-size: 1rem;
}

.nav-category-header.active i {
    transform: rotate(180deg);
}

/* Arrow/Icon styling with gradient */
.nav-category-header i {
    background: linear-gradient(90deg,
            #00d8cc 5%,    /* Teal */
            #8a2be2 55%,   /* Purple */
            #ff3c6e 85%,   /* Pink */
            #e67e4d 100%   /* Bright Orange */
    );
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientMove 8s ease-in-out infinite;
    transition: transform 0.3s ease;
}

/* ===== NAVIGATION ITEMS CONTAINER - UPDATED ===== */
.nav-category-items {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    margin-top: 10px;
    /* updated - Ensure proper z-index for visibility */
    position: relative;
    z-index: 100;
}

.nav-category-items.active {
    max-height: 1200px;
    /* updated - Add padding for better visual separation */
    padding: 5px 0;
}

/* ===== SUB NAVIGATION ITEMS - UPDATED ===== */
.nav-sub-item {
    display: block;
    padding: 12px 20px 12px 40px;
    /* updated - Gradient text color for sub-nav items */
    background: linear-gradient(135deg,
            #00d8cc 5%,    /* Teal */
            #8a2be2 55%,   /* Purple */
            #ff3c6e 85%,   /* Pink */
            #e67e4d 100%   /* Bright Orange */     );
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientMove 8s ease-in-out infinite;
    text-decoration: none;
    border-radius: 8px;
    margin-bottom: 5px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    position: relative;
    /* updated - Fix overflow issues */
    z-index: 101;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: calc(100% - 15px);
}

/* updated - Direct gradient hover effect with enhanced visibility */
.nav-sub-item:hover {
    transform: translateX(6px);
    /* updated - Keep gradient text color on hover but make it brighter */
    background: linear-gradient(135deg,
            #00d8cc 5%,    /* Teal */
            #8a2be2 55%,   /* Purple */
            #ff3c6e 85%,   /* Pink */
            #e67e4d 100%   /* Bright Orange */
    ) !important;
    background-size: 200% 200% !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    animation: gradientMove 8s ease-in-out infinite !important;
    /* updated - Better shadow for visibility - consistent with nav-category */
    box-shadow: 0 2px 15px rgba(16, 213, 194, 0.2);
}

/* updated - Enhanced left border gradient indicator */
.nav-sub-item:hover::before {
    content: '';
    position: absolute;
    left: -3px;
    top: 0;
    bottom: 0;
    width: 6px; /* updated - Thicker border for better visibility */
    background: linear-gradient(135deg,
            #00d8cc 5%,    
            #8a2be2 55%,   
            #ff3c6e 85%,   
            #e67e4d 100%);
    background-size: 300% 300%;
    animation: gradientMove 8s ease-in-out infinite;
    border-radius: 0 3px 3px 0;
    /* updated - Ensure visibility above background */
    z-index: 102;
}

/* ===== NAV-SUB-ITEM ICON FIX ===== */
/* Fix for hamburger menu product icons hidden by background-clip:text */
.nav-sub-item img {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 6px;
    flex-shrink: 0;
    /* Prevent gradient-text from hiding icons */
    -webkit-text-fill-color: initial;
    display: inline-block;
    position: relative;
    z-index: 102;
}

/* Items with icons use inline-flex for proper alignment */
.nav-category-items a.nav-sub-item:has(img) {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    overflow: visible;
    max-width: 100%;
}

/* Fallback for browsers that don't support :has() */
@supports not selector(:has(img)) {
    .nav-category-items #currentEndeavors a.nav-sub-item {
        display: inline-flex;
        align-items: center;
        overflow: visible;
    }
}

/* ===== LANGUAGE SELECTOR STYLES ===== */

.language-selector {
    position: fixed;
    top: 40px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    background:  rgba(24, 24, 40, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 8px 12px;
    border: 1px solid rgba(16, 213, 194, 0.2);
    z-index: 10010;
    transition: all 0.3s ease;
}


/*.language-selector:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
    opacity: 0.8;
}*/

.lang-btn {
    min-width: 50px;
    padding: 8px 12px;
    border: 2px solid transparent;
    background:  rgba(24, 24, 40, 0.9) ;
    border-radius: 15px;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    color: #e0e6ed;
    transition: all 0.3s ease;
    pointer-events: auto;
    margin: 0 2px;
}

.lang-btn:hover {
    /* background: rgba(16, 213, 194, 0.2); */ /* Background renk değişimi kaldırıldı */
    border-color: rgba(0, 216, 204, 0.5); /* Sadece border rengi değişiyor */
    transform: scale(1.05);
    /* opacity: 0.8; */ /* Opacity değişimi kaldırıldı */
    /* color: white; */ /* Text renk değişimi kaldırıldı */
}

.lang-btn.active {
    background: linear-gradient(135deg, rgba(16, 213, 194, 0.3) 0%, rgba(24, 24, 40, 0.9) 100%);
    border-color: rgba(16, 213, 194, 0.3);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(16, 213, 194, 0.3);
}

/* ===== AI SIDEBAR POPUP STYLES ===== */

.ai-sidebar-popup {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.ai-sidebar-toggle {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00d8cc 0%, #8a2be2 100%);
    border-radius: 50% 0 0 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: -3px 3px 15px rgba(16, 213, 194, 0.3);
}

.ai-sidebar-toggle i {
    color: white;
    font-size: 24px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.ai-sidebar-toggle:hover {
    width: 60px;
    box-shadow: -5px 5px 20px rgba(16, 213, 194, 0.5);
}

.ai-sidebar-content {
    position: absolute;
    right: -350px;
    top: 50%;
    transform: translateY(-50%);
    width: 320px;
    background: linear-gradient(135deg, rgba(24, 24, 40, 0.98) 0%, rgba(24, 24, 40, 0.98) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px 0 0 20px;
    padding: 30px 25px;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(16, 213, 194, 0.2);
    border-right: none;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow: hidden;
}

.ai-sidebar-popup:hover .ai-sidebar-content,
.ai-sidebar-popup.active .ai-sidebar-content {
    right: 50px;
}

.ai-sidebar-header {
    text-align: center;
    margin-bottom: 20px;
}

.ai-sidebar-logo-wrapper {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ai-sidebar-logo-wrapper:hover {
    transform: scale(1.1) rotate(5deg);
}

.ai-sidebar-logo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

.ai-logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    background: radial-gradient(circle, rgba(16, 213, 194, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(10px);
    z-index: 1;
    animation: logoGlow 2s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.ai-sidebar-header h3 {
    font-family: 'Poppins', 'Roboto', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    background: linear-gradient(135deg,
            #00d8cc 5%,    /* Teal */
            #8a2be2 55%,   /* Purple */
            #ff3c6e 85%,   /* Pink */
            #e67e4d 100%   /* Bright Orange */        );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 10px 0;
    letter-spacing: 0.5px;
    /* text-shadow: 0 0 10px rgba(16, 213, 194, 0.3); */ /* Parlama efekti kaldırıldı */
}

.ai-sidebar-tagline {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-family: 'Poppins', 'Roboto', sans-serif;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.ai-sidebar-tagline p {
    margin: 0 0 12px 0;
    font-size: 13px;
    font-weight: 300;
    color: #b0b0c4;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.ai-sidebar-cta {
    color: #00d8cc !important;
    font-size: 12px !important;
    font-weight: 400;
    font-style: normal;
    opacity: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .ai-sidebar-content {
        width: 280px;
        right: -330px;
        padding: 25px 20px;
    }
    
    .ai-sidebar-popup:hover .ai-sidebar-content,
    .ai-sidebar-popup.active .ai-sidebar-content {
        right: 45px;
    }
    
    .ai-sidebar-toggle {
        width: 45px;
        height: 45px;
    }
    
    .ai-sidebar-toggle i {
        font-size: 20px;
    }
}

/* ===== FOOTER STYLES ===== */

.modern-footer {
    background: linear-gradient(135deg, #181828 0%, #181828 50%, #181828 100%);
    color: white;
    padding: 80px 0 30px 0;
    position: relative;
    overflow: hidden;
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00d8cc, #8a2be2, transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-brand-logo-container {
    margin-bottom: 20px;
}

.footer-logo-wrapper {
    position: relative;
    width: 85px;
    height: 85px;
    border-radius: 50%;
    overflow: hidden;
   /* background:linear-gradient(135deg,
            #00d8cc 0%,       
            #8a2be2 55%,      
            #00f0ff 100%);*/
    background-size: 300% 100%;
    padding: -0.9px;
    animation: iconPulse 3s ease-in-out infinite;
    box-shadow: 0 15px 40px rgba(16, 213, 194, 0.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.footer-logo-image {
    width: 90%;
    height: 90%;
    object-fit: cover;
    border-radius: 10px;
    transition: all 0.3s ease;
    filter: brightness(1.2) contrast(1.2);
}

.footer-logo-wrapper:hover .footer-logo-image {
    transform: scale(1.08) rotate(3deg);
    filter: brightness(1.4) contrast(1.3);
}

.footer-logo-wrapper:hover {
    animation-duration: 3s;
    box-shadow: 0 20px 50px rgba(16, 213, 194, 0.6);
    transform: translateY(-5px);
}

.footer-brand h2 {
    font-family: 'Poppins', 'Roboto', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    background: linear-gradient(135deg,
            #00d8cc 5%,    /* Teal */
            #8a2be2 55%,   /* Purple */
            #ff3c6e 85%,   /* Pink */
            #e67e4d 100%   /* Bright Orange */        );
    /* background-size: 300% 300%; */ /* Statik gradient için kaldırıldı */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    /* animation: gradientMove 8s ease-in-out infinite; */ /* Statik gradient için kaldırıldı */
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-align: center;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

/* Footer Tagline Clickable Styles */
/* Footer Tagline Clickable Styles */
.footer-tagline-clickable {
    font-family: 'Poppins', 'Roboto', sans-serif;
    font-size: 1rem !important;
    font-weight: 300;
    line-height: 1.6 !important;
    cursor: default !important;
    padding: 10px !important;
    text-align: center;
}

/* Fade-in Words Animation for Footer Tagline */
.fade-in-words {
    display: inline-block;
}

.fade-in-words span {
    opacity: 0;
    display: inline-block;
    transform: translateY(-30px);
    animation: fadeInDown 8s ease-in-out infinite;
    margin: 0 1.6px; /* Kelimeler arası boşluk azaltıldı */
    color: #b0b0c4; /* Daha yumuşak renk */
    font-weight: 300;
    transition: color 0.3s ease;
}

.fade-in-words span:hover {
    color: #00d8cc; /* Hover'da Intellecta brand color */
}

/* Her bir span için animasyon gecikmesi */
.fade-in-words span:nth-child(1) { animation-delay: 0.3s; }
.fade-in-words span:nth-child(2) { animation-delay: 0.6s; }
.fade-in-words span:nth-child(3) { animation-delay: 0.9s; }
.fade-in-words span:nth-child(4) { animation-delay: 1.2s; }
.fade-in-words span:nth-child(5) { animation-delay: 1.5s; }
.fade-in-words span:nth-child(6) { animation-delay: 1.8s; }
.fade-in-words span:nth-child(7) { animation-delay: 2.1s; }
.fade-in-words span:nth-child(8) { animation-delay: 2.4s; }
.fade-in-words span:nth-child(9) { animation-delay: 2.6s; }
.fade-in-words span:nth-child(10) { animation-delay: 2.9s; }
.fade-in-words span:nth-child(11) { animation-delay: 3.2s; }
.fade-in-words span:nth-child(12) { animation-delay: 3.5s; }
.fade-in-words span:nth-child(13) { animation-delay: 3.8s; }

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    50% {
        opacity: 1;
        transform: translateY(0);
    }
    85% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(10px);
    }
}

@keyframes fadeInDownLoop {
    0%, 80% {
        opacity: 1;
        transform: translateY(0);
    }
    90%, 100% {
        opacity: 0;
        transform: translateY(10px);
    }
}

/* Responsive Design for Footer Tagline */
@media (max-width: 768px) {
    .footer-tagline-clickable {
        font-size: 1rem !important;
        padding: 8px !important;
        line-height: 1.5 !important;
    }
}

@media (max-width: 480px) {
    .footer-tagline-clickable {
        font-size: 0.9rem !important;
        padding: 6px !important;
        line-height: 1.4 !important;
    }
}

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #00d8cc 0%, #8a2be2 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.footer-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(16, 213, 194, 0.3);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.footer-section:hover {
    transform: translateY(-5px);
    background: rgba(16, 213, 194, 0.08);
    border-color: rgba(16, 213, 194, 0.3);
}

.footer-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00d8cc 0%, #8a2be2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.footer-icon i {
    font-size: 1.5rem;
    color: white;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: white;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #00d8cc;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #ff3c6e;
    transform: translateX(5px);
}

.footer-quick-links {
    margin-bottom: 40px;
    text-align: center;
}

.footer-quick-links h4 {
    margin-bottom: 25px;
    font-size: 1.3rem;
    color: white;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.quick-link:hover {
    background: rgba(16, 213, 194, 0.2);
    color: white;
    transform: translateY(-2px);
}

.intellecta-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.6);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, #00d8cc 0%, #8a2be2 100%);
    color: white;
    transform: translateY(-3px);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Mobile - 600px and below */
@media (max-width: 600px) {
    .brand-bar {
        height: 70px !important;
        padding: 0 10px !important;
    }
    
    .brand-title-logo-group {
        gap: 8px !important;
        padding-left: 40px !important;
        padding-right: 10px !important;
    }
    
    .header-logo-wrapper {
        width: 38px !important;
        height: 38px !important;
        min-width: 38px !important;
        flex-shrink: 0 !important;
    }
    
    .brand-title {
        font-size: 1.15rem !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        font-family: 'Pacifico', 'Dancing Script', 'Kalam', cursive !important;
        background: linear-gradient(135deg,
            #00d8cc 5%, #8a2be2 55%, #ff3c6e 85%, #e67e4d 100%) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
        letter-spacing: 1px !important;
        color: #00d8cc !important;
    }
    
    .brand-underline {
        width: 80px !important;
        height: 2px !important;
    }
    
    .hamburger-menu {
        top: 14px !important;
        left: 10px !important;
        width: 36px !important;
        height: 36px !important;
    }
    
    .hamburger-line {
        width: 20px;
        height: 2px;
    }
    
    .side-nav {
        width: 100%;
        left: -100%;
    }
    
    .language-selector {
        top: 15px;
        right: 15px;
        padding: 6px 10px;
        gap: 6px;
    }
    
    .lang-btn {
        min-width: 45px;
        padding: 6px 10px;
        font-size: 12px;
    }
    
    .footer-header {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .quick-links-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

/* Tablet - 601px to 900px */
@media (min-width: 601px) and (max-width: 900px) {
    .brand-bar {
        height: 90px;
        padding: 0 20px;
    }
    
    .hamburger-menu {
        top: 30px;
    }
    
    .header-logo-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .brand-title {
        font-size: 1.8rem;
        font-family: 'Pacifico', 'Dancing Script', 'Kalam', cursive !important;
        background: linear-gradient(135deg,
            #00d8cc 5%, #8a2be2 55%, #ff3c6e 85%, #e67e4d 100%) !important;
        /* background-size: 300% 300% !important; */ /* Parlama efekti için kaldırıldı */
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
        /* animation: gradientMove 8s ease-in-out infinite !important; */ /* Parlama animasyonu kaldırıldı */
        /* filter: drop-shadow(0 0 15px rgba(16, 213, 194, 0.5)) !important; */ /* Parlama efekti kaldırıldı */
        letter-spacing: 1px !important;
        color: #00d8cc !important;
    }
    
    .brand-underline {
        width: 150px;
    }
    
    .side-nav {
        width: 320px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .quick-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop - 901px and above */
@media (min-width: 901px) {
    .brand-bar {
        height: 100px;
        padding: 0 30px;
    }
    
    .header-logo-wrapper {
        width: 80px;
        height: 80px;
    }
    
    .brand-title {
        font-size: 2.2rem;
        font-family: 'Pacifico', 'Dancing Script', 'Kalam', cursive !important;
        background: linear-gradient(135deg,
            #00d8cc 5%, #8a2be2 55%, #ff3c6e 85%, #e67e4d 100%) !important;
        /* background-size: 300% 300% !important; */ /* Parlama efekti için kaldırıldı */
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
        /* animation: gradientMove 8s ease-in-out infinite !important; */ /* Parlama animasyonu kaldırıldı */
        /* filter: drop-shadow(0 0 15px rgba(16, 213, 194, 0.5)) !important; */ /* Parlama efekti kaldırıldı */
        letter-spacing: 1px !important;
        color: #00d8cc !important;
    }
    
    .brand-underline {
        width: 200px;
        height: 3px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .quick-links-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Portrait Mode Support */
@media (orientation: portrait) and (max-width: 900px) {
    .brand-bar {
        height: 70px !important;
        padding: 0 10px !important;
    }
    
    .brand-title-logo-group {
        gap: 8px !important;
        padding-left: 40px !important; /* offset for hamburger */
        padding-right: 10px !important;
    }

    /* Language selector: positioned below header bar to avoid overlapping title */
    .language-selector {
        top: 75px !important;
        right: 10px !important;
        left: auto !important;
        padding: 4px 6px !important;
        gap: 3px !important;
        z-index: 10010 !important;
    }

    .lang-btn {
        min-width: 34px !important;
        padding: 4px 8px !important;
        font-size: 11px !important;
    }
    
    .hamburger-menu {
        top: 14px !important;
        left: 10px !important;
        width: 36px !important;
        height: 36px !important;
    }
    
    .header-logo-wrapper {
        width: 38px !important;
        height: 38px !important;
        min-width: 38px !important;
        flex-shrink: 0 !important;
    }
    
    .brand-title {
        font-size: 1.15rem !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        font-family: 'Pacifico', 'Dancing Script', 'Kalam', cursive !important;
        background: linear-gradient(135deg,
            #00d8cc 5%, #8a2be2 55%, #ff3c6e 85%, #e67e4d 100%) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
        letter-spacing: 1px !important;
        color: #00d8cc !important;
    }
    
    .brand-underline {
        width: 80px !important;
        height: 2px !important;
    }
}

/* Landscape Mode Adjustments — broad coverage (all landscape phones) */
@media (orientation: landscape) and (max-height: 768px) {
    .brand-bar {
        height: 58px !important;
        padding: 0 10px !important;
    }

    .hamburger-menu {
        top: 10px !important;
        left: 10px !important;
        width: 34px !important;
        height: 34px !important;
    }

    .hamburger-line {
        width: 18px;
        height: 2px;
    }

    /* Push logo group away from hamburger (left) and language selector (right) */
    .brand-title-logo-group {
        gap: 8px !important;
        padding-left: 44px !important;
        padding-right: 130px !important; /* room for EN/TR/DE box */
    }

    .header-logo-wrapper {
        width: 36px !important;
        height: 36px !important;
        min-width: 36px !important;
        flex-shrink: 0 !important;
    }

    .brand-title {
        font-size: 0.95rem !important;
        white-space: nowrap !important;   /* prevent wrapping to 2nd line */
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        font-family: 'Pacifico', 'Dancing Script', 'Kalam', cursive !important;
        background: linear-gradient(135deg,
            #00d8cc 5%, #8a2be2 55%, #ff3c6e 85%, #e67e4d 100%) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
        letter-spacing: 0.5px !important;
        color: #00d8cc !important;
    }
    .brand-underline {
        width: 70px !important;
        height: 2px !important;
    }

    /* Language selector: vertically centered, hugging right edge */
    .language-selector {
        top: 25px !important;
        right: 10px !important;
        padding: 4px 6px !important;
        gap: 3px !important;
        transform: none !important;
    }

    .lang-btn {
        min-width: 32px !important;
        padding: 4px 6px !important;
        font-size: 10px !important;
    }

    .side-nav-content {
        padding-top: 65px;
    }
}

/* Landscape Mode Adjustments — very short screens (legacy / unchanged behaviour) */
@media (orientation: landscape) and (max-height: 600px) {
    .brand-bar {
        height: 58px;
    }

    .side-nav-content {
        padding-top: 65px;
    }
}

/* ===== MAIN CONTENT AREA ADJUSTMENTS ===== */

.main-content {
    margin-top: 100px; /* Space for fixed header */
    min-height: calc(100vh - 100px);
}

/* Page-specific adjustments */
@media (max-width: 600px) {
    .main-content {
        margin-top: 80px;
    }
}

@media (min-width: 601px) and (max-width: 900px) {
    .main-content {
        margin-top: 90px;
    }
}

@media (orientation: portrait) and (max-width: 900px) {
    .main-content {
        margin-top: 70px;
    }
}

@media (orientation: landscape) and (max-height: 768px) {
    .main-content {
        margin-top: 58px;
    }
}

@media (orientation: landscape) and (max-height: 600px) {
    .main-content {
        margin-top: 60px;
    }
}

@keyframes footerLogoRotate {
    0% { background-position: 0% 50%; }
    25% { background-position: 100% 50%; }
    50% { background-position: 200% 50%; }
    75% { background-position: 300% 50%; }
    100% { background-position: 0% 50%; }
}

/* ===== SMOOTH SCROLL NAVIGATION ENHANCEMENTS - UPDATED ===== */

/* Smooth scrolling for the entire page */
html {
    scroll-behavior: smooth;
}

/* updated - Enhanced navigation item effects consistent with main styles */
.nav-sub-item {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    /* updated - Ensure consistent z-index */
    z-index: 101;
}

/* updated - Consistent gradient hover effect */
.nav-sub-item:hover {
    background: rgba(24, 24, 40, 0.95);
    transform: translateX(10px); /* updated - Consistent with main nav */
    border-left: 3px solid;
    border-image: linear-gradient(135deg,
         #00d8cc 5%, #8a2be2 55%, #ff3c6e 85%, #e67e4d 100%
    );
    /* updated - Better text visibility */
    color: #8a2be2 !important;
    text-shadow: linear-gradient(135deg,
            #00d8cc 5%,    /* Teal */
            #8a2be2 55%,   /* Purple */
            #ff3c6e 85%,   /* Pink */
            #e67e4d 100%   /* Bright Orange */ );
}

/* updated - Consistent active state */
.nav-sub-item:active {
    transform: translateX(8px); /* updated - Slightly less movement on active */
    /* Keep the original gradient text appearance */
    background: linear-gradient(135deg,
            #00d8cc 5%,    /* Teal */
            #8a2be2 55%,   /* Purple */
            #ff3c6e 85%,   /* Pink */
            #e67e4d 100%   /* Bright Orange */     );
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientMove 8s ease-in-out infinite;
}

/* Add white border on active */
.nav-sub-item:active::before {
    content: '';
    position: absolute;
    left: -3px;
    top: 0;
    bottom: 0;
    width: 6px;
    background: rgba(16, 213, 194, 0.3);
    border-radius: 0 3px 3px 0;
    z-index: 102;
}

/* Loading state for navigation items */
.nav-sub-item.loading {
    opacity: 0.7;
    cursor: wait;
}

.nav-sub-item.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    /* updated - Use consistent gradient colors */
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 240, 255, 0.4) 25%,
        rgba(106, 17, 203, 0.4) 50%,
        rgba(255, 60, 110, 0.4) 75%,
        transparent 100%);
    animation: slideLoading 1s infinite;
}

@keyframes slideLoading {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Highlight effect for target sections */
.scroll-highlight {
    position: relative;
    animation: scrollHighlight 2s ease-in-out;
}

@keyframes scrollHighlight {
    0% {
        box-shadow: none;
        transform: scale(1);
    }
    25% {
        box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
        transform: scale(1.02);
    }
    75% {
        box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
        transform: scale(1.01);
    }
    100% {
        box-shadow: none;
        transform: scale(1);
    }
}

/* Enhanced side navigation close animation */
.side-nav.closing {
    animation: slideOut 0.3s ease-in-out forwards;
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(-100%);
        opacity: 0;
    }
}

/* Cross-browser compatibility for smooth scrolling */
* {
    -webkit-scroll-behavior: smooth;
    -moz-scroll-behavior: smooth;
    -ms-scroll-behavior: smooth;
    scroll-behavior: smooth;
}

/* updated - Enhanced focus management for accessibility */
.nav-sub-item:focus {
    outline: none;
    transform: translateX(6px);
    /* Keep the original gradient text appearance */
    background: linear-gradient(135deg,
            #00d8cc 5%,    /* Teal */
            #8a2be2 55%,   /* Purple */
            #ff3c6e 85%,   /* Pink */
            #e67e4d 100%   /* Bright Orange */     );
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientMove 8s ease-in-out infinite;
}

/* Add white border on focus */
.nav-sub-item:focus::before {
    content: '';
    position: absolute;
    left: -3px;
    top: 0;
    bottom: 0;
    width: 6px;
    background: rgba(16, 213, 194, 0.3);
    border-radius: 0 3px 3px 0;
    z-index: 102;
}

/* updated - Responsive adjustments for mobile consistency */
@media (max-width: 768px) {
    .nav-sub-item:hover {
        /* Keep original gradient text appearance on mobile */
        background: linear-gradient(135deg,
            #00d8cc 5%,    /* Teal */
            #8a2be2 55%,   /* Purple */
            #ff3c6e 85%,   /* Pink */
            #e67e4d 100%   /* Bright Orange */     );
        background-size: 300% 300%;
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: gradientMove 8s ease-in-out infinite;
        transform: translateX(4px); /* updated - Better mobile touch target and container fit */
    }
    
    /* White border for mobile hover */
    .nav-sub-item:hover::before {
        content: '';
        position: absolute;
        left: -3px;
        top: 0;
        bottom: 0;
        width: 6px;
        background: rgba(16, 213, 194, 0.3);
        border-radius: 0 3px 3px 0;
        z-index: 102;
    }
    
    .scroll-highlight {
        animation-duration: 1.5s;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    .nav-sub-item,
    .scroll-highlight {
        transition: none;
        animation: none;
    }
}

/* ===== LOGO REDIRECTION ENHANCEMENTS ===== */

/* Enhanced logo hover effects for clickable functionality - moved to main definition */

/* Logo hover effects removed */

/* Logo active effects removed */

/* Enhanced brand title hover effects removed */

/* Brand title hover and active effects removed */

/* Logo hover pulse effect removed */

@keyframes logoPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.85;
    }
}

/* Loading state for navigation */
.header-logo-wrapper.navigating,
.brand-title.navigating {
    opacity: 0.7;
    pointer-events: none;
}

.header-logo-wrapper.navigating::after,
.brand-title.navigating::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid #00d8cc;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== MOBILE HEADER CENTERING ===== */
@media (max-width: 768px) {
    .brand-bar {
        justify-content: center;
        padding: 0 15px;
    }
    
    .brand-title-logo-group {
        justify-content: center;
        width: 100%;
        max-width: 300px;
    }
    
    .brand-title {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .header-logo-wrapper {
        width: 60px;
        height: 60px;
    }
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    /* Logo hover effect removed for mobile */
    
/* Title hover effect removed */
}

/* Focus states for accessibility - all focus removed */

/* ===== Z-INDEX HIERARCHY ===== */
:root {
    --z-hero: 1;
    --z-hero-icon: 5;
    --z-content: 10;
    --z-index-dropdown: 1000;
    --z-index-sticky: 1020;
    --z-index-fixed: 1030;
    --z-index-modal-backdrop: 1040;
    --z-index-modal: 1050;
    --z-index-popover: 1060;
    --z-index-tooltip: 1070;
    --z-fab: 9998;
    --z-b2b: 9999;
    --z-whatsapp: 99996;
    --z-index-whatsapp: 99996;
    --z-sidenav: 99997;
    --z-header: 99998;
    --z-hamburger: 99999;
    --z-index-hamburger: 99999;
    --z-modal: 100000;
}

/* ===== BODY OVERFLOW FIX ===== */
body {
    overflow-x: hidden;
}

/* ===== HAMBURGER MENU Z-INDEX ===== */
.hamburger-menu {
    z-index: var(--z-index-hamburger) !important;
}

/* ===== WHATSAPP WIDGET Z-INDEX ===== */
#intellecta-meet-widget {
    z-index: var(--z-index-whatsapp) !important;
}

/* ===== HERO SECTION Z-INDEX FIX ===== */
.hero {
    z-index: var(--z-index-hero) !important;
}

.hero-icon {
    z-index: var(--z-index-hero-icon) !important;
}

/* ===== OTHER ELEMENTS Z-INDEX FIX ===== */
.knot-tooltip {
    z-index: var(--z-index-tooltip) !important;
}

.ai-widget-popup {
    z-index: 9998 !important;
}

/* ===== GLOBAL PORTRAIT MODE: Widget Positioning ===== */
/* Right side: Athena (bottom) + FAB (above)  |  Left side: Meet widget (bottom) + B2B drawer (above) */
@media (orientation: portrait) and (max-width: 768px) {
    /* Athena launcher → bottom-right */
    .athena-launcher,
    #athena-launcher {
        left: auto !important;
        right: 16px !important;
        bottom: 20px !important;
    }

    
 

    .athena-window {
        left: auto !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        max-height: 88vh !important;
        border-radius: 20px 20px 0 0 !important;
        transform-origin: bottom right !important;
    }

    /* FAB container → above Athena on right */
    .fab-container {
        right: 12px !important;
        bottom: 90px !important;
    }

    .fab-main {
        width: 46px !important;
        height: 46px !important;
        font-size: 18px !important;
    }

    .fab-label {
        font-size: 0.6rem !important;
    }

    /* Meet widget → bottom-left */
    #intellecta-meet-widget {
        left: 12px !important;
        right: auto !important;
        bottom: 16px !important;
    }

    /* B2B drawer → above Meet on left */
    .b2b-pricing-drawer {
        bottom: 80px !important;
        left: 12px !important;
    }

    .b2b-drawer-toggle {
        padding: 8px 12px !important;
        font-size: 0.75rem !important;
        min-height: auto !important;
        min-width: auto !important;
    }
}
