/* COMPONENTS STYLES */

/* Navigation */
nav#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: #00000029;
    backdrop-filter: blur(10px);
    padding: 25px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

nav#navbar.hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 60px;
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-links a {
    color: #ffffff !important;
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 1px;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.6;
}

.lang-selector {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-link {
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 1px;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.lang-link.active, .lang-link:hover {
    opacity: 1;
}

.lang-divider {
    color: rgba(255, 255, 255, 0.2);
    font-size: 12px;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.arrow {
    font-size: 8px;
    vertical-align: middle;
    margin-left: 5px;
    transition: transform 0.3s;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    margin-left: 40px;
    transform: translateX(-50%) translateY(10px);
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    list-style: none;
    padding: 15px 0;
    min-width: 200px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1100;
}

.dropdown-menu li {
    padding: 0;
    text-align: left;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 25px;
    font-size: 11px !important;
    letter-spacing: 1px;
    white-space: nowrap;
    transition: background 0.3s, opacity 0.3s;
}

.dropdown-menu li a:hover {
    background: rgba(255, 255, 255, 0.1);
    opacity: 1 !important;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown:hover .arrow {
    transform: rotate(180deg);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 26px;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 2.5px;
    margin-top: 35px;
    transition: all 0.4s ease;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #fff;
    transition: left 0.4s ease;
    z-index: -1;
}

.btn:hover {
    color: #000;
}

.btn:hover::before {
    left: 0;
}

.custom-hero-button {
    background-color: transparent;
    color: #3db451 !important;
    padding: 10px 30px;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
    transition: all 0.3s ease;
    border: 3px solid #3db451;
    margin-left: 40px;
    transform: translateX(250px);
}

.custom-hero-button:hover {
    background-color: #3db451;
    color: white !important;
}

.btn-dark {
    background-color: transparent;
    color: #3db451 !important;
}
.btn-dark:hover {
    background-color: #ffffff;
    color: #000  !important;
}

/* Sticky Menu Box */
#sticky-menu-box {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%) translateX(-120%);
    opacity: 0;
    background-color: #00000029;
    color: white;
    padding: 15px;
    z-index: 1000;
    transition: transform 0.4s ease-out, opacity 0.4s ease-out;
    border-radius: 0 8px 8px 0;
    border: 1px solid rgba(60, 180, 81, 0.3);
    border-left: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

#sticky-menu-box.is-visible {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
    pointer-events: all;
}

.vertical-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    margin-bottom: 0px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #3cb451;
}

.sticky-menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    position: relative;
    width: 30px;
    height: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    z-index: 1050;
}

.sticky-menu-toggle .line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #3cb451;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

#sticky-menu-box.menu-open .sticky-menu-toggle .line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

#sticky-menu-box.menu-open .sticky-menu-toggle .line:nth-child(2) {
    opacity: 0;
}

#sticky-menu-box.menu-open .sticky-menu-toggle .line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Overlay Menu */
#sticky-menu-content {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.97);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95);
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
    pointer-events: none;
}

#sticky-menu-content.visible {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    pointer-events: all;
}

#sticky-menu-content > div {
    max-width: 600px;
    width: 100%;
    padding: 0 40px;
}

#sticky-menu-content .close-button {
    position: absolute;
    top: 30px;
    right: 40px;
    background: none;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2001;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

#sticky-menu-content .close-button:hover {
    background: #3cb451;
    border-color: #3cb451;
    transform: rotate(90deg);
}

#sticky-menu-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 50px 0;
    text-align: center;
}

#sticky-menu-content ul li {
    margin-bottom: 25px;
}

#sticky-menu-content ul li:last-child {
    margin-bottom: 0;
}

#sticky-menu-content ul li a {
    color: white;
    text-decoration: none;
    font-size: 2.5rem;
    font-weight: 800;
    transition: color 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: inline-block;
    position: relative;
    padding-bottom: 8px;
}

#sticky-menu-content ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background: #3cb451;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

#sticky-menu-content ul li a:hover {
    color: #3cb451;
}

#sticky-menu-content ul li a:hover::after {
    width: 100%;
}

/* Language Selector in Menu */
.language-selector {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.language-selector h3 {
    font-size: 14px;
    margin-bottom: 20px;
    color: #3cb451;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
}

.language-selector ul {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin: 0 !important;
}

.language-selector ul li {
    margin: 0 !important;
}

.language-selector ul li a {
    font-size: 1rem !important;
    font-weight: 500 !important;
    opacity: 0.6;
    transition: opacity 0.3s;
    letter-spacing: 1px !important;
}

.language-selector ul li a:hover {
    opacity: 1;
}

.language-selector ul li a::after {
    display: none !important;
}

/* Deezer Box */
.deezer-box {
    margin-top: 40px;
    padding: 25px;
    background: rgba(60, 180, 81, 0.1);
    border: 1px solid rgba(60, 180, 81, 0.2);
    border-radius: 8px;
    text-align: center;
}

.deezer-box h3 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #3cb451;
    font-weight: 600;
    letter-spacing: 1px;
}

.deezer-box button {
    padding: 12px 30px;
    background: #3cb451;
    border: none;
    color: #000;
    font-weight: 700;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.deezer-box button:hover {
    background: #45d05c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(60, 180, 81, 0.4);
}

.deezer-box img {
    margin-top: 20px;
    border-radius: 8px;
    width: 100%;
    max-width: 180px;
    border: 2px solid rgba(60, 180, 81, 0.3);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 50px;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: bounce 2s infinite;
    cursor: pointer;
    opacity: 0.8;
    z-index: 10;
}


/* Accordion */
/* Accordion */
.acc-card {
    border-top: 1px solid rgba(255,255,255,0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.acc-head {
    display: flex;
    align-items: center;
    padding: 35px 0;
    gap: 30px;
    transition: all 0.3s ease;
}

.acc-card:hover .acc-head {
    padding-left: 10px;
}

.acc-num {
    color: #3cb451;
    font-size: 14px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.acc-card.active .acc-num {
    transform: scale(1.1);
}

.acc-text {
    font-size: 23px;
    font-weight: 500;
    flex: 1;
    transition: color 0.4s ease;
}

.plus-icon-wrap {
    width: 10px;
    height: 10px;
    position: relative;
}

.plus-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: #3cb451;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.plus-line::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #3cb451;
    transform: rotate(90deg);
    top: 0;
    left: 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
    opacity: 1;
}

.acc-card.active .plus-line {
    transform: translateY(-50%) rotate(180deg);
}

.acc-card.active .plus-line::after {
    transform: rotate(0deg);
    opacity: 0;
}

.acc-card.active .acc-text {
    color: #3cb451;
}

.acc-body {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.4s ease 0.1s,
                padding 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.acc-card.active .acc-body {
    max-height: 500px;
    opacity: 1;
    padding-bottom: 40px;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.5s ease 0.2s,
                padding 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.acc-content p {
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 18px;
    max-width: 500px;
    transform: translateY(-10px);
    transition: transform 0.4s ease 0.2s;
}

.acc-card.active .acc-content p {
    transform: translateY(0);
}

.module-link {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid #3cb451;
    padding-bottom: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.module-link:hover {
    color: #3cb451;
    padding-left: 5px;
}
/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 25px 0 30px 0;
}

.feature-list li {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    padding-left: 30px;
    margin-bottom: 20px;
    position: relative;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.5px;
}

.feature-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #3cb451;
    font-size: 18px;
    font-weight: 700;
}

.feature-list li:last-child {
    margin-bottom: 0;
}

/* Testimonial Slider */
.testimonial-slider {
    position: relative;
    height: 50px;
    overflow: hidden;
}

.testimonial-slider .testimonial {
    position: absolute;
    width: 100%;
    opacity: 0;
    transition: opacity 0.6s;
}

.testimonial-slider .testimonial.active {
    opacity: 1;
}

.testimonial-slider h2,
.testimonial-slider p,
.testimonial-slider strong {
    color: #000 !important;
}

.testimonial-controls {
    margin-top: 20px;
}

.testimonial-controls button {
    padding: 8px 12px;
    margin: 0 5px;
    cursor: pointer;
    background: #3cb451;
    border: none;
    color: #000;
    font-weight: 600;
    border-radius: 4px;
}

/* Chatbot Launcher Style */
#chatbot-launcher {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    left: auto !important;
    width: 60px;
    height: 60px;
    background: #00000029;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px #3cb451;
    transition: all 0.3s ease;
    z-index: 9999;
    border: 1px solid #e0e0e055;
}

#chatbot-launcher:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 35px rgba(0, 0, 0, 0.3);
}

#chatbot-launcher span {
    color: #3cb451 !important;
    font-weight: 800;
    font-size: 18px;
    position: relative;
    z-index: 2;
}

/* Konuşma balonu oku */
#chatbot-launcher::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 12px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #3cb45275;
    filter: drop-shadow(0 -2px 2px rgba(0, 0, 0, 0.1));
    z-index: 1;
}

@media (max-width: 768px) {
    #chatbot-launcher {
        bottom: 20px !important;
        right: 20px !important;
        width: 55px;
        height: 55px;
    }
    
    #chatbot-launcher span {
        font-size: 16px;
    }
}
/* Chatbot Window */
#chatbot-window {
    position: fixed !important;
    bottom: 110px !important;
    right: 30px !important;
    left: auto !important;
    width: 380px;
    height: 550px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 9998;
    animation: slideUp 0.3s ease;
}

#chat-toggle:checked ~ #chatbot-window {
    display: flex;
}

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

/* Chatbot Header */
.chatbot-header {
    background: linear-gradient(135deg, #3cb451, #2a8f3d);
    color: #ffffff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.close-chat {
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.close-chat:hover {
    opacity: 1;
}

/* Messages Area */
.chatbot-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: #f8f9fa;
}

.chatbot-messages::-webkit-scrollbar {
    width: 6px;
}

.chatbot-messages::-webkit-scrollbar-track {
    background: transparent;
}

.chatbot-messages::-webkit-scrollbar-thumb {
    background: #c