/* Mevcut style.css içeriği */
/* Genel ayarlar */
body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* Responsive container */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Menü çubuğu */
.menu-bar {
    position: sticky;
    top: 0;
    background-color: #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    border-bottom: none;
    transition: all 0.3s ease;
    z-index: 9999;
}

.menu-bar.scrolled {
    background-color: #000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.menu-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    box-sizing: border-box;
}

.logo img {
    height: 60px;
    transition: height 0.3s ease;
}

/* Hamburger menü */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 4px 0;
    transition: all 0.3s ease;
}

.menu-bar.scrolled .hamburger span {
    background-color: #fff;
}

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

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

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

/* Menü stilleri */
.main-nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    align-items: center;
}

.main-nav li {
    position: relative;
    margin: 0 10px;
}

.main-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    padding: 12px 16px;
    display: block;
    transition: color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
    font-size: 16px;
}

.menu-bar.scrolled .main-nav a {
    color: #fff;
}

.main-nav a:hover {
    color: #288616;
    transform: translateY(-2px);
}

.menu-bar.scrolled .main-nav a:hover {
    color: #288616;
}

/* Dropdown menü */
.dropdown-content {
    display: none;
    position: absolute;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    z-index: 1;
    top: 100%;
    left: 0;
    padding: 10px 0;
    min-width: 200px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.region-menu:hover .sub-menu {
    display: block;
}

.menu-bar.scrolled .dropdown-content {
    background: #000;
}

.dropdown-content a {
    color: #333;
    padding: 8px 20px;
    font-weight: 400;
    display: block;
    transition: background-color 0.3s ease, padding-left 0.3s ease;
}

.menu-bar.scrolled .dropdown-content a {
    color: #fff;
}

.dropdown-content a:hover {
    background-color: #f0f0f0;
    padding-left: 25px;
}

.menu-bar.scrolled .dropdown-content a:hover {
    background-color: #333;
}

/* Bölge menüsü (Destinasyonlar için) */
.region-menu {
    position: relative;
}

.region-link {
    display: block;
    padding: 8px 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: #1a1a1a;
}

.menu-bar.scrolled .region-link {
    color: #fff;
}

.sub-menu {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    min-width: 200px;
    padding: 10px 0;
}

.menu-bar.scrolled .sub-menu {
    background: #000;
}

/* Destinasyonlar alt menüsü */
.destinations-submenu {
    display: none;
    position: absolute;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    z-index: 1;
    top: 0;
    left: 100%;
    padding: 10px 0;
    min-width: 200px;
}

.region-menu:hover .destinations-submenu {
    display: block;
}

.menu-bar.scrolled .destinations-submenu {
    background: #000;
}

.destinations-submenu a {
    color: #333;
    padding: 8px 20px;
    font-weight: 400;
    display: block;
    transition: background-color 0.3s ease, padding-left 0.3s ease;
}

.menu-bar.scrolled .destinations-submenu a {
    color: #fff;
}

.destinations-submenu a:hover {
    background-color: #f0f0f0;
    padding-left: 25px;
    color: #288616;
}

.menu-bar.scrolled .destinations-submenu a:hover {
    background-color: #333;
}

/* Sağ bölüm */
.right-section {
    display: flex;
    align-items: center;
}

/* Desktop Join Button Styles */
.join-btn {
    position: relative;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(45deg, #288616, #35a820);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    white-space: nowrap;
    border: 2px solid transparent;
    box-shadow: 0 6px 15px rgba(40, 134, 22, 0.3);
    overflow: hidden;
    z-index: 1;
}

.join-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: 0.6s;
    z-index: -1;
}

.join-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #35a820, #42c829);
    opacity: 0;
    transition: 0.4s;
    z-index: -2;
    border-radius: 50px;
}

.join-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(40, 134, 22, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
}

.join-btn:hover::before {
    left: 100%;
}

.join-btn:hover::after {
    opacity: 1;
}

.join-btn:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 5px 15px rgba(40, 134, 22, 0.4);
}

.search-icon {
    height: 28px;
    cursor: pointer;
    margin-left: 20px;
    transition: transform 0.2s ease;
}

.menu-bar.scrolled .search-icon {
    filter: invert(1);
}

.search-icon:hover {
    transform: scale(1.15);
}

/* Arama çubuğu */
.search-bar {
    padding: 15px;
    background-color: #f9f9f9;
    text-align: center;
    border-bottom: 1px solid #ddd;
    position: relative;
}

#search-input {
    width: 60%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 25px;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: width 0.3s ease;
}

#search-input:focus {
    width: 70%;
    outline: none;
    border-color: #288616;
}

/* Hero Section pozisyon düzenlemeleri */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-section.scrolled {
    margin-top: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 100px 20px 0;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.5s ease;
    margin: 0 auto;
    text-align: center;
}

.hero-section.scrolled .hero-content {
    opacity: 0;
    transform: translateY(-50px);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.scroll-indicator::before {
    content: '';
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid #fff;
    border-radius: 15px;
    margin: 0 auto 10px;
}

.scroll-indicator::after {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    margin: -44px auto 0;
    animation: scrollIndicator 2s infinite;
}

@keyframes scrollIndicator {
    0% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(20px); opacity: 0.5; }
    100% { transform: translateY(0); opacity: 1; }
}

.hero-section.scrolled .scroll-indicator {
    opacity: 0;
}

.welcome-text {
    font-size: 2.8em;
    margin-bottom: 15px;
    font-weight: 700;
}

.hero-content h2 {
    font-size: 1.8em;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.1em;
    margin-bottom: 30px;
    line-height: 1.5;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.subscription-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 400px;
    margin: 0 auto;
}

.subscription-form input[type="text"],
.subscription-form input[type="email"] {
    padding: 12px 15px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.9);
}

.subscription-form .consent-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    line-height: 1.4;
    background: rgba(0, 0, 0, 0.6);
    padding: 10px;
    border-radius: 8px;
    margin: 5px 0;
}

.subscription-form .consent-label span {
    color: rgba(255, 255, 255, 0.9);
}

.subscription-form .privacy-link {
    color: #4CAF50;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.subscription-form .privacy-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #4CAF50;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.subscription-form .privacy-link:hover {
    color: #66BB6A;
}

.subscription-form .privacy-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.subscription-form button {
    background-color: #288616;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.subscription-form button:hover {
    background-color: #1e6b11;
    transform: scale(1.05);
}

/* Footer */
.footer {
    background-color: #000;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-logo img {
    height: 60px;
}

.footer-links h3,
.footer-social h3,
.footer-contact h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #288616;
}

.footer-social a {
    margin-right: 15px;
}

.footer-social img {
    height: 24px;
    transition: transform 0.2s ease;
}

.footer-social img:hover {
    transform: scale(1.15);
}

.footer-contact p {
    margin: 10px 0;
}

.footer-contact a {
    color: #fff;
    text-decoration: none;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #288616;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

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

.scroll-to-top:hover {
    background-color: #1e6b11;
    transform: translateY(-3px);
}

/* Responsive Tasarım */
@media (max-width: 1024px) {
    .menu-container {
        padding: 15px 20px;
    }

    .logo img {
        height: 50px;
    }

    .join-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .search-icon {
        height: 24px;
    }

    .main-nav ul {
        gap: 10px;
    }

    .main-nav li {
        margin: 0 5px;
    }

    .main-nav a {
        font-size: 14px;
        padding: 10px 12px;
    }
}

@media (max-width: 768px) {
    .menu-container {
        padding: 10px 15px;
    }

    .hamburger {
        display: flex;
        z-index: 1000;
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: #fff;
        padding: 80px 20px 20px;
        transition: 0.3s ease-in-out;
        overflow-y: auto;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    }

    .menu-bar.scrolled .main-nav {
        background: #000;
    }

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

    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav li {
        width: 100%;
        margin: 5px 0;
    }

    .main-nav a {
        padding: 12px 0;
        font-size: 16px;
        width: 100%;
    }

    .join-btn.hide-on-mobile {
        display: none !important;
    }

    .mobile-join-btn {
        display: block;
        width: 100%;
        text-align: center;
        margin-top: 20px;
        padding: 15px;
        background-color: #288616;
        color: #fff;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .mobile-join-btn:hover {
        background-color: #1e6b11;
        transform: translateY(-2px);
    }

    .dropdown-content {
        position: static;
        box-shadow: none;
        display: none;
        padding: 0;
        background: transparent;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }

    .region-menu {
        width: 100%;
    }

    .destinations-submenu {
        position: static;
        box-shadow: none;
        padding-left: 20px;
        background: transparent;
        display: none;
    }

    .region-menu:hover .destinations-submenu {
        display: block;
    }

    .hero-section {
        min-height: auto;
        padding: 80px 0 40px;
    }

    .hero-content {
        padding: 40px 20px;
        text-align: center;
        max-width: 100%;
    }

    .welcome-text {
        font-size: 2em;
        margin-bottom: 15px;
    }

    .hero-content h2 {
        font-size: 1.5em;
        margin-bottom: 15px;
    }

    .hero-content p {
        font-size: 1em;
        margin-bottom: 20px;
    }

    .subscription-form {
        max-width: 100%;
        padding: 20px;
    }

    .subscription-form input[type="text"],
    .subscription-form input[type="email"] {
        width: 100%;
        margin-bottom: 10px;
    }

    .subscription-form .consent-label {
        font-size: 12px;
        padding: 8px;
    }

    .subscription-form button {
        width: 100%;
        margin-top: 15px;
    }

    /* Intro Section Responsive */
    .intro-container {
        flex-direction: column;
        padding: 40px 20px;
    }

    .intro-content {
        width: 100%;
        text-align: center;
        margin-bottom: 30px;
    }

    .intro-image {
        width: 100%;
        margin-top: 20px;
    }

    .intro-image img {
        max-width: 100%;
        height: auto;
    }

    /* About Section Responsive */
    .about-section {
        padding: 40px 20px;
    }

    .about-content {
        max-width: 100%;
        padding: 20px;
    }

    .about-title {
        font-size: 1.8em;
    }

    .about-description {
        font-size: 1em;
    }

    /* Features Section Responsive */
    .features-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }

    .feature-card {
        padding: 20px;
    }

    /* Destinations Grid Responsive */
    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }

    .destination-card.large {
        grid-column: auto;
        grid-row: auto;
    }

    /* Tips Section Responsive */
    .tips-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .tips-header h2 {
        font-size: 1.8em;
        text-align: center;
    }

    /* Footer Responsive */
    .footer-container {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

    .footer-links {
        margin: 20px 0;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        padding: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 30px 15px;
    }

    .welcome-text {
        font-size: 1.8em;
    }

    .hero-content h2 {
        font-size: 1.3em;
    }

    .hero-content p {
        font-size: 0.9em;
    }

    .subscription-form {
        padding: 15px;
    }

    .subscription-form button {
        font-size: 14px;
        padding: 12px 20px;
    }

    .about-title {
        font-size: 1.5em;
    }

    .feature-card h3 {
        font-size: 1.2em;
    }

    .destination-content h3 {
        font-size: 1.3em;
    }

    .tips-header h2 {
        font-size: 1.5em;
    }
}

/* Touch Device Optimizations */
@media (hover: none) {
    .main-nav a:hover,
    .dropdown-content a:hover,
    .destinations-submenu a:hover {
        transform: none;
    }

    .join-btn:hover,
    .subscription-form button:hover,
    .intro-btn:hover,
    .about-btn:hover {
        transform: none;
    }
}

/* Utility Classes */
.hide-on-mobile {
    display: none !important;
}

@media (min-width: 769px) {
    .hide-on-mobile {
        display: block !important;
    }
}

.show-on-mobile {
    display: none !important;
}

@media (max-width: 768px) {
    .show-on-mobile {
        display: block !important;
    }
}

/* Fix for iOS Safari 100vh issue */
@supports (-webkit-touch-callout: none) {
    .main-nav {
        height: -webkit-fill-available;
    }
}

/* Intro Section (div1) */
.intro-section {
    position: relative;
    padding: 100px 0;
    background: #fff;
    overflow: hidden;
}

.intro-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-content {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.intro-content.visible {
    opacity: 1;
    transform: translateX(0);
}

.intro-image {
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.intro-image.visible {
    opacity: 1;
    transform: translateX(0);
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.intro-title {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.2;
}

.intro-description {
    font-size: 1.1em;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.intro-buttons {
    display: flex;
    gap: 20px;
}

.intro-btn {
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.intro-btn-primary {
    background: #288616;
    color: #fff;
    box-shadow: 0 5px 15px rgba(40, 134, 22, 0.3);
}

.intro-btn-primary:hover {
    background: #1e6b11;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(40, 134, 22, 0.4);
}

.intro-btn-secondary {
    background: transparent;
    color: #333;
    border: 2px solid #333;
}

.intro-btn-secondary:hover {
    background: #333;
    color: #fff;
    transform: translateY(-3px);
}

/* About Section (div2) */
.about-section {
    position: relative;
    height: 100vh;
    background: url('../images/div3.webp') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
    margin-bottom: -1px;
    border-bottom: none;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.about-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 2px;
    background: transparent;
}

.about-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
    margin: 0 auto;
    text-align: center;
}

.about-content.visible {
    opacity: 1;
    transform: translateY(0);
    margin: 0 auto;
}

.about-title {
    font-size: 3em;
    margin-bottom: 30px;
    font-weight: 700;
    text-align: center;
}

.about-description {
    font-size: 1.2em;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 30px;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .intro-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .intro-content {
        text-align: center;
    }

    .intro-buttons {
        justify-content: center;
    }

    .about-section {
        padding: 60px 20px;
        background-attachment: scroll;
    }

    .about-title {
        font-size: 2.2em;
    }

    .about-description {
        font-size: 1.1em;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .intro-container {
        gap: 40px;
        padding: 0 30px;
    }

    .about-section {
        background-attachment: scroll;
    }
}

/* About section buton stili */
.about-btn {
    display: inline-block;
    background: #288616;
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(40, 134, 22, 0.3);
}

.about-btn:hover {
    background: #1e6b11;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(40, 134, 22, 0.4);
}

@media (max-width: 768px) {
    .about-btn {
        padding: 12px 25px;
        font-size: 14px;
        display: block;
        text-align: center;
        margin: 20px auto 0;
        max-width: 80%;
    }
}

/* Features Section (div3) */
.features-section {
    display: none;
}

/* Destinations Preview (div4a) */
.destinations-preview {
    display: none;
}

/* Travel Tips (div4b) */
.travel-tips {
    display: none;
}

/* Planner Section (div3) */
.planner-section {
    position: relative;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    overflow: hidden;
}

.planner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.planner-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.planner-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.planner-content h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    transform: scale(0.9);
    transition: transform 0.5s ease;
}

.planner-content:hover h2 {
    transform: scale(1);
}

.planner-content p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 40px;
}

.btn-planner {
    display: inline-block;
    padding: 15px 30px;
    background: #288616;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    transform-origin: center;
}

.btn-planner:hover {
    background: #1e6b11;
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(40, 134, 22, 0.4);
}

/* Manifesto & Blog Section */
.manifesto-blog-section {
    position: relative;
    min-height: 800px;
    background: #f8f9fa;
    padding: 0;
    overflow: hidden;
    margin: 0;
    width: 100%;
}

.manifesto-blog-section .container {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
}

.section-tabs {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 10;
    padding-top: 100px;
}

.tab-btn {
    background: none;
    border: none;
    color: #333;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 1rem 2rem;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #288616;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tab-btn.active {
    color: #288616;
}

.tab-btn.active::after {
    transform: scaleX(1);
}

.content-wrapper {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
}

.content-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.content-section.active {
    opacity: 1;
    visibility: visible;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.95) 0%,
        rgba(0, 0, 0, 0.85) 30%,
        rgba(0, 0, 0, 0.4) 100%
    );
    padding: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    color: #fff;
    box-sizing: border-box;
}

.content-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 520px;
}

.section-title {
    font-size: 3.5rem;
    color: #fff;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.section-subtitle {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-bottom: 3rem;
}

.manifesto-text {
    margin-bottom: 3rem;
    max-width: 100%;
}

.manifesto-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    white-space: pre-line;
}

.content-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 520px;
}

.posts-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.post-item {
    display: flex;
    align-items: center;
    padding: 1.2rem 1.8rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.post-item:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.action-btn {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    padding: 1rem 2.5rem;
    background: transparent;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    border: 2px solid #288616;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #288616;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
    z-index: -1;
}

.action-btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(40, 134, 22, 0.3);
}

.arrow-icon {
    width: 20px;
    height: 20px;
    margin-left: 10px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    transition: transform 0.3s ease;
}

.action-btn:hover .arrow-icon {
    transform: translateX(5px);
}

@media (max-width: 1024px) {
    .content-overlay {
        padding: 3rem;
        gap: 2rem;
    }

    .section-title {
        font-size: 3rem;
    }

    .section-subtitle {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .manifesto-blog-section {
        margin-top: 0;
        min-height: 700px;
    }

    .section-tabs {
        padding-top: 60px;
    }

    .content-overlay {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
        overflow-y: auto;
        background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.95) 0%,
            rgba(0, 0, 0, 0.85) 100%
        );
    }

    .content-left,
    .content-right {
        max-width: 100%;
    }

    .section-title {
        font-size: 2.2rem;
        text-align: center;
    }

    .section-subtitle {
        font-size: 1.3rem;
        text-align: center;
    }

    .manifesto-text {
        text-align: left;
        padding: 0 1rem;
    }

    .manifesto-text p {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .posts-grid {
        margin: 2rem 0;
    }

    .action-btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
        width: auto;
        margin: 0 auto;
    }
}

/* FAQ Section */
.faq-section {
    padding: 0 0 100px;
    background: #fff;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
}

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

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-label {
    display: inline-block;
    background: rgba(40, 134, 22, 0.1);
    color: #288616;
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9em;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-header h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
}

.faq-header p {
    font-size: 1.1em;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-wrapper {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.faq-categories {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.category {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    margin-bottom: 10px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #666;
    background: #f8f9fa;
}

.category.active {
    background: #288616;
    color: #fff;
}

.category:hover:not(.active) {
    background: #eee;
    color: #333;
}

.category-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin-right: 12px;
    font-size: 0.9em;
}

.category:not(.active) .category-count {
    background: rgba(0, 0, 0, 0.1);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.faq-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: #288616;
}

.card-content {
    padding: 25px;
}

.location-tag {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(40, 134, 22, 0.1);
    color: #288616;
    border-radius: 20px;
    font-size: 0.85em;
    margin-bottom: 15px;
    font-weight: 500;
}

.faq-card h3 {
    color: #333;
    font-size: 1.2em;
    margin-bottom: 10px;
    line-height: 1.4;
    font-weight: 600;
}

.faq-card p {
    color: #666;
    font-size: 0.95em;
    line-height: 1.5;
    margin: 0;
}

.card-footer {
    padding: 15px 25px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #eee;
}

.tag {
    font-size: 0.85em;
    color: #666;
    font-weight: 500;
}

.arrow {
    width: 24px;
    height: 24px;
    color: #288616;
    transition: transform 0.3s ease;
}

.faq-card:hover .arrow {
    transform: translateX(5px);
}

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

.ask-me-btn {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    background: #288616;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.ask-me-btn svg {
    width: 20px;
    height: 20px;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.ask-me-btn:hover {
    background: #1e6b11;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(40, 134, 22, 0.2);
}

.ask-me-btn:hover svg {
    transform: translateX(5px);
}

.footer-text {
    color: #666;
    font-size: 0.95em;
}

@media (max-width: 1024px) {
    .faq-wrapper {
        grid-template-columns: 200px 1fr;
        gap: 30px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .manifesto-blog-section {
        margin-top: 0;
        min-height: 700px;
    }
    
    .faq-section {
        padding: 60px 0;
    }

    .faq-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .faq-categories {
        position: relative;
        top: 0;
        display: flex;
        overflow-x: auto;
        padding-bottom: 15px;
        margin: -10px -20px;
        padding: 10px 20px;
    }

    .category {
        margin: 0 8px 0 0;
        padding: 12px 16px;
        white-space: nowrap;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .card-content {
        padding: 20px;
    }

    .card-footer {
        padding: 12px 20px;
    }

    .ask-me-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .faq-header h2 {
        font-size: 2em;
    }

    .faq-label {
        font-size: 0.8em;
    }

    .category {
        font-size: 0.9em;
    }
}

/* Animation Classes */
[data-aos] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Tilt Effect */
.js-tilt-glare {
    border-radius: 20px;
}

.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

.post-item {
    display: flex;
    align-items: center;
    padding: 1.2rem 1.8rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.post-number {
    font-size: 1.1rem;
    font-weight: 700;
    color: #288616;
    margin-right: 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.post-item:hover .post-number {
    background: #288616;
    color: #fff;
}

.post-title {
    font-size: 1.1rem;
    line-height: 1.4;
    font-weight: 500;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: block;
    }

    .manifesto-text {
        max-width: 380px;
        text-align: center;
    }

    .manifesto-text p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.2rem;
    }

    .post-item {
        padding: 1rem 1.5rem;
    }

    .post-number {
        font-size: 0.9rem;
        width: 24px;
        height: 24px;
        margin-right: 1.2rem;
    }

    .post-title {
        font-size: 0.95rem;
        line-height: 1.3;
    }
}

/* Course Section */
.course-section {
    position: relative;
    padding: 100px 20px;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.4) 70%,
        rgba(0, 0, 0, 0.95) 100%
    );
    transition: all 0.8s ease;
    max-width: 800px;
    margin: 0 auto;
    color: #fff;
}

.course-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/div6.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -1;
}

.course-section.expanded {
    max-width: 100%;
}

.course-container {
    max-width: 1200px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.course-section.expanded .course-container {
    opacity: 1;
    transform: translateY(0);
}

.course-title {
    font-size: 2.8em;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.course-subtitle {
    font-size: 1.6em;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-bottom: 60px;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.course-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.feature-item {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 100%
    );
    padding: 35px;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(20px);
    position: relative;
    overflow: hidden;
}

.course-section.expanded .feature-item {
    opacity: 1;
    transform: translateY(0);
}

/* Cart Popup */
.cart-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cart-popup.active {
    display: flex;
    opacity: 1;
}

.popup-content {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.cart-popup.active .popup-content {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .course-section {
        padding: 40px 20px;
    }

    .course-features {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }

    .feature-item {
        margin-bottom: 15px;
        padding: 15px;
        cursor: pointer;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 15px;
        transition: all 0.3s ease;
    }

    .feature-item h4 {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 0;
        padding-right: 30px;
        position: relative;
    }

    .feature-item h4::after {
        content: '+';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        font-size: 24px;
        transition: transform 0.3s ease;
    }

    .feature-item.active h4::after {
        transform: translateY(-50%) rotate(45deg);
    }

    .feature-item p {
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease-out;
        margin: 0;
        opacity: 0;
        padding: 0;
    }

    .feature-item.active p {
        max-height: 500px;
        margin-top: 15px;
        opacity: 1;
        padding-top: 15px;
    }
}

.suggestions-box {
    position: absolute;
    top: 100%;
    left: 20%;
    right: 20%;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}

.suggestion-item {
    padding: 12px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.suggestion-item:hover {
    background: #f5f5f5;
}

.suggestion-item strong {
    color: #288616;
    font-weight: 600;
}

/* Search Results Page */
.search-results {
    padding: 100px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.search-results h2 {
    margin-bottom: 30px;
    color: #333;
}

.search-results .result-item {
    margin-bottom: 30px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.search-results .result-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.search-results .result-item h3 {
    color: #288616;
    margin-bottom: 10px;
}

.search-results .result-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.search-results .result-item .read-more {
    color: #288616;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.search-results .result-item .read-more:hover {
    text-decoration: underline;
}

@media (min-width: 769px) {
    .hero-content {
        margin: 0 auto;
        padding-left: 0;
        padding-right: 0;
    }
}

/* Course CTA Section */
.course-cta {
    text-align: center;
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 0 20px;
}

.syllabus-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.4em;
    position: relative;
    padding-bottom: 5px;
    transition: all 0.3s ease;
}

.syllabus-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #288616;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.syllabus-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.ready-text {
    font-size: 1.8em;
    color: #fff;
    margin: 30px 0;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

.join-course-btn {
    background: linear-gradient(45deg, #288616, #35a820);
    color: #fff;
    border: none;
    padding: 25px 50px;
    border-radius: 50px;
    font-size: 1.3em;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.5s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(40, 134, 22, 0.3),
                inset 0 -3px 0 rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.join-course-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: 0.5s;
}

.join-course-btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(40, 134, 22, 0.4),
                inset 0 -3px 0 rgba(0, 0, 0, 0.2);
    background: linear-gradient(45deg, #35a820, #42c829);
}

.join-course-btn:hover::before {
    left: 100%;
}

@media (max-width: 768px) {
    .course-cta {
        margin-top: 40px;
        padding: 0 15px;
    }

    .syllabus-link {
        font-size: 1.2em;
    }

    .ready-text {
        font-size: 1.4em;
        margin: 20px 0;
    }

    .join-course-btn {
        padding: 20px 30px;
        font-size: 1.1em;
        width: 100%;
        max-width: 300px;
    }
}

/* Desktop'ta mobil butonunu gizle */
.mobile-menu-bottom {
    display: none;
}

.mobile-menu-bottom .mobile-join-btn {
    display: none;
}

@media (max-width: 768px) {
    .mobile-menu-bottom {
        display: flex;
        justify-content: center;
        padding: 20px;
        margin-top: 20px;
        width: 100%;
        box-sizing: border-box;
    }

    .mobile-menu-bottom .mobile-join-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: auto;
        min-width: 200px;
        max-width: 80%;
        background: linear-gradient(45deg, #288616, #35a820);
        color: #fff;
        padding: 16px 32px;
        border-radius: 50px;
        font-weight: 700;
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        position: relative;
        overflow: hidden;
        border: 2px solid transparent;
        box-shadow: 0 6px 15px rgba(40, 134, 22, 0.3);
    }

    .mobile-menu-bottom .mobile-join-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(
            120deg,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent
        );
        transition: 0.6s;
    }

    .mobile-menu-bottom .mobile-join-btn::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, #35a820, #42c829);
        opacity: 0;
        transition: 0.4s;
        z-index: -1;
        border-radius: 50px;
    }

    .mobile-menu-bottom .mobile-join-btn:hover {
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 10px 25px rgba(40, 134, 22, 0.5);
        border-color: rgba(255, 255, 255, 0.2);
    }

    .mobile-menu-bottom .mobile-join-btn:hover::before {
        left: 100%;
    }

    .mobile-menu-bottom .mobile-join-btn:hover::after {
        opacity: 1;
    }

    .mobile-menu-bottom .mobile-join-btn:active {
        transform: translateY(-1px) scale(0.98);
        box-shadow: 0 5px 15px rgba(40, 134, 22, 0.4);
    }
} 