/* ====================================================================
   LAYOUT CSS - Header, Navigation, Footer & Layout Components
   Çoban Organik CSS Modüler Sistemi
   ==================================================================== */

/* ====================================================================
   HEADER & NAVIGATION
   ==================================================================== */

/* Ana Header */
header {
    background-color: white;
    padding: 0.8rem 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid var(--primary-color);
    transition: all 0.3s ease;
}

/* Header scroll durumu için stil */
header.scrolled {
    padding: 0.4rem 5%;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

header.scrolled #logo {
    width: 200px;
}

header.scrolled .brand-name {
    font-size: 1.3rem;
}

header.scrolled .brand-tagline {
    font-size: 0.7rem;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: nowrap;
}

/* Logo ve Marka Yazısı */
.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 100%;
    transition: all 0.3s ease;
    padding: 0.4rem;
}

#logo {
    width: 280px;
    height: auto;
    transition: all 0.3s ease;
}

.brand-text {
    display: flex;
    flex-direction: column;
    margin-left: 0.5rem;
    line-height: 1.2;
}

.brand-name {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0;
    color: #2c3e50;
    letter-spacing: 1px;
    font-family: 'Montserrat', 'Segoe UI', sans-serif;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

.brand-tagline {
    font-size: 0.8rem;
    color: var(--gray-color);
    font-weight: 500;
    letter-spacing: 0.5px;
    font-style: italic;
    margin-top: 2px;
    white-space: nowrap;
}

/* Navigation */
nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin: 0;
    padding: 0;
}

.nav-links li {
    position: relative;
    list-style: none;
}

.nav-links a {
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: block;
    transition: var(--transition);
    padding: 0.5rem 0.7rem;
    border-radius: 8px;
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--primary-color);
    background-color: rgba(139, 90, 43, 0.08);
}

.nav-links a.active {
    color: var(--primary-color);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    left: 50%;
    bottom: -2px;
    transform: translateX(-50%);
    transition: var(--transition);
    border-radius: 4px;
    opacity: 0;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 70%;
    opacity: 1;
}

/* Dropdown için stil güncellemeleri */
.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 200px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    z-index: 100;
}

.dropdown-content a {
    color: var(--dark-color);
    padding: 0.7rem 1.2rem;
    display: block;
    text-align: left;
    border-radius: 0;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background-color: rgba(139, 90, 43, 0.08);
    color: var(--primary-color);
}

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

/* Hamburger menü için stil */
.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    margin: 5px;
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* ====================================================================
   HERO SECTIONS - MODERN DESIGN
   ==================================================================== */

.hero {
    background: linear-gradient(135deg, 
        rgba(26, 26, 26, 0.8) 0%, 
        rgba(139, 90, 43, 0.9) 50%,
        rgba(212, 167, 106, 0.7) 100%
    ), url(../img/hero-bg.jpg) center/cover;
    min-height: 100vh;
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Modern Hero Overlay with Animated Particles */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(139, 90, 43, 0.1) 0%,
        transparent 50%,
        rgba(242, 185, 59, 0.1) 100%
    );
    z-index: 1;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(242, 185, 59, 0.1) 0%, transparent 70%);
    border-radius: var(--radius-full);
    animation: float 8s ease-in-out infinite;
}

.hero-overlay::after {
    content: '';
    position: absolute;
    top: 60%;
    right: 15%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(139, 90, 43, 0.15) 0%, transparent 70%);
    border-radius: var(--radius-full);
    animation: float 6s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-30px) scale(1.1);
        opacity: 1;
    }
}

/* Hero Content Container */
.hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    position: relative;
    z-index: 3;
    animation: fadeInUp 1s ease-out;
}

/* Hero Badge - Modern Organic Indicator */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-xl);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-color);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-slow);
    animation: slideInDown 0.8s ease-out 0.2s both;
}

.hero-badge:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: var(--shadow-xl);
}

.hero-badge i {
    font-size: 1.1rem;
    color: var(--accent-color);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

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

/* Hero Title - Enhanced Typography */
.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: var(--space-xl);
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 1) 0%,
        rgba(242, 185, 59, 0.9) 50%,
        rgba(255, 255, 255, 1) 100%
    );
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite, fadeInUp 1.2s ease-out 0.4s both;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Hero Subtitle - Modern Typography */
.hero p {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: var(--space-2xl);
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1.4s ease-out 0.6s both;
}

/* Hero Buttons Container */
.hero-buttons {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-2xl);
    animation: fadeInUp 1.6s ease-out 0.8s both;
}

.hero-buttons .btn {
    padding: var(--space-lg) var(--space-2xl);
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: var(--radius-xl);
    transition: var(--transition-slow);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 200px;
    position: relative;
    overflow: hidden;
}

.hero-buttons .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: var(--transition-slow);
}

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

.hero-buttons .btn-primary {
    background: var(--gradient-accent);
    color: var(--dark-color);
    border: 2px solid transparent;
    box-shadow: var(--shadow-lg);
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-2xl);
    background: linear-gradient(135deg, #FDD835 0%, #F2B93B 100%);
}

.hero-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
}

.hero-buttons .btn-secondary:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: var(--shadow-xl);
}

.hero-buttons .btn i {
    margin-right: var(--space-sm);
    transition: var(--transition);
}

.hero-buttons .btn:hover i {
    transform: translateX(3px);
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite, fadeInUp 2s ease-out 1s both;
}

.hero-scroll-indicator i {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    animation: bounceArrow 2s ease-in-out infinite;
}

@keyframes bounceArrow {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Responsive Hero Design */
@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
        padding: var(--space-2xl) 0;
    }
    
    .hero-content {
        padding: 0 var(--space-lg);
    }
    
    .hero-badge {
        padding: var(--space-xs) var(--space-md);
        font-size: 0.8rem;
        margin-bottom: var(--space-lg);
    }
    
    .hero h1 {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: var(--space-lg);
    }
    
    .hero p {
        font-size: clamp(1rem, 4vw, 1.2rem);
        margin-bottom: var(--space-xl);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: var(--space-md);
        margin-bottom: var(--space-xl);
    }
    
    .hero-buttons .btn {
        min-width: 250px;
        padding: var(--space-md) var(--space-xl);
        font-size: 1rem;
    }
    
    .hero-overlay::before,
    .hero-overlay::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 70vh;
    }
    
    .hero-content {
        padding: 0 var(--space-md);
    }
    
    .hero h1 {
        font-size: clamp(1.75rem, 10vw, 2.5rem);
    }
    
    .hero p {
        font-size: clamp(0.9rem, 5vw, 1.1rem);
    }
    
    .hero-buttons .btn {
        min-width: 100%;
        padding: var(--space-md) var(--space-lg);
    }
}

/* ====================================================================
   MAIN CONTENT LAYOUT
   ==================================================================== */

main {
    margin-top: 0;
    overflow-x: hidden;
}

.section {
    padding: var(--space-4xl) 0;
    position: relative;
}

.section.bg-light {
    background: var(--gray-100);
}

.section.bg-dark {
    background: var(--dark-color);
    color: white;
}

.section.bg-primary {
    background: var(--gradient-primary);
    color: white;
}

/* Grid Systems */
.grid {
    display: grid;
    gap: var(--space-lg);
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* Flexbox Systems */
.flex {
    display: flex;
    gap: var(--space-lg);
    align-items: center;
}

.flex-center {
    justify-content: center;
}

.flex-between {
    justify-content: space-between;
}

.flex-column {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

/* ====================================================================
   FOOTER
   ==================================================================== */

footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%) !important;
    color: white !important;
    position: relative;
    overflow: hidden;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-4xl) var(--space-xl) var(--space-2xl);
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-3xl);
    position: relative;
}

/* Footer Logo Section - More Specific */
footer .footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* gap: var(--space-xs); */
    
}

footer .footer-logo img {
    width: 220px !important;
    height: auto !important;
    filter: brightness(1.1) drop-shadow(0 4px 12px rgba(0,0,0,0.4)) !important;
    transition: var(--transition) !important;
}

footer .footer-logo img:hover {
    filter: brightness(1.2) drop-shadow(0 6px 20px rgba(0,0,0,0.5)) !important;
    transform: scale(1.03) !important;
}

.brand-text {
    margin-top: var(--space-xs);
    text-align: center;
}

.footer-brand-name {
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-color), #fff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: var(--space-sm);
    line-height: 1.3;
    margin-top: -40px;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
    font-style: italic;
}

/* Footer Sections */
.footer-links,
.footer-contact,
.footer-social {
    display: flex;
    flex-direction: column;
}

.footer-links h3,
.footer-contact h3,
.footer-social h3 {
    color: var(--accent-color) !important;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: var(--space-lg);
    position: relative;
    padding-bottom: var(--space-sm);
}

.footer-links h3::after,
.footer-contact h3::after,
.footer-social h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    border-radius: 1px;
}

/* Footer Links - Better Hover Effects */
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none !important;
    transition: var(--transition);
    font-size: 0.95rem;
    padding: var(--space-xs) 0;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--accent-color);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color) !important;
    padding-left: var(--space-sm);
}

.footer-links a:hover::before {
    width: 30px;
}

/* Footer Contact */
.footer-contact p {
    color: rgba(255, 255, 255, 0.8) !important;
    line-height: 1.8;
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-contact p:hover {
    color: rgba(255, 255, 255, 0.95) !important;
}

.footer-contact i {
    font-size: 1rem;
    width: 20px;
    margin-right: var(--space-md);
    color: var(--accent-color) !important;
    flex-shrink: 0;
}

/* Social Media Icons - Fixed with !important */
.social-icons {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    margin-top: var(--space-md);
}

.social-icons a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 50px !important;
    height: 50px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 50% !important;
    color: white !important;
    font-size: 1.3rem !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    border: 2px solid rgba(255, 255, 255, 0.1) !important;
    position: relative;
}

.social-icons a:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3) !important;
}

/* Original Social Media Colors - Fixed */
.social-facebook:hover {
    background: #1877F2 !important;
    border-color: #1877F2 !important;
    color: white !important;
}

.social-instagram:hover {
    background: linear-gradient(45deg, #F56040, #F77737, #FCAF45, #FFDC80) !important;
    border-color: #F56040 !important;
    color: white !important;
}

.social-linkedin:hover {
    background: #0A66C2 !important;
    border-color: #0A66C2 !important;
    color: white !important;
}

.social-twitter:hover {
    background: #1DA1F2 !important;
    border-color: #1DA1F2 !important;
    color: white !important;
}

/* Newsletter Section */
.newsletter {
    margin-top: var(--space-xl);
}

.newsletter h4 {
    color: white !important;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.newsletter p {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.9rem;
    margin-bottom: var(--space-md);
    line-height: 1.5;
}

.newsletter-form {
    display: flex;
    gap: var(--space-sm);
    background: rgba(255, 255, 255, 0.1);
    padding: 4px;
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-form input {
    flex: 1;
    padding: var(--space-sm) var(--space-md);
    background: transparent;
    border: none;
    border-radius: var(--radius-sm);
    color: white;
    font-size: 0.9rem;
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    padding: var(--space-sm) var(--space-md);
    background: linear-gradient(135deg, var(--accent-color), #2ecc71);
    border: none;
    border-radius: var(--radius-sm);
    color: var(--dark-color);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    min-width: 50px;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(242, 185, 59, 0.4);
}

.newsletter-form button i {
    font-size: 1rem;
}

/* Footer Bottom - Enhanced Copyright */
.footer-bottom {
    background: rgba(0, 0, 0, 0.4) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: var(--space-xl) 0 !important;
    margin-top: var(--space-xl);
    text-align: center !important;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: var(--space-lg);
}

.footer-bottom-content p {
    color: rgba(255, 255, 255, 0.7) !important;
    margin: 0 !important;
    font-size: 0.95rem !important;
    text-align: center !important;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.footer-bottom-content span {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 600;
}

.footer-links-bottom {
    display: flex;
    gap: var(--space-xl);
    justify-content: center;
    flex-wrap: wrap;
}

.footer-links-bottom a {
    color: rgba(255, 255, 255, 0.6) !important;
    text-decoration: none !important;
    font-size: 0.9rem;
    transition: var(--transition);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
}

.footer-links-bottom a:hover {
    color: var(--accent-color) !important;
    background: rgba(255, 255, 255, 0.05);
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
    }
    
    .footer-logo {
        grid-column: span 2;
        text-align: center;
        margin-bottom: var(--space-xl);
    }
    
    footer .footer-logo img {
        width: 200px !important;
    }
    
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        text-align: center;
        padding: var(--space-3xl) var(--space-lg) var(--space-xl);
    }
    
    .footer-logo {
        grid-column: span 1;
        margin-bottom: var(--space-xl);
    }
    
    footer .footer-logo img {
        width: 180px !important;
    }
    
    .footer-links h3::after,
    .footer-contact h3::after,
    .footer-social h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links a:hover {
        padding-left: 0;
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-bottom-content {
        gap: var(--space-md);
    }
    
    .footer-links-bottom {
        gap: var(--space-md);
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: var(--space-2xl) var(--space-md) var(--space-lg);
    }
    
    footer .footer-logo img {
        width: 160px !important;
    }
    
    .social-icons {
        justify-content: center;
        gap: var(--space-sm);
    }
    
    .social-icons a {
        width: 45px !important;
        height: 45px !important;
        font-size: 1.2rem !important;
    }
    
    .footer-links-bottom {
        flex-direction: column;
        gap: var(--space-sm);
    }
}

/* ====================================================================
   RESPONSIVE LAYOUT
   ==================================================================== */

@media screen and (max-width: 1024px) {
    .nav-links {
        gap: 0.3rem;
    }
    
    .nav-links a {
        padding: 0.4rem 0.6rem;
        font-size: 0.9rem;
    }
    
    .brand-name {
        font-size: 1.4rem;
    }
    
    .brand-tagline {
        font-size: 0.75rem;
    }
}

@media screen and (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    
    header {
        padding: 0.6rem 5%;
    }
    
    .header-container {
        flex-direction: column;
        align-items: center;
        gap: 0.2rem;
        padding: 0.7rem 0 0.3rem 0;
    }
    
    .logo-container {
        justify-content: center;
        align-items: center;
        gap: 0.7rem;
        width: 100%;
        padding: 0;
    }
    
    #logo {
        width: 80px;
        max-width: 100px;
        min-width: 60px;
        margin: 0;
    }
    
    .brand-text {
        align-items: center;
        margin-left: 0;
        text-align: center;
        width: 100%;
        max-width: 90vw;
        word-break: break-word;
    }
    
    .brand-name {
        font-size: 1.25rem;
        line-height: 1.2;
        margin: 0;
        text-align: center;
        white-space: normal;
    }
    
    .brand-tagline {
        font-size: 0.85rem;
        text-align: center;
        margin: 0;
        white-space: normal;
    }
    
    .language-selector {
        position: relative !important;
    }
    
    .language-selector .language-options {
        position: fixed !important;
        top: 70px !important;
        right: 16px !important;
        left: auto !important;
        min-width: 170px !important;
        width: 75vw !important;
        max-width: 260px !important;
        box-shadow: 0 8px 24px rgba(0,0,0,0.18) !important;
        border-radius: 14px !important;
        border: 1px solid #e0c9a0 !important;
        margin: 0 !important;
        background: #fff !important;
        z-index: 99999 !important;
        display: block !important;
    }
    
    .language-option {
        padding: 0.8rem 1.2rem !important;
        font-size: 1.05rem !important;
        text-align: left !important;
        border-radius: 0 !important;
    }
    
    .nav-lang-container {
        flex-direction: column;
        align-items: flex-end;
        gap: var(--space-sm);
    }
    
    .language-selector .selected-lang {
        padding: 0.3rem 0.5rem;
        font-size: 0.8rem;
    }
    
    .language-selector .selected-lang .lang-icon {
        width: 16px;
        height: 12px;
        margin-right: 0.3rem;
    }
    
    .language-selector .selected-lang span {
        display: inline !important;
        font-size: 1rem;
        font-weight: 600;
        margin-left: 0.3rem;
    }
    
    .language-selector .language-options {
        display: none !important;
        position: absolute;
        top: calc(100% + 8px);
        right: 0;
        background-color: white;
        border-radius: 8px;
        border: 1px solid rgba(139, 90, 43, 0.2);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
        width: 120px;
        z-index: 9999;
        transition: all 0.3s ease;
    }
    
    .language-options.show {
        display: block !important;
    }
    
    .brand-name {
        font-size: 1.2rem;
    }
    
    .brand-tagline {
        font-size: 0.7rem;
    }
    
    #logo {
        width: 45px;
    }
    
    .nav-links {
        position: absolute !important;
        top: 70px !important;
        left: 0 !important;
        width: 85vw !important;
        max-width: 340px !important;
        height: auto !important;
        min-height: 200px;
        background: #fff !important;
        border-radius: 0 18px 18px 0;
        box-shadow: 2px 0 24px rgba(0,0,0,0.13);
        padding: 1.2rem 1.2rem 1.2rem 1.5rem !important;
        z-index: 12000 !important;
        transform: translateX(-110%);
        transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 1.1rem !important;
    }
    
    .nav-links.nav-active {
        transform: translateX(0) !important;
    }
    
    .burger {
        display: block;
        position: fixed;
        top: 1.2rem;
        left: 1.2rem;
        z-index: 11000;
    }
    
    .burger div {
        width: 25px;
        height: 3px;
        background-color: var(--dark-color);
        margin: 5px;
        border-radius: 3px;
        transition: all 0.3s ease;
    }
    
    .dropdown-content {
        position: static;
        background: #f9f9f9;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .dropdown.active .dropdown-content {
        max-height: 300px;
        padding: 0.5rem 0;
    }
    
    .dropdown-content a {
        padding: 0.7rem 1.2rem;
        display: block;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .sticky-nav-links {
        position: absolute;
        right: 0;
        top: 100%;
        background-color: white;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        max-width: 200px;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        padding: 1rem;
        box-shadow: -5px 5px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        border-radius: 0 0 0 12px;
    }
    
    .sticky-nav-links li {
        width: 100%;
    }
    
    .sticky-nav-links a {
        padding: 0.4rem 0.5rem;
        font-size: 0.85rem;
    }
    
    .sticky-nav-links a:hover,
    .sticky-nav-links a.active {
        background-color: rgba(139, 90, 43, 0.1);
        color: var(--primary-color);
    }
    
    .sticky-burger {
        display: block;
    }
    
    .sticky-nav-active {
        transform: translateX(0%);
    }
    
    .sticky-burger.toggle .line1 {
        transform: rotate(-45deg) translate(-4px, 5px);
    }
    
    .sticky-burger.toggle .line2 {
        opacity: 0;
    }
    
    .sticky-burger.toggle .line3 {
        transform: rotate(45deg) translate(-4px, -5px);
    }
    
    .sticky-logo span {
        font-size: 0.9rem;
    }
    
    .sticky-language-selector .sticky-selected-lang span {
        display: block;
    }
    
    .sticky-selected-lang {
        padding: 0.3rem 0.5rem;
        font-size: 0.8rem;
    }
    
    .sticky-nav-links .dropdown-content {
        position: static;
        background-color: #f9f9f9;
        box-shadow: none;
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        width: 100%;
        margin-top: 0.5rem;
    }
    
    .sticky-nav-links .dropdown.active .dropdown-content {
        max-height: 100px;
    }
    
    .sticky-nav-links .dropdown-content a {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }
    
    .sticky-nav-links .dropdown-content a:hover {
        background-color: rgba(139, 90, 43, 0.1);
    }
    
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .flex {
        flex-direction: column;
        align-items: stretch;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .social-links {
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .nav-links {
        width: 100%;
        max-width: 100%;
    }
    
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .header-container,
    .footer-container {
        padding: 0 var(--space-md);
    }
    
    .section {
        padding: var(--space-2xl) 0;
    }
    
    .container {
        padding: 0 var(--space-md);
    }
}

/* ====================================================================
   UTILITY LAYOUT CLASSES
   ==================================================================== */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

.position-relative { position: relative; }
.position-absolute { position: absolute; }
.position-fixed { position: fixed; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

/* ====================================================================
   HOME PAGE SECTIONS
   ==================================================================== */

/* Featured Products Section */
.featured-products {
    padding: 5rem 1rem;
    text-align: center;
    background: var(--gray-100);
}

.products-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background-color: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    width: 300px;
    transition: var(--transition);
}

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

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-card h3 {
    margin: 1rem 0 0.5rem;
    color: var(--primary-color);
}

.product-card p {
    padding: 0 1rem 1.5rem;
    color: var(--gray-600);
}

.product-card .btn {
    margin: 0 1rem 1.5rem;
}

/* About Preview Section */
.about-preview {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background-color: white;
    padding: 5rem 2rem;
}

.about-content {
    flex: 1;
    padding: 0 2rem;
    min-width: 300px;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

@media (max-width: 768px) {
    .products-container {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .about-content {
        padding: 0;
        order: 2;
    }
    
    .about-image {
        order: 1;
    }
}

/* Navigation ve Language Container */
.nav-lang-container {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

/* ====================================================================
   LANGUAGE SELECTOR
   ==================================================================== */

/* Ana Header Dil Seçici */
.language-selector {
    position: relative;
    margin-left: 1rem;
    z-index: 1100;
}

.language-selector .selected-lang {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0.4rem 0.6rem;
    border-radius: 8px;
    color: var(--primary-color);
    font-size: 0.85rem;
    background-color: rgba(139, 90, 43, 0.1);
    transition: var(--transition);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

.language-selector .selected-lang:hover {
    background-color: rgba(139, 90, 43, 0.2);
    transform: translateY(-2px);
}

.language-selector .selected-lang i {
    margin-left: 0.3rem;
    font-size: 0.8rem;
    position: relative;
    top: 1px;
}

.language-selector .selected-lang .lang-icon {
    width: 20px;
    height: 14px;
    margin-right: 0.5rem;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Normal ekran boyutları için language-options */
.language-selector .language-options {
    display: none !important;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background-color: white;
    border-radius: 8px;
    border: 1px solid rgba(139, 90, 43, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    width: 120px;
    z-index: 9999;
    transition: all 0.3s ease;
}

/* Sadece show sınıfı ile görünür olacak */
.language-options.show {
    display: block !important;
}

.language-option {
    display: flex;
    align-items: center;
    padding: 0.8rem 1rem;
    cursor: pointer;
    transition: var(--transition);
    pointer-events: auto !important;
    position: relative;
    z-index: 10000;
}

.language-option:hover {
    background-color: rgba(139, 90, 43, 0.1);
}

.language-option * {
    pointer-events: none;
}

.language-option .lang-icon {
    width: 24px;
    height: 16px;
    margin-right: 0.8rem;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.language-option span {
    font-size: 0.95rem;
    color: var(--dark-color);
    font-weight: 500;
}

/* ====================================================================
   STICKY NAVIGATION BAR
   ==================================================================== */

/* Sticky Navigation Bar */
.sticky-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    z-index: 1100;
    transform: translateY(-100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
    border-bottom: 3px solid var(--primary-color);
}

.sticky-nav.visible {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.sticky-nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.5rem 5%;
}

.sticky-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sticky-logo img {
    width: 40px;
    height: auto;
    transition: var(--transition);
}

.sticky-logo span {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
}

.sticky-nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.sticky-nav-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sticky-nav-links li {
    position: relative;
    list-style: none;
}

.sticky-nav-links a {
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: block;
    transition: var(--transition);
    padding: 0.4rem 0.6rem;
    border-radius: 6px;
    white-space: nowrap;
}

.sticky-nav-links a:hover,
.sticky-nav-links a.active {
    color: var(--primary-color);
    background-color: rgba(139, 90, 43, 0.1);
}

.sticky-nav-links .dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 180px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    z-index: 1000;
}

.sticky-nav-links .dropdown-content a {
    padding: 0.6rem 1rem;
    border-radius: 0;
}

.sticky-nav-links .dropdown-content a:hover {
    background-color: rgba(139, 90, 43, 0.1);
}

/* Sticky Dil Seçici */
.sticky-language-selector {
    position: relative;
}

.sticky-selected-lang {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0.4rem 0.6rem;
    border-radius: 6px;
    color: var(--primary-color);
    font-size: 0.85rem;
    background-color: rgba(139, 90, 43, 0.1);
    transition: all 0.3s ease;
    white-space: nowrap;
    border: 1px solid rgba(139, 90, 43, 0.2);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.sticky-selected-lang:hover {
    background-color: rgba(139, 90, 43, 0.2);
    transform: translateY(-1px);
}

.sticky-selected-lang .lang-icon {
    width: 18px;
    height: 12px;
    margin-right: 0.4rem;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.sticky-selected-lang i {
    margin-left: 0.3rem;
    font-size: 0.7rem;
}

.sticky-language-options {
    display: none !important;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background-color: white;
    backdrop-filter: blur(15px);
    border-radius: 8px;
    border: 1px solid rgba(139, 90, 43, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    width: 150px;
    z-index: 9999;
    transition: all 0.3s ease;
}

.sticky-language-options.show {
    display: block !important;
    animation: fadeInUp 0.3s ease;
}

.sticky-language-options .language-option {
    color: var(--dark-color);
    padding: 0.6rem 0.8rem;
    cursor: pointer;
    transition: var(--transition);
    pointer-events: auto !important;
    position: relative;
    z-index: 10000;
}

.sticky-language-options .language-option:hover {
    background-color: rgba(139, 90, 43, 0.1);
}

.sticky-language-options .language-option * {
    pointer-events: none;
}

.sticky-burger {
    display: none;
    cursor: pointer;
    margin-left: 1rem;
}

.sticky-burger div {
    width: 22px;
    height: 2px;
    background-color: var(--dark-color);
    margin: 4px;
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
} 