/* Değişkenler */
:root {
    --primary: #2C392F;    /* Koyu yeşil */
    --secondary: #D4B895;  /* Altın/bej */
    --accent: #96835C;     /* Koyu bej */
    --text-dark: #2C392F;  /* Koyu yeşil */
    --text-light: #666;    /* Gri */
    --bg-light: #F5F2ED;   /* Açık bej */
    --white: #fff;
}

/* Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Header ve Navigasyon */
header {
    background-color: transparent;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

header.scrolled .nav-links a,
header.scrolled .icon-link,
header.scrolled .logo h1 {
    color: #333;
}

header.scrolled .logo-link:hover h1 {
    color: var(--secondary);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    max-width: 1800px;
    margin: 0 auto;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 4px;
    color: #fff;
    margin: 0;
    padding: 0;
}

.logo-link {
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
    transition: all 0.3s ease;
}

.logo-link:hover h1 {
    color: var(--secondary);
}

.nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
    min-width: 0; /* Flexbox shrink için gerekli */
    overflow: hidden; /* Taşmaları engellemek için */
    margin: 0 10px; /* Sağdan ve soldan biraz boşluk */
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
    justify-content: center;
    flex-wrap: nowrap;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: capitalize;
    letter-spacing: 0.5px;
    padding: 0.3rem 0;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--secondary), transparent);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.nav-links a:hover {
    color: var(--secondary);
    transform: translateY(-2px);
}

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

.nav-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 0.5rem;
}

.nav-icons {
    display: flex;
    align-items: center;
}

.icon-link {
    color: #fff;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.icon-link:hover {
    opacity: 0.8;
}

.language-selector {
    position: relative;
    margin-left: auto;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 12px 0 8px;
    min-width: 180px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--bg-light);
}

.language-selector:hover .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Webkit tarayıcılar için scrollbar stilleri */
.language-dropdown::-webkit-scrollbar {
    width: 6px;
}

.language-dropdown::-webkit-scrollbar-track {
    background: var(--bg-light);
    border-radius: 4px;
}

.language-dropdown::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

.language-dropdown::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}

/* Firefox için scrollbar stilleri */
.language-dropdown {
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--bg-light);
}

/* Dil seçenekleri */
.language-option {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 10px;
    color: var(--text-dark);
}

.language-option:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.language-option.active {
    background-color: rgba(0, 0, 0, 0.1);
}

.language-option img {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
}

/* İlk dil seçeneği için ekstra padding */
.language-option:first-child {
    padding-top: 8px;
}

/* RTL desteği */
[dir="rtl"] .language-dropdown {
    right: auto;
    left: 0;
}

.mail-icon {
    position: relative;
}

.mail-icon:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    color: #000;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    white-space: nowrap;
    z-index: 1000;
}

.mail-icon:hover::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent #fff transparent;
}

.cart-icon {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #000;
    color: #fff;
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}

/* Responsive Navbar */
@media (max-width: 1280px) {
    .nav-links {
        gap: 1rem;
    }
}

@media (max-width: 1200px) {
    .logo h1 {
        font-size: 1.6rem;
        letter-spacing: 3px;
    }
    
    .nav-right {
        margin-left: 0.8rem;
    }
    
    .nav-links {
        gap: 0.7rem;
    }
    
    .nav-links a {
        font-size: 0.85rem;
        padding: 0.2rem 0;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1100px) {
    .logo h1 {
        font-size: 1.4rem;
        letter-spacing: 2px;
    }
    
    .navbar {
        padding: 0 0.8rem;
    }
    
    .nav-links {
        gap: 0.6rem;
    }
    
    .nav-links a {
        font-size: 0.75rem;
        letter-spacing: 0;
        padding: 0.2rem 0;
    }
}

@media (max-width: 992px) {
    .navbar {
        padding: 0 1.5rem;
    }
    
    .logo h1 {
        font-size: 1.8rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-center {
        display: none;
    }
    
    .nav-right {
        margin-left: auto;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0 1rem;
    }

    .logo h1 {
        font-size: 1.6rem;
    }

    .mobile-menu {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .navbar {
        padding: 0 1rem;
    }
    
    .logo h1 {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }

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

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
    background: url('../img/vlady-nykulyak-xbZdXJ4MFzg-unsplash.jpg') no-repeat center center;
    background-size: cover;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.hero-text-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text-container p {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    background: linear-gradient(45deg, var(--secondary), var(--primary));
}

/* Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hakkımızda Section */
.about {
    padding: 8rem 0;
    background-color: var(--bg-light);
    position: relative;
}

.about h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-dark);
    font-size: 2.5rem;
    position: relative;
}

.about h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, var(--secondary), var(--primary));
    border-radius: 3px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    padding-right: 2rem;
}

.about-text h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.about-text p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: auto;
    width: 100%;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
    display: block;
}

.about-image picture {
    display: block;
    width: 100%;
    height: 100%;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
}

.stat i {
    color: var(--secondary);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.stat h3 {
    color: var(--text-dark);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #666;
}

/* Ürünler Section */
.products {
    padding: 8rem 0;
    background-color: var(--white);
}

.products h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-dark);
    font-size: 2.5rem;
    position: relative;
}

.products h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, var(--secondary), var(--primary));
    border-radius: 3px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.product-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.product-image {
    overflow: hidden;
    height: 220px;
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-card h3 {
    padding: 1.2rem 1.2rem 0.7rem;
    color: var(--text-dark);
    font-size: 1.3rem;
    font-weight: 600;
}

.product-card p {
    padding: 0 1.2rem 1.2rem;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    flex-grow: 1;
}

/* Hizmetler Section */
.services {
    padding: 6rem 0;
    background-color: var(--bg-light);
    position: relative;
}

.services h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-dark);
    font-size: 2.5rem;
    position: relative;
}

.services h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, var(--secondary), var(--primary));
    border-radius: 3px;
}

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

.service-card {
    text-align: center;
    padding: 3rem 2rem;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover::before {
    left: 0;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.service-card i {
    font-size: 3rem;
    color: var(--secondary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover i {
    transform: scale(1.1) rotate(10deg);
    color: var(--primary);
}

.service-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.service-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

/* İletişim Section */
.contact {
    padding: 8rem 0;
    background-color: var(--bg-light);
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    position: relative;
}

.contact h2::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border-radius: 2px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    background-color: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-info {
    display: grid;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 10px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.info-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, var(--secondary), var(--primary));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-item:hover::before {
    height: 100%;
}

.info-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary);
}

.info-text h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.info-text p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

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

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(44, 57, 47, 0.1);
}

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

.submit-button {
    background-color: var(--secondary);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

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

.submit-button:hover {
    background-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.submit-button:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .contact {
        padding: 4rem 0;
    }
    
    .info-item {
        padding: 1rem;
    }
}

/* Footer */
footer {
    background-color: var(--primary);
    color: var(--white);
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--secondary), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-info {
    max-width: 400px;
}

.footer-info h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--secondary);
    font-weight: 600;
}

.footer-info p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 1.1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-links h4 {
    color: var(--secondary);
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    font-weight: 500;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.1rem;
}

.footer-links a:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

.footer-links a i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.footer-links a:hover i {
    transform: translateX(3px);
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.3rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-links a:hover::before {
    top: 0;
}

.social-links a:hover {
    transform: translateY(-5px);
}

.social-links a i {
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.social-links a:hover i {
    color: var(--primary);
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .footer-info {
        max-width: 100%;
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 4rem 0 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

    .footer-links a {
        justify-content: center;
    }

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

/* Responsive Tasarım */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .about h2 {
        font-size: 2rem;
    }

    .stat {
        padding: 1.5rem;
    }

    .stat h3 {
        font-size: 1.8rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .product-card img {
        height: 250px;
    }

    .services {
        padding: 4rem 0;
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-card {
        padding: 2rem;
    }
}

@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-text {
        padding-right: 0;
    }

    .about-image {
        max-height: 500px;
    }
}

/* Sık Sorulan Sorular Section */
.faq {
    padding: 8rem 0;
    background-color: var(--white);
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    position: relative;
}

.faq h2::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border-radius: 2px;
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    border-radius: 10px;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: var(--bg-light);
}

.faq-question h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin: 0;
    font-weight: 500;
}

.faq-question i {
    color: var(--secondary);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .faq {
        padding: 4rem 0;
    }

    .faq h2 {
        font-size: 2rem;
    }

    .faq-question {
        padding: 1.2rem;
    }

    .faq-question h3 {
        font-size: 1.1rem;
    }

    .faq-item.active .faq-answer {
        padding: 1.2rem;
    }
}

.language-selector {
    position: relative;
    margin-left: 1.5rem;
}

.language-option {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.language-option:hover {
    background-color: var(--bg-light);
    color: var(--primary);
}

.language-option.active {
    background-color: var(--bg-light);
    color: var(--primary);
    font-weight: 500;
}

.language-option img {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
}

@media (max-width: 992px) {
    .language-selector {
        margin-left: 0;
    }
    
    .icon-link {
        color: var(--white);
        font-size: 1.2rem;
    }
    
    header.scrolled .icon-link {
        color: var(--text-dark);
    }
}

@media (max-width: 480px) {
    .mobile-menu {
        width: 100%;
        right: -100%;
    }
    
    .mobile-menu.active {
        right: 0;
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    .logo h1 {
        font-size: 1.3rem;
        letter-spacing: 1px;
    }
    
    .navbar {
        padding: 0 0.8rem;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Aktif Menü Stilleri */
.nav-links a.active,
.mobile-nav-links a.active {
    color: var(--secondary);
}

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

.mobile-nav-links a.active {
    padding-left: 8px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Tipografi İyileştirmeleri */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 600;
    position: relative;
    margin-bottom: 3rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--secondary), transparent);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: clamp(1rem, 2vw, 1.1rem);
    opacity: 0.9;
}

/* Hero Section Tipografi */
.hero-content h1 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-content p {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
}

/* About Section Tipografi */
.about-content h2 {
    text-align: left;
    margin-bottom: 2rem;
}

.about-content h2::after {
    left: 0;
    transform: none;
}

.about-content p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* Products Section Tipografi */
.product-card h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    margin: 1rem 0;
    font-weight: 600;
}

.product-card p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 1rem;
}

/* Services Section Tipografi */
.service-card h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.4rem);
    margin: 1.5rem 0 1rem;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.8;
}

/* FAQ Section Tipografi */
.faq-item h3 {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
}

.faq-content p {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.85;
}

/* Contact Section Tipografi */
.contact h2 {
    margin-bottom: 3rem;
}

.info-item h4 {
    font-size: clamp(1.1rem, 2vw, 1.2rem);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.info-item p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.8;
    margin: 0;
}

/* Footer Tipografi */
.footer h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.4rem);
    margin-bottom: 1.5rem;
}

.footer p {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.9;
}

.footer-links a {
    font-size: 0.95rem;
    line-height: 2;
    opacity: 0.9;
    transition: all 0.3s ease;
}

/* Mobile Menu Tipografi */
.mobile-nav-links a {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* Responsive Tipografi */
@media (max-width: 768px) {
    h2::after {
        width: 60px;
        height: 2px;
    }

    .hero-content p {
        text-align: center;
    }

    .about-content p {
        text-align: left;
    }
}

.hero-text-container {
    max-width: 600px;
    margin: 0 auto 30px;
    padding: 0 20px;
}

.hero-text-container p {
    margin: 0;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .hero-text-container {
        padding: 0 10px;
    }
}

/* Form Alert Styles */
.form-alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    display: none;
}

.form-alert.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-alert.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

.button-loader {
    display: none;
    margin-left: 0.5rem;
}

.submit-button.loading span {
    opacity: 0.7;
}

.submit-button.loading .button-loader {
    display: inline-block;
}

.submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Hamburger Menü */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
    margin-left: 1.5rem;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background-color: var(--white);
    transition: all 0.3s ease;
    border-radius: 2px;
}

header.scrolled .hamburger span {
    background-color: var(--text-dark);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: var(--primary);
}

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

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: var(--primary);
}

/* Mobile Menü */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--white);
    padding: 5rem 1.5rem 1.5rem;
    transition: all 0.4s ease;
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow-y: auto;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.mobile-nav-links li {
    margin-bottom: 0.5rem;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.mobile-menu.active .mobile-nav-links li {
    opacity: 1;
    transform: translateX(0);
    transition-delay: calc(0.05s * var(--i, 0));
}

.mobile-menu.active .mobile-nav-links li:nth-child(1) { --i: 1; }
.mobile-menu.active .mobile-nav-links li:nth-child(2) { --i: 2; }
.mobile-menu.active .mobile-nav-links li:nth-child(3) { --i: 3; }
.mobile-menu.active .mobile-nav-links li:nth-child(4) { --i: 4; }
.mobile-menu.active .mobile-nav-links li:nth-child(5) { --i: 5; }
.mobile-menu.active .mobile-nav-links li:nth-child(6) { --i: 6; }
.mobile-menu.active .mobile-nav-links li:nth-child(7) { --i: 7; }
.mobile-menu.active .mobile-nav-links li:nth-child(8) { --i: 8; }

.mobile-nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    display: block;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    background: var(--bg-light);
    color: var(--primary);
}

.mobile-language-selector {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    padding: 1rem;
    margin-top: auto;
    border-top: 1px solid var(--bg-light);
}

.mobile-language-option {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem;
    color: var(--text-dark);
    text-decoration: none;
    background-color: var(--bg-light);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-language-option.active {
    background-color: var(--primary);
    color: var(--white);
}

.mobile-language-option img {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
}

/* Responsive Düzenlemeler */
@media (max-width: 992px) {
    .hamburger {
        display: flex;
    }

    .nav-center, 
    .nav-links {
        display: none;
    }

    .nav-right {
        margin-left: auto;
        display: flex;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .mobile-menu {
        width: 100%;
        right: -100%;
    }
    
    .mobile-nav-links a {
        font-size: 1rem;
        padding: 0.7rem;
    }
    
    .mobile-language-option {
        padding: 0.7rem;
        font-size: 0.85rem;
    }
}

.honeypot-field {
    display: none !important;
    opacity: 0;
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 1px;
    height: 1px;
    z-index: -1;
    pointer-events: none;
}

/* RTL desteği (Arapça için) */
[lang="ar"] {
    direction: rtl;
    text-align: right;
}

[lang="ar"] .language-dropdown {
    left: 0;
    right: auto;
}

/* Responsive ayarlar */
@media (max-width: 768px) {
    .mobile-language-selector {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mobile-language-option {
        padding: 0.6rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .mobile-language-selector {
        grid-template-columns: 1fr;
    }
    
    .mobile-language-option {
        padding: 0.5rem;
        font-size: 0.85rem;
    }
}

/* Mobil dil seçici için scrollbar stilleri */
.mobile-language-selector::-webkit-scrollbar {
    width: 6px;
}

.mobile-language-selector::-webkit-scrollbar-track {
    background: var(--bg-light);
    border-radius: 4px;
}

.mobile-language-selector::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

.mobile-language-selector::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}

.mobile-language-selector {
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--bg-light);
}

/* ===== Videos Section ===== */
.videos {
    padding: 80px 0;
    background-color: var(--white);
}

.videos h2 {
    color: var(--text-dark);
    margin-bottom: 30px;
    position: relative;
    text-align: center;
}

.videos h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, var(--secondary), var(--primary));
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.video-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
    background-color: transparent;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border: none;
    transition: all 0.3s ease;
    background-color: transparent;
}

/* Video kontrolleri için özel stil */
.video-container video::-webkit-media-controls {
    opacity: 1;
}

.video-container:hover video::-webkit-media-controls {
    opacity: 1;
}

.video-container video::-webkit-media-controls-panel {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 4px;
}

/* Video kartı içeriği */
.video-content {
    padding: 20px;
    background-color: var(--white);
}

.video-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.video-card:hover h3 {
    color: var(--primary);
}

.video-card p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Video hover efektlerini kaldır */
.video-card:hover .video-container video {
    transform: none;
    filter: none;
}

/* Video container arka planı */
.video-container::before,
.video-container::after {
    display: none;
}

/* Responsive düzenlemeler */
@media (max-width: 992px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .videos {
        padding: 60px 0;
    }
    
    .videos h2 {
        font-size: 28px;
    }
    
    .video-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .video-card h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .videos {
        padding: 40px 0;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .video-card h3 {
        font-size: 1.2rem;
    }
}

/* ===== Partners Section ===== */
.partners {
    padding: 80px 0;
    background-color: var(--white);
}

.partners h2 {
    color: var(--text-dark);
    margin-bottom: 40px;
    position: relative;
    text-align: center;
}

.partners h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, var(--secondary), var(--primary));
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.partner-card {
    background-color: var(--primary);
    border-radius: 10px;
    overflow: hidden;
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 180px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    position: relative;
}

.partner-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(0);
    opacity: 1;
    transition: all 0.5s ease;
}

.partner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
    background-color: var(--secondary);
}

.partner-info {
    position: absolute;
    background-color: rgba(44, 57, 47, 0.9); /* Koyu arka plan */
    bottom: -60px;
    left: 0;
    right: 0;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
}

.partner-card:hover .partner-info {
    bottom: 0;
    opacity: 1;
}

.partner-info h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 5px;
}

.partner-info p {
    color: var(--bg-light);
    font-size: 14px;
    margin: 0;
}

@media (max-width: 992px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .partners-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    
    .partner-card {
        height: 150px;
    }
} 