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

/* Blog Image Styles */
.blog-image {
    margin: 40px 0;
    text-align: center;
}

.blog-image img {
    width: 100%;
    max-width: 900px;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-image img:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.image-caption {
    margin-top: 12px;
    font-size: 14px;
    color: #666;
    font-style: italic;
    line-height: 1.6;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .blog-image img {
        max-height: 400px;
        border-radius: 8px;
    }
    
    .image-caption {
        font-size: 13px;
        padding: 0 10px;
    }
}

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

/* Menü çubuğu */
.menu-bar {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    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 {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    margin-left: 15px;
    transition: transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.search-icon img {
    height: 22px;
    width: 22px;
    transition: transform 0.2s ease;
    display: block;
    opacity: 1;
}

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

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

/* Arama çubuğu */
.search-bar {
    display: none;
    padding: 30px 20px;
    background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(248,249,250,0.98) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    position: relative;
    animation: slideDown 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.search-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #288616 0%, #35a820 50%, #42c829 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.search-bar.active::before {
    opacity: 1;
}

.search-form {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.search-bar.active {
    display: block;
}

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

#searchInput {
    width: 100%;
    max-width: 650px;
    padding: 18px 24px 18px 56px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    border: 2px solid rgba(40, 134, 22, 0.15);
    border-radius: 50px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06),
                inset 0 1px 3px rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    outline: none;
}

#searchInput::placeholder {
    color: #999;
    font-weight: 400;
}

#searchInput:focus {
    border-color: #288616;
    box-shadow: 0 6px 30px rgba(40, 134, 22, 0.15),
                0 0 0 4px rgba(40, 134, 22, 0.08),
                inset 0 1px 3px rgba(0, 0, 0, 0.03);
    transform: translateY(-2px);
}

.search-form::before {
    content: '🔍';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    pointer-events: none;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.search-form:focus-within::before {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .search-bar {
        padding: 20px 16px;
    }
    
    #searchInput {
        padding: 16px 20px 16px 48px;
        font-size: 16px;
    }
    
    .search-form::before {
        left: 16px;
        font-size: 18px;
    }
}

/* 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;
}

/* Mobilde background-attachment: fixed sorunlu, scroll kullan */
@media (max-width: 1024px) {
    .hero-section {
        background-attachment: scroll;
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
    }
}

/* Mobil için ekstra background layer */
.hero-bg-mobile {
    display: none;
}

@media (max-width: 768px) {
    .hero-bg-mobile {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        background-attachment: scroll;
        z-index: 0;
        opacity: 1;
    }
    
    .hero-section {
        background-image: none !important;
    }
    
    .hero-section::before {
        z-index: 1;
    }
}

.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 {
        padding: 6px;
        margin-left: 10px;
    }
    
    .search-icon img {
        height: 20px;
        width: 20px;
        display: block;
        opacity: 1;
    }

    .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: 600px;
        height: 100vh;
        max-height: 900px;
        padding: 80px 0 40px;
        background-attachment: scroll !important;
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
    }
    
    .hero-bg-mobile {
        display: block !important;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
        background-attachment: scroll !important;
        z-index: 0;
    }
    
    .hero-section[style*="background-image"] {
        background-image: none !important;
    }

    .hero-content {
        padding: 60px 20px 40px;
        text-align: center;
        max-width: 100%;
        position: relative;
        z-index: 2;
    }

    .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 {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 40px 20px;
    }

    .footer-logo {
        grid-column: 1 / -1;
        text-align: center;
    }

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

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 15px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 20px;
        text-align: center;
    }

    .footer-logo {
        grid-column: 1;
        margin-bottom: 10px;
    }

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

    .footer-links h3,
    .footer-social h3,
    .footer-contact h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .footer-links ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .footer-links li {
        margin-bottom: 0;
    }

    .footer-links li::after {
        content: '•';
        margin-left: 10px;
        color: rgba(255, 255, 255, 0.3);
    }

    .footer-links li:last-child::after {
        display: none;
    }

    .footer-social {
        display: flex;
        justify-content: center;
        gap: 10px;
    }

    .footer-social a {
        margin: 0;
    }

    .footer-social img {
        height: 20px;
    }

    .footer-contact p {
        margin: 8px 0;
        font-size: 14px;
    }

    .footer-bottom {
        margin-top: 20px;
        padding-top: 15px;
    }

    .footer-bottom p {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 500px;
        height: 100vh;
        max-height: 800px;
        padding: 60px 0 30px;
        background-attachment: scroll !important;
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
    }
    
    .hero-bg-mobile {
        display: block !important;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
        background-attachment: scroll !important;
        z-index: 0;
    }
    
    .hero-section[style*="background-image"] {
        background-image: none !important;
    }

    .hero-content {
        padding: 50px 15px 30px;
        position: relative;
        z-index: 2;
    }

    .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;
}

/* Destinations Section (between hero and intro) */
.destinations-section {
	position: relative;
	padding: 90px 0 70px;
	background: #000000;
	border-bottom: 1px solid rgba(255,255,255,0.06);
}

.destinations-section .container {
	max-width: 1050px;
	width: 1050px;
	height: 219px;
	padding-left: 0;
	padding-right: 0;
	position: relative;
}

.destinations-header {
	text-align: center;
	margin-bottom: 10px;
	width: 1050px;
	height: 16px;
}

.destinations-kicker {
	display: inline-block;
	padding: 6px 14px;
	border-radius: 999px;
	background: rgba(40, 134, 22, 0.08);
	color: #288616;
	font-weight: 700;
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 12px;
}

.destinations-title {
	font-size: 16px;
	line-height: 16px;
	margin: 0;
	color: #6ee17a;
	font-weight: 800;
}

.destinations-subtitle {
	color: #666;
	font-size: 1rem;
	margin: 0;
}

.destinations-nav {
	display: flex;
	flex-wrap: nowrap;
	gap: 16px;
	margin: 12px auto 12px;
	width: 1050px;
	height: 176px;
	overflow-x: auto;
	padding: 0;
	scrollbar-width: thin;
	-webkit-overflow-scrolling: touch;
	justify-content: flex-start;
	cursor: grab;
}
.destinations-nav.dragging { cursor: grabbing; }
.destinations-nav::-webkit-scrollbar { height: 8px; }
.destinations-nav::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 10px; }

/* CTA dest-item arrow glyph */
.dest-item.cta .arrow-glyph {
	display: inline-block;
	width: 80px;
	height: 80px;
	line-height: 80px;
	text-align: center;
	font-size: 64px;
	color: currentColor;
}

.dest-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	text-decoration: none;
	background: transparent;
	border-radius: 12px;
	padding: 10px;
	width: 105px;
	height: 141px;
	flex: 0 0 auto;
	border: 1px solid transparent;
	box-shadow: none;
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
	will-change: transform;
}

.dest-item:hover {
	transform: translateY(-6px);
	box-shadow: 0 30px 60px rgba(0,0,0,0.35);
	border-color: rgba(255,255,255,0.22);
	background: rgba(255,255,255,0.06);
}

.dest-icon {
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	background: transparent;
	color: #6ee17a;
	margin: 0;
	border: none;
}



.dest-icon svg {
	width: 80px;
	height: 80px;
	stroke: currentColor;
	fill: none;
}

/* Enforce consistent stroke for all inlined region SVGs */
.destinations-section svg * {
	stroke-width: 2 !important;
	stroke: currentColor !important;
}
/* Varsayılan: doldurma kapalı */
.dest-icon svg path,
.dest-icon svg g path {
	fill: currentColor !important;
	opacity: 0.25;
	stroke: none !important;
	transition: opacity 0.25s ease;
}
/* Hover: tam opaklık */
.dest-item:hover .dest-icon svg path,
.dest-item:hover .dest-icon svg g path {
	opacity: 1;
}

.dest-label {
	font-weight: 800;
	font-size: 14px;
	width: 85px;
	height: 31px;
	color: #6ee17a;
	text-align: center;
	transition: color 0.25s ease;
}

/* Mobil için wrapper */
.destinations-nav-wrapper {
	position: relative;
	width: 100%;
}

@media (max-width: 768px) {
	.destinations-section {
		padding: 40px 0 30px;
	}
	.destinations-section .container {
		position: relative;
		width: 100%;
		max-width: 100%;
		height: auto;
		padding: 0 16px;
	}
	.destinations-header {
		width: 100%;
		height: auto;
	}
	.destinations-title { font-size: 16px; }
	/* Mobil için relative wrapper */
	.destinations-nav-wrapper {
		position: relative;
		width: 100%;
		overflow: visible;
	}
	/* Tek satır kaydırma */
	.destinations-nav {
		display: flex;
		flex-wrap: nowrap;
		gap: 12px;
		width: 100%;
		height: auto;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		padding: 0;
		scroll-padding-left: 0;
		scroll-padding-right: 0;
		margin: 12px 0;
	}
	.dest-item { width: 105px; height: 141px; scroll-snap-align: start; flex-shrink: 0; }
	.dest-icon { width: 80px; height: 80px; }
	.dest-icon svg { width: 80px; height: 80px; }
}

@media (min-width: 1025px) {
	/* Desktop: tek satır, kaydırma yok, hepsi sığacak */
	.destinations-nav {
		overflow-x: visible;
		gap: 16px;
		cursor: default;
	}
	.dest-item {
		min-width: auto;
		flex: 0 0 auto;
	}
}

.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;
    min-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;
    padding: 80px 20px;
    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: 900px;
    padding: 0 20px;
    margin: 0 auto;
    text-align: center;
}

.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;
    min-width: 100%;
    justify-content: flex-start;
}

.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;
    min-height: 100vh;
    color: #fff;
    width: 100%;
    transition: all 0.3s ease;
}

.course-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 100%;
    background-image: url('../images/div6.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -2;
    transition: width 0.5s ease;
}

.course-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.85) 70%,
        rgba(0, 0, 0, 0.95) 100%
    );
    z-index: -1;
}

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

.course-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.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;
    position: relative;
    overflow: hidden;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.feature-icon {
    font-size: 2.5em;
    margin-bottom: 20px;
    display: block;
}

.feature-item h4 {
    color: #fff;
    font-size: 1.3em;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 0.95em;
}

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

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

.popup-content {
    background: #fff;
    padding: 0;
    border-radius: 16px;
    width: 100%;
    max-width: 480px;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

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

.popup-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    padding: 24px 28px;
    border-bottom: 2px solid #f0f0f0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.cart-item {
    display: flex;
    gap: 16px;
    padding: 24px 28px;
    align-items: flex-start;
}

.cart-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.item-details {
    flex: 1;
}

.item-details h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.price-remove {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 20px;
    font-weight: 700;
    color: #288616;
}

.remove-btn {
    background: #fee;
    color: #c33;
    border: none;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.remove-btn:hover {
    background: #fdd;
    transform: translateY(-1px);
}

.coupon-section {
    padding: 20px 28px;
    background: #f8f9fa;
    display: flex;
    gap: 12px;
}

.coupon-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.2s;
}

.coupon-input:focus {
    outline: none;
    border-color: #288616;
    box-shadow: 0 0 0 3px rgba(40, 134, 22, 0.1);
}

.apply-coupon {
    padding: 12px 24px;
    background: #288616;
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.apply-coupon:hover {
    background: #1e6b11;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(40, 134, 22, 0.3);
}

.cart-total {
    padding: 20px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    border-top: 2px solid #f0f0f0;
    border-bottom: 2px solid #f0f0f0;
}

.total-price {
    font-size: 24px;
    font-weight: 700;
    color: #288616;
}

.popup-buttons {
    padding: 24px 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.checkout-btn {
    background: linear-gradient(135deg, #288616 0%, #1e6b11 100%);
    color: white;
    text-align: center;
    padding: 14px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(40, 134, 22, 0.3);
}

.checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(40, 134, 22, 0.4);
}

.checkout-btn.secondary {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.checkout-btn.secondary:hover {
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.4);
}

.close-popup {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0,0,0,0.1);
    color: #666;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-popup:hover {
    background: rgba(0,0,0,0.15);
    color: #333;
    transform: rotate(90deg);
}

@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: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12),
                0 2px 8px rgba(0, 0, 0, 0.06);
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    margin-top: 0;
    border: 1px solid rgba(0, 0, 0, 0.06);
    animation: fadeInUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    scrollbar-width: thin;
    scrollbar-color: rgba(40, 134, 22, 0.3) transparent;
}

.suggestions-box::-webkit-scrollbar {
    width: 6px;
}

.suggestions-box::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 10px;
}

.suggestions-box::-webkit-scrollbar-thumb {
    background: rgba(40, 134, 22, 0.3);
    border-radius: 10px;
}

.suggestions-box::-webkit-scrollbar-thumb:hover {
    background: rgba(40, 134, 22, 0.5);
}

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

.suggestion-item {
    padding: 16px 22px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #288616 0%, #35a820 100%);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.suggestion-item:hover {
    background: linear-gradient(90deg, rgba(40, 134, 22, 0.04) 0%, rgba(255,255,255,0) 100%);
    padding-left: 26px;
}

.suggestion-item:hover::before {
    opacity: 1;
}

.suggestion-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}

.suggestion-title strong {
    color: #1a1a1a;
    font-weight: 600;
    flex: 1;
}

.suggestion-title strong strong {
    color: #288616;
    font-weight: 700;
}

.suggestion-type {
    font-size: 1.2rem;
    margin-left: 10px;
}

.suggestion-excerpt {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

.suggestion-excerpt 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);
    }
} 