/*
Theme Name: YUM-BİR - Kurumsal Tema
Theme URI: https://yumbir.org.tr
Author: YUM-BİR Ekibi
Author URI: https://yumbir.org.tr
Description: YUM-BİR Yumurta Üreticileri Merkez Birliği için modern ve profesyonel kurumsal WordPress teması
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: yumbir
Tags: corporate, agriculture, food, business, professional, responsive
*/

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Montserrat:wght@700;800;900&display=swap');

/* ========================================
   CSS Variables
======================================== */
:root {
    --primary-color: #267F2E;
    --secondary-color: #F4D03F;
    --dark: #0F172A;
    --muted: #64748B;
    --bg: #F8FAFC;
    --accent: #E2E8F0;
    --text-dark: #0F172A;
    --text-light: #64748B;
    --bg-white: #FFFFFF;
    --border-color: #E2E8F0;
}

/* ========================================
   Global Reset
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg);
    overflow-x: hidden;
    padding-top: 0;
    margin: 0;
}

/* Ana içerik wrapper */
article {
    width: 100%;
    margin: 0;
    padding: 0;
}

article .page-hero {
    margin-top: 0;
}

article .page-content {
    min-height: 50vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

/* ========================================
   Site Header
======================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.site-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.site-logo-img {
    height: 120px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.site-logo-normal {
    display: block;
}

.site-logo-scroll {
    display: none;
    height: 80px;
    width: auto;
    max-width: 200px;
}

@media (max-width: 768px) {
    .site-logo-img {
        height: 60px;
        max-width: 180px;
    }
    .site-logo-scroll {
        height: 60px;
        max-width: 180px;
    }
}

.site-header.scrolled .site-logo-normal {
    display: none;
}

.site-header.scrolled .site-logo-scroll {
    display: block;
}

/* Scroll logo yoksa normal logo küçültülür */
.site-header.scrolled .site-logo-img:not(.site-logo-scroll) {
    height: 80px;
    max-width: 200px;
}

.site-logo-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #1b5e22);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.2rem;
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .site-logo-icon {
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
    }
}

.site-header.scrolled .site-logo-icon {
    width: 50px;
    height: 50px;
    font-size: 1.8rem;
}

.site-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--dark);
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
}

.site-subtitle {
    font-size: 0.7rem;
    color: var(--muted);
    letter-spacing: 1px;
    margin-top: 2px;
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}


.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--dark);
}

/* Body padding için header yüksekliği kadar boşluk */
body {
    padding-top: 0;
}

/* Main content için spacing */
main {
    min-height: calc(100vh - 400px);
}

/* ========================================
   Scrollbar Styling
======================================== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #1b5e22;
}

/* ========================================
   Modern Animations & Effects
======================================== */

/* Fade In Up Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fade In Animation */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Scale In Animation */
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Slide In Left */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Slide In Right */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Bounce Animation */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(38, 127, 46, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(38, 127, 46, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(38, 127, 46, 0);
    }
}

/* Gradient Animation */
@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Float Animation */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Rotate 360 */
@keyframes rotate360 {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ========================================
   Page Animations & Utilities
======================================== */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    animation: fadeIn 0.8s ease-in;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.scale-in {
    animation: scaleIn 0.6s ease-out;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

/* ========================================
   Modern Page Sections
======================================== */

.page-hero {
    position: relative;
    padding: 220px 0 120px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1b5e22 100%);
    background-size: 200% 200%;
    animation: gradientMove 15s ease infinite;
    overflow: hidden;
    margin:0!important;
    background-position: center;
    background-repeat: no-repeat;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.page-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(15,23,42,0.3) 0%, rgba(15,23,42,0.7) 100%);
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero-title {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1rem;
    text-align: center;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.page-hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.page-content {
    padding: 80px 0;
    background: var(--bg);
    width: 100%;
}

.page-content .container {
    width: 100%;
    max-width: 1200px;
}

/* WordPress İçerik Class'ları */
.entry-content,
.page-content,
article {
    width: 100%;
}

/* Genel Liste Stilleri */
ul {
    list-style-position: inside;
}

li {
    margin-bottom: 10px;
}

/* Link Stilleri */
p a,
li a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

p a:hover,
li a:hover {
    color: #1b5e22;
}

/* Modern Card */
.modern-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: left 0.6s ease;
}

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

.modern-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* Icon Box */
.icon-box {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 20px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

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

.icon-box-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), #1b5e22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    transition: all 0.4s ease;
}

.icon-box:hover .icon-box-icon {
    animation: pulse 1.5s infinite;
    background: linear-gradient(135deg, #1b5e22, var(--primary-color));
}

.icon-box-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.icon-box-text {
    color: var(--muted);
    line-height: 1.7;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.feature-item {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}

.feature-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.feature-item p {
    color: var(--muted);
    line-height: 1.7;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 50px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    width: calc(50% - 40px);
}

.timeline-item:nth-child(odd) {
    margin-left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    margin-left: calc(50% + 40px);
    text-align: left;
}

.timeline-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border: 4px solid white;
    border-radius: 50%;
    top: 0;
    box-shadow: 0 0 0 4px var(--primary-color);
    animation: pulse 2s infinite;
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -50px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -50px;
}

.timeline-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

/* Stats Counter */
.stats-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.stat-item {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--muted);
    margin-top: 10px;
}

/* Accordion */
.accordion-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.accordion-header {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    background: white;
}

.accordion-header:hover {
    background: var(--bg);
}

.accordion-header.active {
    background: var(--primary-color);
    color: white;
}

.accordion-icon {
    transition: transform 0.3s ease;
}

.accordion-header.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 30px;
}

.accordion-content.active {
    max-height: 1000px;
    padding: 25px 30px;
}

/* Image with Overlay */
.image-overlay-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.image-overlay-wrapper img {
    display: block;
    width: 100%;
    transition: transform 0.5s ease;
}

.image-overlay-wrapper:hover img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 40px 30px 30px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.image-overlay-wrapper:hover .image-overlay {
    transform: translateY(0);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), #1b5e22);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    top: -250px;
    right: -250px;
    animation: float 6s ease-in-out infinite;
}

.cta-title {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 18px 50px;
    background: white;
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

/* ========================================
   Responsive Design - Mobile First
======================================== */

@media (max-width: 768px) {
    /* Header */
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-navigation {
        display: none;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 15px;
    }
    
    /* Hero Section */
    .page-hero {
        padding: 80px 0 50px;
        margin-top: 70px;
    }
    
    .page-hero-title {
        font-size: 2rem;
    }
    
    .page-hero-subtitle {
        font-size: 1rem;
    }
    
    /* Cards */
    .modern-card {
        padding: 25px;
        border-radius: 15px;
    }
    
    /* Feature Grid */
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Icon Box */
    .icon-box {
        padding: 30px 20px;
    }
    
    .icon-box-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .icon-box-title {
        font-size: 1.2rem;
    }
    
    /* Timeline */
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        width: 100%;
        margin-left: 60px !important;
        text-align: left !important;
    }
    
    .timeline-item:nth-child(odd) .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot {
        left: -50px;
    }
    
    /* Stats */
    .stats-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    /* CTA */
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-text {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 15px 35px;
        font-size: 1rem;
    }
    
    /* Page Content */
    .page-content {
        padding: 40px 0;
    }
    
    /* Container */
    .container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 480px) {
    .page-hero-title {
        font-size: 1.6rem;
    }
    
    .modern-card {
        padding: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .feature-item {
        padding: 25px;
    }
    
    .feature-item i {
        font-size: 2rem;
    }
}

/* ========================================
   Selection
======================================== */
::selection {
    background-color: var(--primary-color);
    color: white;
}

::-moz-selection {
    background-color: var(--primary-color);
    color: white;
}

/* ========================================
   Utility Classes
======================================== */
.glass {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.hero-gradient {
    background: linear-gradient(180deg, rgba(15,23,42,0) 0%, rgba(15,23,42,0.8) 100%);
}

.fade-in {
    animation: fadeIn 0.6s ease-in;
}

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

/* ========================================
   Header Styles
======================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: all 0.5s ease;
    border-bottom: 1px solid transparent;
    width: 100%;
    margin: 0;
    padding: 0;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 0.75rem 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border-bottom-color: rgba(226, 232, 240, 0.5);
}

.site-header:not(.scrolled) {
    background: transparent;
    padding:0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
    padding: 0 2rem;
    margin: 0;
}

.site-header .container {
    padding: 0;
    max-width: 100%;
}

/* Logo */
.site-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.site-logo-img {
    height: 120px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.site-logo-normal {
    display: block;
}

.site-logo-scroll {
    display: none;
    height: 80px;
    width: auto;
    max-width: 200px;
}

@media (max-width: 768px) {
    .site-logo-img {
        height: 60px;
        max-width: 180px;
    }
    .site-logo-scroll {
        height: 60px;
        max-width: 180px;
    }
}

.site-header.scrolled .site-logo-normal {
    display: none;
}

.site-header.scrolled .site-logo-scroll {
    display: block;
}

/* Scroll logo yoksa normal logo küçültülür */
.site-header.scrolled .site-logo-img:not(.site-logo-scroll) {
    height: 80px;
    max-width: 200px;
}

.site-logo-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-weight: 900;
    font-size: 2.2rem;
    box-shadow: 0 10px 25px rgba(38, 127, 46, 0.2);
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .site-logo-icon {
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
    }
}

.site-header.scrolled .site-logo-icon {
    width: 50px;
    height: 50px;
    font-size: 1.8rem;
}

.site-logo-wrapper:hover .site-logo-icon {
    transform: rotate(12deg);
}

.site-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 1;
    transition: color 0.3s ease;
}

.site-header.scrolled .site-title {
    color: var(--text-dark);
}

.site-header:not(.scrolled) .site-title {
    color: white;
}

.site-subtitle {
    font-size: 0.5625rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    transition: color 0.3s ease;
}

.site-header.scrolled .site-subtitle {
    color: var(--primary-color);
}

.site-header:not(.scrolled) .site-subtitle {
    color: rgba(244, 208, 63, 0.8);
}

/* Navigation */
.main-navigation {
    display: none;
}

@media (min-width: 1024px) {
    .main-navigation {
        display: flex;
        align-items: center;
        gap: 2rem;
        flex: 1;
        justify-content: flex-end;
    }
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
}

.nav-menu a {
    font-weight: 700;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.site-header.scrolled .nav-menu a {
    color: var(--muted);
}

.site-header:not(.scrolled) .nav-menu a {
    color: rgba(255, 255, 255, 0.8);
}

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

.site-header:not(.scrolled) .nav-menu a:hover {
    color: white;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after,
.nav-menu .current-menu-item > a::after,
.nav-menu .current-page-ancestor > a::after {
    width: 100%;
}

/* Alt menü olan linklerde alt çizgi arrow'un solunda bitmeli */
.nav-menu .menu-item-has-children > a::after {
    left: 0;
    right: 1.5rem;
    width: 0;
}

.nav-menu .menu-item-has-children > a:hover::after,
.nav-menu .menu-item-has-children > a.active::after,
.nav-menu .menu-item-has-children.current-menu-item > a::after,
.nav-menu .menu-item-has-children.current-page-ancestor > a::after {
    width: auto;
    left: 0;
    right: 1.5rem;
}

.nav-menu .current-menu-item > a,
.nav-menu .current-page-ancestor > a {
    color: var(--primary-color);
}

.site-header:not(.scrolled) .nav-menu .current-menu-item > a,
.site-header:not(.scrolled) .nav-menu .current-page-ancestor > a {
    color: white;
}

/* Alt Menü (Dropdown) Stilleri - Desktop */
.nav-menu li {
    position: relative;
}

.nav-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    border-radius: 12px;
    padding: 0.75rem 0;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 999;
    list-style: none;
    display: block;
    flex-direction: column;
    gap: 0;
}

.nav-menu li:hover > .sub-menu,
.nav-menu li.menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu .sub-menu li {
    margin: 0;
    padding: 0;
}

.nav-menu .sub-menu a {
    display: block;
    padding: 0.875rem 1.5rem;
    color: var(--text-dark) !important;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    position: relative;
}

.nav-menu .sub-menu a:hover {
    background: #f9fafb;
    color: var(--primary-color) !important;
    border-left-color: var(--primary-color);
    padding-left: 1.75rem;
}

/* Submenu linklerinde alt çizgi yok */
.nav-menu .sub-menu a::after {
    display: none;
}

/* Submenu içinde alt menü varsa arrow ikonu */
.nav-menu .sub-menu .menu-item-has-children > a {
    padding-right: 2rem;
}

.nav-menu .sub-menu .menu-item-has-children > a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.7rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
    z-index: 1;
}

.nav-menu .sub-menu .menu-item-has-children > a:hover::before {
    color: var(--primary-color);
    right: 0.75rem;
}

.nav-menu .sub-menu .current-menu-item > a {
    background: #f0fdf4;
    color: var(--primary-color) !important;
    border-left-color: var(--primary-color);
}

/* Alt menü ok işareti - Sağda */
.nav-menu .menu-item-has-children > a {
    position: relative;
    padding-right: 1.5rem;
}

/* Arrow ikonu için ::before kullan (alt çizgi ::after kullanıyor) */
.nav-menu .menu-item-has-children > a::before {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.75rem;
    transition: transform 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.nav-menu li.menu-item-has-children:hover > a::before,
.nav-menu li:hover.menu-item-has-children > a::before {
    transform: translateY(-50%) rotate(180deg);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-left: 2rem;
}

/* Header Divider */
.header-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    opacity: 0.5;
}

.site-header.scrolled .header-divider {
    background: rgba(0, 0, 0, 0.1);
}

/* Header Search */
.header-search {
    position: relative;
}

.search-toggle {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.site-header.scrolled .search-toggle {
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--text-dark);
}

.site-header:not(.scrolled) .search-toggle {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
}

.search-toggle:hover {
    background: rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.search-toggle i {
    font-size: 1rem;
}

.search-form-wrapper {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 300px;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.search-form-wrapper.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.search-form {
    display: flex;
    gap: 0.5rem;
}

.search-field {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    outline: none;
    font-size: 0.875rem;
    transition: border-color 0.3s ease;
}

.search-field:focus {
    border-color: var(--primary-color);
}

.search-submit {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-submit:hover {
    background: #1b5e22;
}

/* Header Contact & Social */
.header-contact-social {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 1rem;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

.site-header.scrolled .header-phone {
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--text-dark);
}

.site-header:not(.scrolled) .header-phone {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
}

.header-phone:hover {
    background: rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.header-phone i {
    font-size: 1rem;
    color: var(--secondary-color);
}

.site-header.scrolled .header-phone i {
    color: var(--secondary-color);
}

.phone-text {
    display: inline;
    font-weight: 700;
}

.header-social {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-social .social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.site-header.scrolled .header-social .social-link {
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--text-dark);
}

.site-header:not(.scrolled) .header-social .social-link {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
}

.header-social .social-link:hover {
    background: rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Mobile Menu Button */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    padding: 0;
    box-shadow: 0 10px 25px rgba(38, 127, 46, 0.2);
    transition: all 0.3s ease;
    z-index: 1001;
}

.mobile-menu-toggle .menu-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 20px;
    height: 16px;
}

.mobile-menu-toggle .menu-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .menu-icon span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .menu-icon span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .menu-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }
}

/* Mobil Menü Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    overflow-y: auto;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    background: white;
    width: 85%;
    max-width: 400px;
    height: 100%;
    padding: 2rem 0;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    box-shadow: 4px 0 20px rgba(0,0,0,0.2);
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-menu li {
    border-bottom: 1px solid #e5e7eb;
}

.mobile-nav-menu > li:first-child {
    border-top: 1px solid #e5e7eb;
}

.mobile-nav-menu a {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-nav-menu a:hover,
.mobile-nav-menu .current-menu-item > a {
    background: #f0fdf4;
    color: var(--primary-color);
    padding-left: 2rem;
}

.mobile-nav-menu .menu-item-has-children > a {
    position: relative;
    padding-right: 3rem;
}

.mobile-nav-menu .menu-item-has-children > a::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.mobile-nav-menu .menu-item-has-children.submenu-open > a::after {
    transform: translateY(-50%) rotate(180deg);
}

.mobile-nav-menu .sub-menu {
    display: none;
    background: #f9fafb;
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-menu .menu-item-has-children.submenu-open > .sub-menu {
    display: block;
}

.mobile-nav-menu .sub-menu a {
    padding-left: 2.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-light);
}

.mobile-nav-menu .sub-menu a:hover,
.mobile-nav-menu .sub-menu .current-menu-item > a {
    background: #e8f5e9;
    color: var(--primary-color);
    padding-left: 3rem;
}

/* ========================================
   Hero Section
======================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--dark);
    padding: 6rem 0 4rem;
}

@media (min-width: 1024px) {
    .hero-section {
        padding: 8rem 0 6rem;
        min-height: 90vh;
    }
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    filter: brightness(0.7);
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-video-wrapper iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    pointer-events: none;
}

.hero-video-wrapper video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    pointer-events: none;
    z-index: 1;
}

.hero-background::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15,23,42,0.3) 0%, rgba(15,23,42,0.85) 100%);
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 2rem 0;
}

@media (min-width: 1024px) {
    .hero-content-wrapper {
        padding: 4rem 0;
    }
}

.hero-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    position: relative;
}

@media (min-width: 1024px) {
    .hero-grid {
        flex-direction: row;
        gap: 3rem;
        align-items: flex-start;
        justify-content: space-between;
    }
}

.hero-text {
    width: 100%;
    text-align: center;
    margin-top: 1rem;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .hero-text {
        padding: 0 2rem;
    }
}

@media (min-width: 1024px) {
    .hero-text {
        width: 55%;
        text-align: left;
        margin-top: 0;
        padding: 0;
        order: 1;
    }
}

.hero-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
    .hero-label {
        justify-content: flex-start;
    }
}

.hero-label span:first-child {
    display: none;
    height: 1px;
    width: 3rem;
    background: var(--secondary-color);
}

@media (min-width: 768px) {
    .hero-label span:first-child {
        display: block;
    }
}

.hero-label-text {
    color: var(--secondary-color);
    font-weight: 700;
    letter-spacing: 0.2em;
    font-size: 0.625rem;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .hero-label-text {
        font-size: 0.75rem;
        letter-spacing: 0.3em;
    }
}

.hero-title {
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.05em;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 5.5rem;
        line-height: 0.9;
    }
}

.hero-title .highlight {
    color: var(--secondary-color);
}

.hero-description {
    color: #CBD5E1;
    font-size: 1.125rem;
    max-width: 32rem;
    margin: 0 auto 2rem;
    line-height: 1.75;
    font-weight: 300;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.25rem;
        margin-bottom: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-description {
        margin: 0 0 3rem 0;
    }
}

.hero-description .bold {
    color: white;
    font-weight: 700;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-actions {
        flex-direction: row;
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .hero-actions {
        justify-content: flex-start;
    }
}

.hero-btn-primary,
a.hero-btn-primary {
    width: 100%;
    background: var(--primary-color);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 1rem;
    font-weight: 900;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 25px 50px rgba(38, 127, 46, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
}

@media (min-width: 640px) {
    .hero-btn-primary {
        width: auto;
    }
}

@media (min-width: 768px) {
    .hero-btn-primary {
        padding: 1.25rem 3rem;
    }
}

.hero-btn-primary:hover {
    background: white;
    color: var(--dark);
}

.hero-btn-primary svg {
    width: 1.25rem;
    height: 1.25rem;
    margin-left: 0.75rem;
    transition: transform 0.3s ease;
}

.hero-btn-primary:hover svg {
    transform: translateX(0.5rem);
}

.hero-btn-secondary,
a.hero-btn-secondary {
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 0.25rem;
    transition: all 0.3s ease;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    cursor: pointer;
    padding: 0.5rem 0;
    text-decoration: none;
    display: inline-block;
}

.hero-btn-secondary:hover,
a.hero-btn-secondary:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

/* Price Panel */
.price-panel {
    width: 100%;
    max-width: 24rem;
    margin-top: 2rem;
    order: 2;
}

@media (min-width: 1024px) {
    .price-panel {
        width: auto;
        position: relative;
        right: auto;
        top: auto;
        margin-top: 0;
        z-index: 20;
        order: 2;
        max-width: 22rem;
    }
}

.price-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 1.25rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.price-card.open {
    max-height: 500px;
    padding: 1.5rem;
}

.price-card.closed {
    max-height: 70px;
    padding: 1rem 1.25rem;
}

.price-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
    transition: all 0.3s ease;
}

.price-title-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.price-emoji {
    font-size: 1.125rem;
}

.price-title {
    color: var(--dark);
    font-weight: 700;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .price-title {
        font-size: 0.9375rem;
    }
}

.price-toggle {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(38, 127, 46, 0.1);
    color: var(--primary-color);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.price-toggle:hover {
    background: var(--primary-color);
    color: white;
}

.price-toggle svg {
    width: 1rem;
    height: 1rem;
    transition: transform 0.5s ease;
}

.price-toggle.open svg {
    transform: rotate(180deg);
}

.price-list {
    margin-top: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: all 0.5s ease;
    overflow: hidden;
}

@media (min-width: 768px) {
    .price-list {
        gap: 0.875rem;
    }
}

.price-list.hidden {
    opacity: 0;
    transform: translateY(2.5rem);
    pointer-events: none;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(248, 250, 252, 0.8);
    padding: 0.625rem 0.75rem;
    border-radius: 0.75rem;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.price-item:hover {
    border-color: rgba(38, 127, 46, 0.2);
}

.price-size {
    color: var(--muted);
    font-weight: 600;
    font-size: 0.75rem;
    transition: color 0.3s ease;
}

.price-item:hover .price-size {
    color: var(--primary-color);
}

.price-value-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.price-value {
    color: var(--dark);
    font-weight: 800;
    font-size: 0.9375rem;
}

@media (min-width: 768px) {
    .price-value {
        font-size: 1rem;
    }
}

.price-trend {
    font-size: 0.75rem;
}

.price-trend.up {
    color: #10B981;
}

.price-trend.down {
    color: #EF4444;
}

.price-trend.stable {
    color: var(--muted);
}

.price-footer {
    padding-top: 0.75rem;
    border-top: 1px solid rgba(226, 232, 240, 0.5);
    margin-top: 0.5rem;
}

.price-update {
    font-size: 0.5625rem;
    color: var(--muted);
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Hero Bottom Gradient */
.hero-bottom-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6rem;
    background: linear-gradient(to top, white, transparent);
    opacity: 1;
    z-index: 10;
}

/* ========================================
   Stats Bar
======================================== */
.stats-bar {
    background: var(--primary-color);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.stats-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--secondary-color);
    opacity: 0.5;
}

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

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    text-align: center;
    color: white;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:last-child {
    border-right: none;
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    color: #267F2E;
}

.stat-icon i {
    color: #267F2E;
}

.stat-value {
    font-size: 1.875rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
    color: #F4D03F !important;
}

@media (min-width: 768px) {
    .stat-value {
        font-size: 2.25rem;
        color: #F4D03F !important;
    }
}

.stat-label {
    color: #267F2E !important;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

/* ========================================
   Sections
======================================== */
.section {
    padding: 8rem 0;
    background: white;
    position: relative;
    overflow: hidden;
}

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

.section.bg-dark {
    background: #1E293B;
    color: white;
}

.section-header {
    margin-bottom: 1rem;
}

.section-label {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.section-title {
    color: var(--dark);
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.section-title .highlight {
    color: var(--primary-color);
    font-style: italic;
}

.section-description {
    color: var(--muted);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.75;
}

/* ========================================
   Footer
======================================== */
.site-footer {
    background: var(--dark);
    color: white;
    padding: 5rem 0 2.5rem;
}

.footer-newsletter {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 4rem;
    margin-bottom: 4rem;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .footer-newsletter {
        flex-direction: row;
    }
}

.newsletter-content {
    max-width: 28rem;
}

.newsletter-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.newsletter-text {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form {
    display: flex;
    width: 100%;
    max-width: 28rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.375rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-input {
    background: transparent;
    border: none;
    outline: none;
    flex-grow: 1;
    padding: 0 1rem;
    color: white;
}

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

.newsletter-button {
    background: var(--secondary-color);
    color: var(--dark);
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-button:hover {
    background: #F5E050;
}

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

.social-link {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

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

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-section h4 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    color: var(--secondary-color);
}

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

.footer-section ul li {
    margin-bottom: 1rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
    }
}

/* ========================================
   Responsive Design
======================================== */
@media (max-width: 1023px) {
    .header-actions {
        margin-left: 1rem;
        gap: 1rem;
    }
    
    .header-divider {
        height: 40px;
    }
    
    .header-contact-social {
        gap: 0.625rem;
    }
    
    .search-toggle {
        width: 44px;
        height: 44px;
    }
    
    .header-phone {
        padding: 0.5rem 0.875rem;
        font-size: 0.8125rem;
    }
    
    .header-social .social-link {
        width: 36px;
        height: 36px;
    }
    
    .search-form-wrapper {
        width: 280px;
        right: -50px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .header-actions {
        margin-left: 0.75rem;
        gap: 0.75rem;
    }
    
    .header-divider {
        height: 35px;
    }
    
    .search-toggle {
        width: 40px;
        height: 40px;
    }
    
    .header-phone {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }
    
    .header-phone .phone-text {
        display: none;
    }
    
    .header-social .social-link {
        width: 36px;
        height: 36px;
        font-size: 0.8125rem;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .header-actions {
        gap: 0.5rem;
        margin-left: 0.5rem;
    }
    
    .header-divider {
        display: none;
    }
    
    .search-toggle {
        width: 36px;
        height: 36px;
    }
    
    .header-phone {
        width: 36px;
        height: 36px;
        padding: 0;
        justify-content: center;
    }
    
    .header-social {
        gap: 0.375rem;
    }
    
    .header-social .social-link {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }
    
    .search-form-wrapper {
        width: calc(100vw - 2rem);
        right: -1rem;
    }
}

/* ========================================
   Sidebar Styles
======================================== */
.sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}

.widget {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}

.widget-title {
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 1.125rem;
    font-weight: 700;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-color);
}

.widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget ul li {
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-color);
}

.widget ul li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.widget a {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
    text-decoration: none;
}

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

@media (max-width: 1023px) {
    .sidebar {
        position: static;
        margin-top: 3rem;
    }
    
    .sidebar .widget {
        margin-bottom: 1.5rem;
    }
}

/* ========================================
   Kanunlar Sayfası Stilleri
======================================== */
.kanunlar-listesi {
    list-style: none;
    padding: 0;
    margin: 0;
}

.kanun-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.kanun-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.kanun-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.kanun-content {
    flex: 1;
}

.kanun-title {
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
    color: var(--text-dark);
    font-weight: 600;
}

.kanun-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.kanun-title a:hover {
    color: var(--primary-color);
}

.kanun-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.kanun-link:hover {
    gap: 0.75rem;
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .kanun-item {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
    }
    
    .kanun-icon {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }
    
    .kanun-title {
        font-size: 1.125rem;
    }
}
