/* Genel Stiller */
body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    background-color: #ffffff;
    color: #333;
    transition: background-color 0.3s, color 0.3s;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
    height: 100%;
}

/* Karanlık Mod */
body.dark-mode {
    background-color: #1e1e1e;
    color: #ffffff;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem 1rem;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 60%;
    margin: 0 auto;
}

/* Logo */
.logo-container {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 0;
    flex: 0.06 0 auto;
}

/* Navbar içeriğini sıkıştırma */
.nav-links {
    list-style: none;
    display: flex;
    gap: 24px;
    /* Reduced from 32px */
    margin: 0;
    padding: 0;
    justify-content: left;
    flex: 1;
}

/* Right section for auth buttons */
.right-section {
    display: flex;
    align-items: center;
    gap: 16px;
    /* Reduced from 24px */
    flex: 0 0 auto;
}

.auth-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    /* Reduced from 16px */
    flex-direction: row;
}

.auth-buttons a {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 1rem;
    font-weight: 400;
    transition: color 0.2s ease;
}

.auth-buttons .login {
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 6px;
}

.auth-buttons .login::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url('/photos/site/login-icon.ico');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.95;
    filter: brightness(0) saturate(100%) invert(45%) sepia(25%) saturate(845%) hue-rotate(78deg) brightness(92%) contrast(95%);
}

body.dark-mode .auth-buttons .login::before {
    filter: brightness(0) saturate(100%) invert(45%) sepia(25%) saturate(845%) hue-rotate(78deg) brightness(92%) contrast(95%);
    opacity: 1;
}

.auth-buttons .signup {
    color: #629660;
}

/* Menü Bağlantıları */
.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    padding-bottom: 2px;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #629660;
    transition: width 0.3s ease, left 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Karanlık mod için hover efekti */
body.dark-mode .nav-links a::after {
    background-color: #7ad975;
}

.site-logo {
    height: 28px;
    width: auto;
}

.site-title {
    font-size: 1.15rem;
    font-weight: 500;
    color: #1a1a1a;
    letter-spacing: 0.5px;
}

/* Dark mode adjustments */
body.dark-mode .navbar {
    background: #1a1a1a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

body.dark-mode .nav-links a {
    color: rgba(255, 255, 255, 0.9);
}

body.dark-mode .nav-links a:hover {
    color: #ffffff;
}

body.dark-mode .site-title {
    color: #ffffff;
}

body.dark-mode .auth-buttons a {
    color: #ffffff;
}

body.dark-mode .auth-buttons .login {
    color: #ffffff;
}

body.dark-mode .auth-buttons .signup {
    color: #629660;
}

/* Logo link stili */
.logo-link {
    display: flex;
    align-items: center;
    gap: 8px;
    /* Reduced from 10px */
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease;
}

.logo-link:hover {
    opacity: 0.9;
}

/* Karanlık mod için */
body.dark-mode .logo-link {
    color: #fff;
}

/* Dropdown Menü - ALTTA AÇILMASI İÇİN DÜZENLENDİ */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #fff;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    z-index: 1000;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

/* Dropdown ok işareti */
/* .dropdown-content::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 20px;
    width: 16px;
    height: 16px;
    background-color: var(--bg-primary, #fff);
    transform: rotate(45deg);
    box-shadow: -2px -2px 5px rgba(0,0,0,0.04);
} */

.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-content a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: all 0.2s ease;
    margin: 0;
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-content a:hover {
    background-color: #f5f5f5;
    padding-left: 20px;
    color: #629660;
}

body.dark-mode .dropdown-content {
    background-color: #2c2c2c;
}

body.dark-mode .dropdown-content a {
    color: #fff;
}

body.dark-mode .dropdown-content a:hover {
    background-color: #3c3c3c;
    color: #8bec86;
}

body.dark-mode .dropdown>a {
    color: #fff;
}

/* Tema Değiştirme Butonu */
.theme-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 997;
    transition: all 0.3s ease;
    line-height: 1;
}

.theme-toggle:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.3);
}

body.dark-mode .theme-toggle {
    background: rgba(0, 0, 0, 0.2);
}

/* Navbar'dan theme-toggle'ı kaldır */
.right-icons {
    display: flex;
    align-items: center;
}

/* Hoşgeldiniz Bölümü */
.background {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    min-height: calc(100vh - 64px - 50px);
    background: #f8f9fa;
    border-bottom: 1px solid #ddd;
    background-image: url('/photos/site/landing-banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(248, 249, 250, 0.7) 0%, rgba(248, 249, 250, 0.4) 40%, transparent 70%);
    z-index: 1;
}

body.dark-mode .background {
    background-color: #222;
}

body.dark-mode .background::before {
    background: linear-gradient(to right, rgba(34, 34, 34, 0.8) 0%, rgba(34, 34, 34, 0.5) 40%, transparent 70%);
}

.welcome-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    margin: 0;
    padding: 0 20%;
    position: relative;
    z-index: 2;
}

.banner-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 50%;
    position: relative;
    z-index: 2;
}

.banner-title {
    display: flex;
    flex-direction: column;
    font-size: 3.2rem;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
    margin: 0 0 2rem 0;
    text-align: left;
}

.banner-title span {
    display: block;
}

body.dark-mode .banner-title {
    color: #fff;
}

.banner-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.banner-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.banner-btn-primary {
    background: linear-gradient(135deg, #629660, #8bec86);
    color: #fff;
}

.banner-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(98, 150, 96, 0.4);
}

.banner-btn-secondary {
    background: #fff;
    color: #629660;
    border: 2px solid #629660;
}

.banner-btn-secondary:hover {
    background: #629660;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(98, 150, 96, 0.3);
}

body.dark-mode .banner-btn-secondary {
    background: transparent;
    color: #8bec86;
    border-color: #8bec86;
}

body.dark-mode .banner-btn-secondary:hover {
    background: #8bec86;
    color: #1a1a1a;
}

/* Banner Responsive */
@media (max-width: 992px) {
    .banner-content {
        max-width: 60%;
    }

    .banner-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .background {
        min-height: auto;
        padding: 2rem 0;
    }

    .welcome-container {
        width: 100%;
        padding: 0 2rem;
        align-items: flex-start;
    }

    .banner-content {
        max-width: 100%;
        align-items: flex-start;
    }

    .banner-title {
        font-size: 2rem;
        text-align: left;
    }

    .banner-buttons {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .banner-btn {
        width: auto;
        max-width: 320px;
        justify-content: center;
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .background {
        min-height: auto;
        padding: 1.5rem 0;
    }

    .welcome-container {
        padding: 0 1rem;
    }

    .banner-title {
        font-size: 1.6rem;
    }

    .banner-btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Ürünler Bölümü */
.products-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 0;
    text-align: center;
    background: #ffffff;
}

.products-section h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #333;
}

body.dark-mode .products-section h2 {
    color: white;
}

body.dark-mode .products-section {
    background: #1e1e1e;
}

.product-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-item {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 1rem;
    border: 2px solid #629660;
    position: relative;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    border-color: #8bec86;
    box-shadow: 0 0 10px rgba(139, 236, 134, 0.3),
        0 0 20px rgba(139, 236, 134, 0.2),
        0 0 30px rgba(139, 236, 134, 0.1);
}

.product-item a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-item img {
    width: 100%;
    height: auto;
    display: block;
}

.product-item h3 {
    padding: 1.2rem 1.2rem 19px;
    margin: 0;
    font-size: 1.3rem;
    color: var(--text-color);
}

.product-item p {
    padding: 0 1.2rem 1.2rem;
    margin: 0;
    color: var(--text-secondary);
    font-size: 1rem;
}

body.dark-mode .product-item {
    border-color: #8bec86;
}

body.dark-mode .product-item:hover {
    border-color: #8bec86;
    box-shadow: 0 0 10px rgba(98, 150, 96, 0.3),
        0 0 20px rgba(98, 150, 96, 0.2),
        0 0 30px rgba(98, 150, 96, 0.1);
}

body.dark-mode .product-item p {
    color: white;
}

@media (max-width: 768px) {
    .product-container {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 0.5rem;
        padding: 0.5rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        margin: 0 0.5rem;
        scroll-behavior: smooth;
        margin-bottom: 2rem;
    }

    .product-container::-webkit-scrollbar {
        display: none;
    }

    .product-item {
        flex: 0 0 calc(100% - 2rem);
        scroll-snap-align: center;
        scroll-snap-stop: always;
        margin: 0 0.5rem;
        min-width: 0;
    }

    .product-item img {
        height: auto;
        width: 100%;
        border-radius: 10px 10px 0 0;
    }

    .product-item h3 {
        font-size: 0.95rem;
        margin: 0.3rem 0;
        padding: 0 0.6rem 19px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .product-item p {
        font-size: 0.8rem;
        padding: 0 0.6rem 0.6rem;
        margin: 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .products-section {
        padding: 1rem 0;
        position: relative;
    }

    .products-section h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .slider-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 1rem;
        position: absolute;
        bottom: 0.5rem;
        left: 0;
        right: 0;
    }

    .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #ddd;
        transition: all 0.3s ease;
    }

    .dot.active {
        background: #629660;
        transform: scale(1.2);
    }

    body.dark-mode .dot {
        background: #444;
    }

    body.dark-mode .dot.active {
        background: #8bec86;
    }
}

@media (max-width: 480px) {
    .product-item {
        flex: 0 0 calc(100% - 2rem);
    }

    .product-item img {
        height: auto;
    }
}

/* Hakkımızda Bölümü */
.about-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.about-section h2 {
    font-size: 2.5rem;
    color: #333;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
}

.about-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #629660, #8bec86);
    border-radius: 2px;
}

body.dark-mode .about-section h2 {
    color: #fff;
}

.about-content {
    background: #fff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(98, 150, 96, 0.1);
    width: 100%;
    max-width: 1000px;
    border: 1px solid rgba(98, 150, 96, 0.1);
}

body.dark-mode .about-content {
    background: #1a1a1a;
    box-shadow: 0 10px 30px rgba(98, 150, 96, 0.2);
    border-color: rgba(139, 236, 134, 0.1);
}

.about-content p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    text-align: center;
}

body.dark-mode .about-content p {
    color: #ddd;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(98, 150, 96, 0.1);
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #629660, #8bec86);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.feature:hover::before {
    transform: scaleX(1);
}

body.dark-mode .feature {
    background: #2a2a2a;
    border-color: rgba(139, 236, 134, 0.1);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(98, 150, 96, 0.15);
}

.feature h3 {
    color: #333;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.feature h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #629660, #8bec86);
    border-radius: 2px;
}

body.dark-mode .feature h3 {
    color: #fff;
}

.feature p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

body.dark-mode .feature p {
    color: #ddd;
}

/* İletişim Bölümü Stilleri */
.contact-section {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 3rem;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(98, 150, 96, 0.1);
    border: 1px solid rgba(98, 150, 96, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #629660, #8bec86);
}

body.dark-mode .contact-section {
    background: #2a2a2a;
    box-shadow: 0 10px 30px rgba(98, 150, 96, 0.2);
    border-color: rgba(139, 236, 134, 0.1);
}

.contact-section h3 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.contact-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #629660, #8bec86);
    border-radius: 2px;
}

body.dark-mode .contact-section h3 {
    color: #fff;
}

.contact-section p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    text-align: center;
}

body.dark-mode .contact-section p {
    color: #ddd;
}

/* İletişim Formu Stilleri */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
    font-size: 1rem;
}

body.dark-mode .contact-form label {
    color: #fff;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fff;
}

body.dark-mode .contact-form input,
body.dark-mode .contact-form textarea {
    background: #1a1a1a;
    border-color: #3a3a3a;
    color: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #629660;
    box-shadow: 0 0 0 3px rgba(98, 150, 96, 0.1);
    outline: none;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(90deg, #629660, #8bec86);
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
}

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

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

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(98, 150, 96, 0.3);
}

/* Ayırıcı Çizgi */
.contact-divider {
    position: relative;
    text-align: center;
    margin: 2rem 0;
}

.contact-divider::before,
.contact-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background: #e9ecef;
}

.contact-divider::before {
    left: 0;
}

.contact-divider::after {
    right: 0;
}

.contact-divider span {
    background: #f8f9fa;
    padding: 0 1rem;
    color: #666;
    font-size: 0.9rem;
    position: relative;
}

body.dark-mode .contact-divider::before,
body.dark-mode .contact-divider::after {
    background: #3a3a3a;
}

body.dark-mode .contact-divider span {
    background: #2a2a2a;
    color: #ddd;
}

/* E-posta Bölümü */
.contact-email-section {
    text-align: center;
    margin-top: 2rem;
}

.contact-email {
    display: inline-block;
    color: #629660;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border: 2px solid #629660;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-email::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(98, 150, 96, 0.2), transparent);
    transition: 0.5s;
}

.contact-email:hover::before {
    left: 100%;
}

.contact-email:hover {
    background: #629660;
    color: #fff;
    transform: translateY(-2px);
}

body.dark-mode .contact-email {
    color: #8bec86;
    border-color: #8bec86;
}

body.dark-mode .contact-email:hover {
    background: #8bec86;
    color: #fff;
}

@media (max-width: 768px) {
    .about-section {
        padding: 2rem 0.5rem;
    }

    .about-content {
        padding: 1rem;
        width: 90%;
    }

    .contact-section {
        padding: 1rem;
        margin: 0;
        border-radius: 8px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .contact-section h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .contact-section p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .contact-form {
        width: 100%;
        margin: 0;
        max-width: 100%;
        box-sizing: border-box;
    }

    .contact-form .form-group {
        margin-bottom: 0.8rem;
        width: 100%;
        max-width: 100%;
    }

    .contact-form label {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
        display: block;
    }

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        max-width: 100%;
        padding: 0.6rem;
        font-size: 0.9rem;
        box-sizing: border-box;
        margin: 0;
    }

    .contact-form textarea {
        min-height: 100px;
        max-width: 100%;
    }

    .submit-btn {
        width: 100%;
        padding: 0.7rem;
        font-size: 0.9rem;
        margin-top: 0.5rem;
        box-sizing: border-box;
    }

    .contact-email {
        display: block;
        width: 100%;
        font-size: 0.9rem;
        padding: 0.4rem 0.6rem;
        box-sizing: border-box;
        text-align: center;
    }

    .contact-email-section {
        margin-top: 1rem;
        width: 100%;
    }

    .contact-divider {
        margin: 1rem 0;
        width: 100%;
    }

    .nav-links {
        display: none !important;
    }

    .navbar {
        padding: 0;
        height: 60px;
    }

    .navbar-container {
        max-width: 100%;
        width: 100%;
        padding: 0 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }

    .logo-container {
        margin-left: 0;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .site-logo {
        height: 32px;
        width: auto;
    }

    .site-title {
        font-size: 1.2rem;
    }

    /* Sadece navbar'daki auth buttons'ı gizle */
    .navbar .auth-buttons {
        display: none !important;
    }

    /* Navbar'daki dropdown menüyü gizle */
    .navbar .dropdown {
        display: none !important;
    }

    /* Hamburger menü ayarları */
    .right-icons {
        margin-left: 0;
        padding-right: 0;
        position: relative;
        right: 0;
    }

    .hamburger {
        display: block;
        visibility: visible;
        width: 24px;
        height: 24px;
        padding: 0;
        margin: 0;
    }

    /* Hamburger çizgileri */
    .hamburger span {
        height: 2px;
        width: 24px;
    }

    .hamburger span:nth-child(1) {
        top: 4px;
    }

    .hamburger span:nth-child(2) {
        top: 11px;
    }

    .hamburger span:nth-child(3) {
        top: 18px;
    }

    /* Logo link aralığını düzelt */
    .logo-link {
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 1.5rem 0.3rem;
    }

    .about-content {
        padding: 0.8rem;
    }

    .contact-section {
        padding: 0.8rem;
    }

    .contact-section h3 {
        font-size: 1.2rem;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 0.5rem;
        font-size: 0.85rem;
    }

    .contact-form label {
        font-size: 0.85rem;
    }

    .submit-btn {
        padding: 0.6rem;
        font-size: 0.85rem;
    }

    .contact-email {
        font-size: 0.85rem;
        padding: 0.3rem 0.5rem;
    }
}

/* Mobil Navbar (Hamburger Menü) */
.hamburger {
    display: block;
    width: 20px;
    height: 20px;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1000;
    visibility: hidden;
    /* Normalde görünmez */
}

/* Çizgilerin Yerleşimi */
.hamburger span:nth-child(1) {
    top: 2px;
}

.hamburger span:nth-child(2) {
    top: 9px;
}

.hamburger span:nth-child(3) {
    top: 16px;
}

/* Hamburger Çizgileri */
.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #333;
    position: absolute;
    left: 0;
    transition: all 0.3s ease-in-out;
    transform-origin: center;
}

body.dark-mode .hamburger {
    color: white;
}

/* Karanlık Mod için Çizgi Rengi */
body.dark-mode .hamburger span {
    background: white;
}

/* Açıkken Çizgileri Çarpı Haline Getir */
.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

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

/* Bulanık Arka Plan Overlay */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    /* Safari için destek */
    z-index: 998;
    transition: all 0.3s ease;
}

.overlay.active {
    display: block;
}

/* Mobil Açılır Menü */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    /* Increased from 250px */
    height: 100vh;
    background: white;
    box-shadow: -3px 0px 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    z-index: 999;
}

.mobile-menu-links {
    padding: 80px 32px 20px;
    overflow-y: auto;
    flex-grow: 1;
}

.mobile-menu-links a {
    text-decoration: none;
    color: #333;
    font-size: 1.1rem;
    padding: 12px 0;
    border-bottom: none;
    display: block;
    font-weight: 400;
}

/* Mobil menü auth buttons yeni stil */
.mobile-menu .auth-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 0;
    position: relative;
    top: -90px;
    padding: 0 1.5rem;
}

.mobile-menu .auth-buttons a {
    flex: 1;
    text-align: center;
    padding: 0.7rem 1rem;
    border-radius: 5px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #333;
}

.mobile-menu .auth-buttons .signup {
    background-color: #629660;
    color: white;
}

.mobile-menu .auth-buttons .login {
    color: #333;
}

.mobile-menu .auth-buttons a:hover {
    opacity: 0.9;
}

/* Karanlık mod için mobil menü güncellemeleri */
body.dark-mode .mobile-menu {
    background: #1a1a1a;
}

body.dark-mode .mobile-menu-links a {
    color: rgba(255, 255, 255, 0.9);
}

body.dark-mode .mobile-menu .auth-buttons .login {
    color: #ffffff;
}

body.dark-mode .mobile-menu .auth-buttons .signup {
    background-color: #629660;
    color: white;
}

/* Mobil menü aktif olduğunda body scroll'u engelle */
body.menu-active {
    overflow: hidden;
}

.mobile-menu.active {
    right: 0;
    /* Aktif olduğunda sağdan gelecek */
}

/* Çarpı işaretini kaldır */
.close-menu {
    display: none;
}

/* Responsive Navbar */
@media (max-width: 768px) {
    .nav-links {
        display: none !important;
    }

    .navbar {
        padding: 0;
        height: 60px;
    }

    .navbar-container {
        max-width: 100%;
        width: 100%;
        padding: 0 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }

    .logo-container {
        margin-left: 0;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .site-logo {
        height: 32px;
        width: auto;
    }

    .site-title {
        font-size: 1.2rem;
    }

    /* Sadece navbar'daki auth buttons'ı gizle */
    .navbar .auth-buttons {
        display: none !important;
    }

    /* Navbar'daki dropdown menüyü gizle */
    .navbar .dropdown {
        display: none !important;
    }

    /* Hamburger menü ayarları */
    .right-icons {
        margin-left: 0;
        padding-right: 0;
        position: relative;
        right: 0;
    }

    .hamburger {
        display: block;
        visibility: visible;
        width: 24px;
        height: 24px;
        padding: 0;
        margin: 0;
    }

    /* Hamburger çizgileri */
    .hamburger span {
        height: 2px;
        width: 24px;
    }

    .hamburger span:nth-child(1) {
        top: 4px;
    }

    .hamburger span:nth-child(2) {
        top: 11px;
    }

    .hamburger span:nth-child(3) {
        top: 18px;
    }

    /* Logo link aralığını düzelt */
    .logo-link {
        gap: 8px;
    }

    .password-toggle {
        left: 300px !important;
    }
}

/* Ana içerik alanı */
main {
    padding-top: 80px;
    min-height: calc(100vh - 160px);
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-group input[type="password"] {
    padding-right: 40px;
    width: 100%;
    box-sizing: border-box;
}

.password-toggle {
    position: absolute;
    left: 320px;
    top: 42px;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: 0;
    width: 20px;
    height: 20px;
    max-width: 40px;
    max-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent !important;
    background: transparent !important;
    color: #000 !important;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    z-index: 2;
    pointer-events: auto;
    transition: all 0.3s ease;
}

.password-toggle:focus,
.password-toggle:hover,
.password-toggle:active {
    background-color: transparent !important;
    background: transparent !important;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.password-toggle .eye-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
    background: transparent !important;
    transition: all 0.3s ease;
}

body.dark-mode .password-toggle {
    color: #aaa !important;
    background-color: transparent !important;
    background: transparent !important;
}

.auth-container button {
    margin-bottom: 2rem;
}

.auth-container p {
    margin-top: 2rem;
    text-align: center;
}

/* Footer */
.footer {
    background-color: var(--footer-bg);
    color: var(--text-color);
    text-align: center;
    padding: 2rem 0;
    margin-top: 4rem;
    border-top: 1px solid var(--border-color);
}

.footer-links {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--text-color);
    text-decoration: none;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer p {
    margin: 0;
    font-size: 0.9rem;
}

body.dark-mode .footer {
    background: #222;
}

.dropdown>a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
}

.dropdown>a img {
    width: 20px;
    height: 20px;
    filter: brightness(0) saturate(100%) invert(45%) sepia(25%) saturate(845%) hue-rotate(78deg) brightness(92%) contrast(95%);
}

.dropdown>a:hover {
    color: #629660;
}

/* Karanlık modda account icon rengi */
body.dark-mode .dropdown>a img {
    filter: brightness(0) saturate(100%) invert(45%) sepia(25%) saturate(845%) hue-rotate(78deg) brightness(92%) contrast(95%);
}

body.dark-mode .dropdown>a {
    color: #fff;
}

/* Mobil menü divider ve hesabım butonu stilleri */
.mobile-menu .dropdown {
    position: relative;
    width: 100%;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 10px;
    padding-top: 10px;
}

.mobile-menu .dropdown>a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    padding: 12px 0;
    color: #333;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 400;
}

.mobile-menu .dropdown>a img {
    width: 20px;
    height: 20px;
    filter: brightness(0) saturate(100%) invert(45%) sepia(25%) saturate(845%) hue-rotate(78deg) brightness(92%) contrast(95%);
}

.mobile-menu .dropdown>a::after {
    content: '▼';
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    margin-left: auto;
}

.mobile-menu .dropdown.active>a::after {
    transform: rotate(180deg);
}

.mobile-menu .dropdown-content {
    visibility: hidden;
    position: static;
    background: transparent;
    box-shadow: none;
    padding-left: 20px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    max-height: 0;
    overflow: hidden;
    pointer-events: none;
}

.mobile-menu .dropdown.active .dropdown-content {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    max-height: 200px;
    pointer-events: auto;
}

.mobile-menu .dropdown-content a {
    padding: 10px 0;
    color: #666;
    font-size: 1rem;
    display: block;
    transform: translateX(-10px);
    opacity: 0;
    transition: all 0.3s ease;
}

.mobile-menu .dropdown.active .dropdown-content a {
    transform: translateX(0);
    opacity: 1;
}

.mobile-menu .dropdown-content a:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-menu .dropdown-content a:nth-child(2) {
    transition-delay: 0.2s;
}

/* Karanlık mod için mobil menü dropdown stilleri */
body.dark-mode .mobile-menu .dropdown {
    border-top-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .mobile-menu .dropdown>a {
    color: rgba(255, 255, 255, 0.9);
}

body.dark-mode .mobile-menu .dropdown>a img {
    filter: brightness(0) saturate(100%) invert(45%) sepia(25%) saturate(845%) hue-rotate(78deg) brightness(92%) contrast(95%);
}

body.dark-mode .mobile-menu .dropdown-content a {
    color: rgba(255, 255, 255, 0.7);
}

body.dark-mode .mobile-menu .dropdown-content a:hover {
    color: #8bec86;
}

/* Navbar dropdown stilleri */
.navbar .dropdown>a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
}

.navbar .dropdown>a img {
    width: 20px;
    height: 20px;
    filter: brightness(0) saturate(100%) invert(45%) sepia(25%) saturate(845%) hue-rotate(78deg) brightness(92%) contrast(95%);
}

.navbar .dropdown>a::after {
    content: '▼';
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    margin-left: auto;
}

.navbar .dropdown.active>a::after {
    transform: rotate(180deg);
}

/* Karanlık modda navbar dropdown stilleri */
body.dark-mode .navbar .dropdown>a {
    color: #fff;
}

body.dark-mode .navbar .dropdown>a img {
    filter: brightness(0) saturate(100%) invert(45%) sepia(25%) saturate(845%) hue-rotate(78deg) brightness(92%) contrast(95%);
}

/* Toast notification container */
.toast-container {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Toast notification */
.toast-notification {
    min-width: 240px;
    max-width: 350px;
    padding: 16px 24px;
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    opacity: 0;
    transform: translateY(20px);
    animation: toast-in 0.3s forwards, toast-out 0.3s 2.7s forwards;
    display: flex;
    align-items: center;
    gap: 12px;
}

.toast-notification.success {
    background: #28a745;
}

.toast-notification.error {
    background: #dc3545;
}

.toast-notification.info {
    background: #007bff;
}

.toast-notification .toast-icon {
    font-size: 1.3em;
}

@keyframes toast-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes toast-out {
    to {
        opacity: 0;
        transform: translateY(20px);
    }
}


/* Nasıl Çalışır Bölümü */
.how-it-works-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9f5e9 100%);
    text-align: center;
}

body.dark-mode .how-it-works-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #1e2a1e 100%);
}

.how-it-works-section h2 {
    font-size: 2.4rem;
    color: #333;
    margin-bottom: 3.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.how-it-works-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #629660, #8bec86);
    border-radius: 2px;
}

body.dark-mode .how-it-works-section h2 {
    color: #fff;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.step-item {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 40px rgba(98, 150, 96, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid rgba(98, 150, 96, 0.1);
    overflow: hidden;
}

.step-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #629660, #8bec86);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.step-item:hover::before {
    transform: scaleX(1);
}

.step-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(98, 150, 96, 0.2);
}

body.dark-mode .step-item {
    background: #252525;
    border-color: rgba(139, 236, 134, 0.15);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

body.dark-mode .step-item:hover {
    box-shadow: 0 20px 50px rgba(139, 236, 134, 0.15);
}

.step-number {
    color: #629660;
    font-weight: 700;
}

body.dark-mode .step-number {
    color: #8bec86;
}

.step-item h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

body.dark-mode .step-item h3 {
    color: #fff;
}

.step-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

body.dark-mode .step-item p {
    color: #bbb;
}

/* Mobil için Nasıl Çalışır Bölümü */
@media (max-width: 992px) {
    .steps-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .step-item:last-child {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .how-it-works-section {
        padding: 3rem 1rem;
    }

    .how-it-works-section h2 {
        font-size: 1.8rem;
        margin-bottom: 2.5rem;
    }

    .steps-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.5rem;
    }

    .step-item {
        padding: 2rem 1.5rem;
        max-width: 100%;
    }

    .step-item:last-child {
        max-width: 100%;
    }


    .step-item h3 {
        font-size: 1.2rem;
    }

    .step-item p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .how-it-works-section {
        padding: 2.5rem 0.8rem;
    }

    .how-it-works-section h2 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .step-item {
        padding: 1.5rem 1.2rem;
    }


    .step-item h3 {
        font-size: 1.1rem;
    }

    .step-item p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

.footer-payment-logos {
    padding-top: 20px;
    max-width: 350px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Footer link styles */
.footer a {
    color: #629660;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #8bec86;
}

body.dark-mode .footer a {
    color: #8bec86;
}

body.dark-mode .footer a:hover {
    color: #9fd19d;
}

.footer-mail {
    color: #629660;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-mail:hover {
    color: #8bec86;
}

body.dark-mode .footer-mail {
    color: #8bec86;
}

body.dark-mode .footer-mail:hover {
    color: #9fd19d;
}