/*
* Kavurmacı Berkay - Ana CSS Dosyası
* Oluşturma Tarihi: 2024
*/

/* ===== DEĞIŞKENLER ===== */
:root {
    /* Ana Renkler */
    --primary-color: #E94E1B; /* Logo turuncu rengi */
    --secondary-color: #213A70; /* Logo mavi rengi */
    --accent-color: #ffc107;
    
    /* Nötr Renkler */
    --dark-color: #212529;
    --dark-light-color: #333333;
    --light-color: #F8F9FA;
    --white-color: #ffffff;
    --gray-color: #878787;
    
    /* Yazı Tipi */
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Inter', sans-serif;
    
    /* Geçiş Süreleri */
    --transition-fast: 0.3s ease;
    --transition-normal: 0.5s ease;
    --transition-slow: 0.8s ease;
    
    /* Boyutlar */
    --container-width: 1320px;
    --header-height: 90px;
    --section-spacing: 120px;
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 15px;
    
    /* Gölgeler */
    --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 15px 60px rgba(0, 0, 0, 0.1);
}

/* ===== GENEL STILLER ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--white-color);
    font-weight: 400;
    overflow-x: hidden;
    letter-spacing: -0.011em;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    font-weight: 600;
}

h1 {
    font-size: 5rem;
    font-weight: 700;
}

h2 {
    font-size: 4rem;
}

h3 {
    font-size: 3rem;
}

h4 {
    font-size: 2.4rem;
}

h5 {
    font-size: 2rem;
}

h6 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

a {
    text-decoration: none;
    color: var(--dark-color);
    transition: var(--transition-fast);
}

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

ul, ol {
    list-style: none;
}

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

section {
    padding: var(--section-spacing) 0;
    position: relative;
}

.container {
    max-width: var(--container-width);
    width: 100%;
}

/* Bootstrap 5 ile uyumlu olması için güncelleniyor */
@media (min-width: 1400px) {
    .container {
        max-width: var(--container-width);
    }
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-size: 4rem;
    font-weight: 700;
    position: relative;
    margin-bottom: 4rem;
    letter-spacing: -0.02em;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -1.5rem;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
}

.section-subtitle {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.highlight {
    color: var(--primary-color);
}

/* ===== BUTONLAR ===== */
.btn-primary, .btn-outline {
    display: inline-flex;
    align-items: center;
    padding: 1.2rem 2.4rem;
    border-radius: 10px;
    font-size: 1.6rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    letter-spacing: -0.01em;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white-color);
    border: none;
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    color: var(--white-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary::before, .btn-outline::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    z-index: -1;
}

.btn-primary:hover::before, .btn-outline:hover::before {
    animation: btnShine 1.5s ease-in-out infinite;
}

.btn-icon {
    margin-left: 1rem;
    font-size: 1.4rem;
}

@keyframes btnShine {
    0% {
        transform: translateX(-100%);
    }
    20%, 100% {
        transform: translateX(100%);
    }
}

/* ===== YÜKLEME ANİMASYONU ===== */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: var(--transition-slow);
}

.loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loader svg {
    width: 100px;
    height: 100px;
    animation: rotate 2s linear infinite;
}

.loader-text {
    font-family: var(--heading-font);
    font-size: 2.4rem;
    font-weight: 700;
    margin-top: 2rem;
    color: var(--primary-color);
    letter-spacing: 2px;
}

.loader-progress {
    font-family: var(--body-font);
    font-size: 1.6rem;
    font-weight: 500;
    margin-top: 1rem;
    color: var(--dark-color);
}

#loader-circle {
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 4;
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: dash 1.5s ease-in-out infinite alternate;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes dash {
    0% {
        stroke-dashoffset: 200;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

.loaded {
    opacity: 0;
    visibility: hidden;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: var(--header-height);
    transition: var(--transition-fast);
    background: rgba(233, 78, 27, 0.15);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(233, 78, 27, 0.1);
}

.header.sticky {
    background: rgba(233, 78, 27, 0.2);
    box-shadow: 0 2px 15px rgba(233, 78, 27, 0.15);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-width: 150px;
    height: auto;
    transition: all 0.3s ease;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 30px;
    height: 3px;
    background-color: var(--dark-color);
    margin: 3px 0;
    transition: var(--transition-fast);
}

.main-nav {
    margin-left: auto;
    margin-right: 3rem;
}

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

.nav-item {
    margin: 0 1.5rem;
    position: relative;
}

.nav-link {
    font-size: 1.5rem;
    color: var(--dark-color);
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: -0.01em;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition-fast);
}

.nav-link:hover,
.nav-item.active .nav-link {
    color: var(--primary-color);
}

.nav-link:hover::after,
.nav-item.active .nav-link::after {
    width: 100%;
    background-color: var(--primary-color);
}

.header-action {
    display: flex;
    align-items: center;
}

.header-action .btn-primary {
    padding: 1rem 2rem;
    font-size: 1.5rem;
}

.sticky .logo {
    max-width: 130px;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0;
    background-color: var(--light-color);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    align-items: center;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px;
}

.hero-text {
    margin-top: 5rem;
}

.hero-title {
    font-size: 5.6rem;
    margin-bottom: 2rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    color: var(--dark-light-color);
    max-width: 540px;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
}

.hero-image {
    position: relative;
    width: 100%;
    max-width: 600px;
    z-index: 2;
}

.hero-slider {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--primary-color);
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.swiper-slide:hover .slider-img {
    transform: scale(1.05);
}

.hero-image-decoration {
    position: absolute;
    top: -30px;
    left: -30px;
    width: calc(100% + 60px);
    height: calc(100% + 60px);
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius-lg);
    z-index: 1;
}

.hero-scroll {
    position: absolute;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scroll-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--dark-color);
    font-size: 1.4rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.scroll-btn:hover {
    color: var(--primary-color);
    transform: translateY(5px);
}

.scroll-text {
    margin-bottom: 1rem;
}

.scroll-icon {
    font-size: 2rem;
    animation: scrollDown 2s ease infinite;
}

@keyframes scrollDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

.hero-shape {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 3;
}

.hero-shape svg {
    display: block;
    width: 100%;
    height: auto;
    fill: var(--white-color);
}

/* ===== ABOUT ===== */
.about {
    position: relative;
    background-color: var(--white-color);
}

.about-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem;
    align-items: center;
}

.about-image {
    position: relative;
    margin-right: 5rem;
    flex: 0 0 45%;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    aspect-ratio: 3/4;
}

.experience-badge {
    position: absolute;
    right: -25px;
    bottom: 50px;
    width: 120px;
    height: 120px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    box-shadow: 0 10px 25px rgba(233, 78, 27, 0.3);
    border: 5px solid var(--white-color);
    animation: pulse 2s infinite;
}

.exp-number {
    font-size: 4.2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.exp-text {
    font-size: 1.4rem;
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-text p {
    margin-bottom: 3rem;
}

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

.feature-item {
    text-align: center;
    transition: var(--transition-fast);
}

.feature-item:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
    font-size: 2.5rem;
    transition: var(--transition-fast);
    position: relative;
    z-index: 1;
}

.feature-icon::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 50%;
    z-index: -1;
    transform: scale(0);
    transition: var(--transition-fast);
}

.feature-item:hover .feature-icon {
    color: var(--white-color);
}

.feature-item:hover .feature-icon::after {
    transform: scale(1);
}

.feature-title {
    font-size: 1.8rem;
    margin-bottom: 0;
}

/* ===== MENÜ SHOWCASE ===== */
.menu-showcase {
    background-color: var(--light-color);
    position: relative;
}

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

.menu-item {
    background-color: var(--white-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.menu-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.menu-item-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-item:hover .menu-item-image img {
    transform: scale(1.1);
}

.menu-item-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white-color);
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.menu-item-content {
    padding: 25px;
}

.menu-item-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    position: relative;
}

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

.menu-item:hover .menu-item-title::after {
    width: 60px;
}

.menu-item-description {
    font-size: 1.5rem;
    color: var(--dark-light-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.menu-item-price {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.menu-item-price span {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--dark-color);
    background-color: #f8f9fa;
    padding: 5px 12px;
    border-radius: 5px;
    display: inline-block;
}

.menu-item-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.menu-item-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.menu-item-link:hover {
    color: var(--secondary-color);
}

.menu-item-link:hover i {
    transform: translateX(5px);
}

.menu-cta {
    text-align: center;
    margin-top: 5rem;
}

/* ===== VIDEO SECTION ===== */
.video-section {
    padding: 8rem 0;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.play-btn {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    cursor: pointer;
    position: relative;
    margin-bottom: 2rem;
    transition: var(--transition-fast);
}

.play-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--primary-color);
    opacity: 0.5;
    z-index: -1;
    animation: pulse 2s infinite;
}

.play-btn:hover {
    background-color: var(--white-color);
    color: var(--primary-color);
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    70% {
        transform: scale(1.5);
        opacity: 0;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.video-title {
    text-align: center;
    color: var(--white-color);
}

.video-title h3 {
    font-size: 2.8rem;
    color: var(--white-color);
    margin-bottom: 0.5rem;
}

.video-title p {
    font-size: 1.6rem;
    margin-bottom: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.testimonial-slider-container {
    padding: 30px 0;
    position: relative;
}

.testimonial-slider {
    overflow: visible;
}

.testimonial-card {
    background-color: var(--white-color);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-card::before {
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.1;
}

.swiper-slide {
    opacity: 0.4;
    transform: scale(0.8);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.swiper-slide-active {
    opacity: 1;
    transform: scale(1);
}

.swiper-slide-active .testimonial-card {
    box-shadow: var(--shadow-md);
    transform: translateY(-10px);
}

.testimonial-rating {
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.testimonial-rating i {
    color: var(--accent-color);
    font-size: 1.6rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    color: var(--dark-light-color);
    font-size: 1.6rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 2rem;
}

.author-name {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.author-location {
    color: var(--gray-color);
    margin-bottom: 0;
    font-size: 1.4rem;
}

.swiper-pagination {
    position: relative;
    bottom: auto;
    margin-top: 4rem;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: var(--primary-color);
    opacity: 0.3;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background-color: var(--primary-color);
    transform: scale(1.2);
}

@media screen and (max-width: 768px) {
    .testimonial-card {
        padding: 2rem;
    }
    
    .testimonial-text {
        font-size: 1.5rem;
    }
    
    .author-name {
        font-size: 1.6rem;
    }
}

/* ===== BLOG ===== */
.blog-section {
    background-color: var(--light-color);
    position: relative;
}

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

.blog-card {
    background-color: var(--white-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.blog-image {
    position: relative;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition-normal);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 0.5rem 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    z-index: 2;
}

.blog-content {
    padding: 2.5rem;
}

.blog-date {
    font-size: 1.4rem;
    color: var(--gray-color);
    margin-bottom: 1rem;
}

.blog-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-fast);
}

.blog-card:hover .blog-title {
    color: var(--primary-color);
}

.blog-excerpt {
    color: var(--gray-color);
    margin-bottom: 2rem;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
}

.blog-link i {
    margin-left: 1rem;
    transition: var(--transition-fast);
}

.blog-link:hover {
    color: var(--primary-color);
}

.blog-link:hover i {
    transform: translateX(5px);
}

.blog-cta {
    text-align: center;
    margin-top: 5rem;
}

/* ===== CONTACT CTA ===== */
.contact-cta {
    position: relative;
    padding: var(--spacing-lg) 0;
    background-color: var(--secondary-color);
    overflow: hidden;
    z-index: 1;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(233, 78, 27, 0.9) 0%, rgba(33, 58, 112, 0.8) 100%);
    z-index: -1;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-title {
    color: var(--white-color);
    font-size: 4.8rem;
    margin-bottom: 2rem;
}

.cta-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.8rem;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.contact-cta .btn-primary {
    background-color: var(--white-color);
    border-color: var(--white-color);
    color: var(--primary-color);
}

.contact-cta .btn-primary:hover {
    background-color: transparent;
    color: var(--white-color);
}

/* ===== FOOTER ===== */
.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 0 30px;
    position: relative;
    width: 100%;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
}

.footer-info {
    flex: 1;
    min-width: 250px;
    max-width: 400px;
}

.footer-links {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
}

.footer-hours {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

@media screen and (max-width: 992px) {
    .footer-top {
        justify-content: flex-start;
    }
    
    .footer-info,
    .footer-links,
    .footer-hours {
        flex: 0 0 calc(50% - 15px);
        max-width: calc(50% - 15px);
    }
}

@media screen and (max-width: 768px) {
    .footer-info,
    .footer-links,
    .footer-hours {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(233, 78, 27, 0.1) 0%, rgba(33, 58, 112, 0.1) 100%);
    pointer-events: none;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
    position: relative;
}

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

.footer-logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.footer-desc {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0.8;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-item i {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 0.3rem;
}

.contact-item p {
    font-size: 1.4rem;
    margin: 0;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
}

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

.footer h3 {
    color: var(--white-color);
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    position: relative;
}

.footer h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1rem;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.4rem;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
}

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

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 1.6rem;
    transition: var(--transition-fast);
}

.social-link:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-5px);
}

.footer-app p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.app-buttons {
    display: flex;
    gap: 1.5rem;
}

.app-btn {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: var(--border-radius-md);
    transition: var(--transition-fast);
}

.app-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.app-btn img {
    height: 35px;
    width: auto;
}

.footer-bottom {
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-copyright p {
    font-size: 1.4rem;
    margin: 0;
    opacity: 0.8;
}

.footer-legal {
    display: flex;
    gap: 3rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.4rem;
    transition: var(--transition-fast);
}

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

@media screen and (max-width: 1200px) {
    .footer-top {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-info {
        grid-column: span 3;
        max-width: 100%;
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .footer-logo {
        margin: 0 auto 2rem;
    }
    
    .footer h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .contact-item {
        justify-content: center;
    }
}

@media screen and (max-width: 992px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-info {
        grid-column: span 2;
    }
}

@media screen and (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .footer-info {
        grid-column: span 1;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
    
    .logo img,
    .footer-logo {
        max-width: 120px;
    }
}

@media screen and (max-width: 576px) {
    .footer {
        padding: 6rem 0 2rem;
    }
    
    .app-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .logo img,
    .footer-logo {
        max-width: 100px;
    }
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-fast);
    z-index: 99;
}

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

.back-to-top:hover {
    background-color: var(--dark-color);
    color: var(--white-color);
    transform: translateY(-5px);
}

/* ===== MEDIA QUERIES ===== */
@media screen and (max-width: 1200px) {
    :root {
        --container-width: 960px;
        --section-spacing: 100px;
    }
    
    html {
        font-size: 56.25%;
    }
}

@media screen and (max-width: 992px) {
    :root {
        --container-width: 720px;
        --section-spacing: 80px;
    }
    
    html {
        font-size: 50%;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background-color: var(--white-color);
        padding: 2rem;
        box-shadow: var(--shadow-md);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-fast);
        z-index: 99;
        margin-right: 0;
    }
    
    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .nav-item {
        margin: 1rem 0;
        width: 100%;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-description {
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        display: none;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 8rem;
    }
    
    .about-image {
        text-align: center;
    }
    
    .menu-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    
    .footer-logo {
        margin: 0 auto;
    }
    
    .footer-info-item {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media screen and (max-width: 768px) {
    :root {
        --container-width: 540px;
        --section-spacing: 60px;
    }
    
    .menu-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .video-wrapper {
        height: 400px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-menu {
        justify-content: center;
    }
}

@media screen and (max-width: 576px) {
    :root {
        --container-width: 100%;
        --section-spacing: 50px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    h1 {
        font-size: 4.2rem;
    }
    
    h2 {
        font-size: 3.6rem;
    }
    
    .hero-title {
        font-size: 4.6rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .btn-primary, .btn-outline {
        padding: 1.2rem 2.5rem;
    }
    
    .experience-badge {
        width: 100px;
        height: 100px;
        bottom: -20px;
        right: -20px;
    }
    
    .exp-number {
        font-size: 3.2rem;
    }
    
    .exp-text {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .cta-title {
        font-size: 3.6rem;
    }
}

/* ===== SAYFA BAŞLIĞI ===== */
.page-title {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
    overflow: hidden;
    background-color: var(--secondary-color);
    margin-top: 90px;
}

.page-title-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
}

.page-title-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(233, 78, 27, 0.85) 0%, rgba(33, 58, 112, 0.95) 100%);
}

.page-title-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-heading {
    color: var(--white-color);
    font-size: 4.8rem;
    margin-bottom: 2rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    line-height: 1.2;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
    z-index: 10;
}

.breadcrumb li {
    color: var(--white-color);
    font-size: 1.6rem;
    font-weight: 500;
    position: relative;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.breadcrumb li:not(:last-child)::after {
    content: "/";
    margin-left: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb li a {
    color: rgba(255, 255, 255, 0.9);
    transition: var(--transition-fast);
}

.breadcrumb li a:hover {
    color: var(--white-color);
    text-decoration: underline;
}

.breadcrumb li.active {
    color: var(--primary-color);
    font-weight: 600;
}

.page-title-shape {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 3;
}

.page-title-shape svg {
    display: block;
    width: 100%;
    height: auto;
    fill: var(--white-color);
}

/* ===== KURUMSAL SAYFASI ===== */
.story-section {
    padding: 100px 0;
}

.row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem;
    align-items: center;
}

.story-image {
    position: relative;
}

.story-image img {
    width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.story-year {
    position: absolute;
    top: 30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.story-year span {
    font-family: var(--heading-font);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.story-year small {
    font-size: 1.4rem;
    margin-top: 0.5rem;
}

.story-content .section-header {
    text-align: left;
    margin-bottom: 3rem;
}

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

.text-left .section-title::after {
    left: 0;
    transform: translateX(0);
}

.story-text p {
    margin-bottom: 2rem;
}

.story-signature {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 4rem;
}

.story-signature img {
    max-width: 150px;
}

.signature-name h4 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.signature-name p {
    font-size: 1.4rem;
    color: var(--gray-color);
    margin-bottom: 0;
}

/* Misyon & Vizyon */
.mission-vision {
    background-color: var(--light-color);
    padding: 100px 0;
}

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

.mission-box, .vision-box {
    background-color: var(--white-color);
    padding: 5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.mission-box:hover, .vision-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.mission-icon, .vision-icon {
    width: 80px;
    height: 80px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
    font-size: 3rem;
    color: var(--primary-color);
}

.mission-box h3, .vision-box h3 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
}

/* Değerlerimiz */
.values-section {
    padding: 100px 0;
}

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

.value-item {
    background-color: var(--white-color);
    padding: 4rem 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition-fast);
    border: 1px solid transparent;
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.value-icon {
    width: 70px;
    height: 70px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: var(--transition-fast);
}

.value-item:hover .value-icon {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.value-item h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.value-item p {
    margin-bottom: 0;
    color: var(--gray-color);
}

/* Ekibimiz */
.team-section {
    background-color: var(--light-color);
    padding: 100px 0;
}

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

.team-member {
    background-color: var(--white-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.member-image {
    position: relative;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition-normal);
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: var(--transition-fast);
    opacity: 0;
}

.team-member:hover .member-social {
    bottom: 20px;
    opacity: 1;
}

.member-social a {
    width: 40px;
    height: 40px;
    background-color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-color);
    font-size: 1.5rem;
    transition: var(--transition-fast);
}

.member-social a:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.member-info {
    padding: 2.5rem;
    text-align: center;
}

.member-info h3 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.member-info p {
    color: var(--gray-color);
    margin-bottom: 0;
}

/* Menü Sayfası */
.menu-section {
    padding: 100px 0;
}

.menu-categories {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 5rem;
    flex-wrap: wrap;
}

.menu-category {
    padding: 1rem 2.5rem;
    background-color: var(--white-color);
    border-radius: 3rem;
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--dark-color);
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.menu-category.active,
.menu-category:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

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

.menu-detail-item {
    display: flex;
    background-color: var(--white-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.menu-detail-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.menu-detail-image {
    width: 160px;
    min-width: 160px;
    height: 160px;
    overflow: hidden;
}

.menu-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.menu-detail-item:hover .menu-detail-image img {
    transform: scale(1.1);
}

.menu-detail-content {
    padding: 2.5rem;
    position: relative;
    width: 100%;
}

.menu-detail-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    padding-right: 80px;
}

.menu-detail-price {
    position: absolute;
    top: 2.5rem;
    right: 2.5rem;
    font-family: var(--heading-font);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.menu-detail-desc {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
}

.menu-detail-tags {
    display: flex;
    gap: 1rem;
}

.menu-tag {
    font-size: 1.2rem;
    padding: 0.3rem 1rem;
    background-color: var(--light-color);
    border-radius: 2rem;
    color: var(--dark-color);
}

.menu-detail-btn {
    margin-top: 5rem;
    text-align: center;
}

@media screen and (max-width: 992px) {
    .row,
    .mission-vision-wrapper {
        grid-template-columns: 1fr;
        gap: 5rem;
    }
    
    .story-year {
        top: 20px;
        right: 20px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .menu-items {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .menu-detail-item {
        flex-direction: column;
    }
    
    .menu-detail-image {
        width: 100%;
        height: 200px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 576px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .page-heading {
        font-size: 3.6rem;
    }
    
    .story-year {
        width: 100px;
        height: 100px;
    }
    
    .story-year span {
        font-size: 2.5rem;
    }
    
    .member-image img {
        height: 350px;
    }
}

/* ===== ÖZEL MENÜ BÖLÜMÜ ===== */
.special-menu {
    background-color: var(--light-color);
    padding: 100px 0;
}

.special-menu-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem;
    align-items: center;
}

.special-menu-content .section-header {
    text-align: left;
    margin-bottom: 3rem;
}

.special-menu-content p {
    margin-bottom: 3rem;
}

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

.special-feature {
    display: flex;
    flex-direction: column;
}

.feature-label {
    font-size: 1.4rem;
    color: var(--gray-color);
    margin-bottom: 0.5rem;
}

.feature-value {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark-color);
}

.special-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 2rem;
    height: 500px;
}

.special-image-main {
    grid-row: span 2;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.special-image-small {
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.special-image-main img,
.special-image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.special-image-main:hover img,
.special-image-small:hover img {
    transform: scale(1.1);
}

@media screen and (max-width: 992px) {
    .special-menu-wrapper {
        grid-template-columns: 1fr;
    }
    
    .special-image-grid {
        height: auto;
        max-width: 600px;
        margin: 0 auto;
    }
}

/* ===== BLOG LİSTESİ ===== */
.blog-list-section {
    padding: 100px 0;
    background-color: #fff;
}

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

.blog-filter {
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.blog-search {
    width: 100%;
    max-width: 500px;
}

.search-form {
    position: relative;
}

.search-form input {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 30px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-form input:focus {
    outline: none;
    border-color: #e67e22;
    box-shadow: 0 0 10px rgba(230, 126, 34, 0.1);
}

.search-form button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: #e67e22;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-categories {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.blog-category-btn {
    padding: 10px 25px;
    border: 2px solid #e67e22;
    border-radius: 25px;
    background: transparent;
    color: #e67e22;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-category-btn.active,
.blog-category-btn:hover {
    background: #e67e22;
    color: #fff;
}

.blog-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.blog-item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.blog-item-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.blog-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-item:hover .blog-item-image img {
    transform: scale(1.1);
}

.blog-item-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #e67e22;
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.blog-item-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.9);
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    min-width: 80px;
}

.blog-item-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #e67e22;
    line-height: 1;
    margin-bottom: 5px;
}

.blog-item-date .month {
    display: block;
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
}

.blog-item-content {
    padding: 30px;
}

.blog-item-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #2d3436;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-item:hover .blog-item-title {
    color: #e67e22;
}

.blog-item-excerpt {
    color: #636e72;
    margin-bottom: 20px;
    line-height: 1.6;
}

.blog-item-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.blog-author span {
    color: #2d3436;
    font-weight: 500;
}

.blog-stats {
    display: flex;
    gap: 15px;
}

.blog-stats span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #636e72;
    font-size: 0.9rem;
}

.blog-stats i {
    color: #e67e22;
}

.blog-item-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #e67e22;
    font-weight: 500;
    text-decoration: none;
}

.blog-item-link i {
    transition: transform 0.3s ease;
}

.blog-item-link:hover i {
    transform: translateX(5px);
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.pagination a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    color: #2d3436;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #e67e22;
}

.pagination a.active,
.pagination a:hover {
    background: #e67e22;
    color: #fff;
}

@media screen and (max-width: 992px) {
    .blog-list {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .blog-list-section {
        padding: 60px 0;
    }

    .blog-filter {
        gap: 20px;
    }

    .blog-item-image {
        height: 200px;
    }

    .blog-item-content {
        padding: 20px;
    }

    .blog-item-title {
        font-size: 1.3rem;
    }
}

/* ===== HİZMET BÖLGELERİ SAYFASI ===== */
.service-areas {
    padding: 100px 0;
}

.delivery-info {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.delivery-text {
    font-size: 1.8rem;
    margin-bottom: 4rem;
}

.service-areas-list {
    margin-bottom: 5rem;
}

.areas-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    position: relative;
}

.areas-title::after {
    content: "";
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

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

.area-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    background-color: var(--light-color);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
    border: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.area-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(233, 78, 27, 0.15);
}

.area-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(233, 78, 27, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 24px;
    transition: var(--transition-fast);
}

.area-item:hover .area-icon {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.area-content h4 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.area-content p {
    color: var(--gray-color);
    margin-bottom: 0.5rem;
}

.areas-note {
    text-align: center;
    margin-top: 4rem;
}

.areas-note p {
    font-size: 1.5rem;
    color: var(--gray-color);
}

.areas-note i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.areas-cta {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

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

@media screen and (max-width: 768px) {
    .areas-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 576px) {
    .areas-cta {
        flex-direction: column;
    }
}

/* ===== İLETİŞİM SAYFASI ===== */
.contact-info-section {
    padding: 100px 0 50px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.contact-card {
    background-color: var(--white-color);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.contact-card-icon {
    width: 80px;
    height: 80px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.8rem;
    color: var(--primary-color);
    transition: var(--transition-fast);
}

.contact-card:hover .contact-card-icon {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.contact-card h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.contact-card p {
    margin-bottom: 1rem;
}

.contact-card p:last-child {
    margin-bottom: 0;
}

.contact-card a {
    color: var(--dark-color);
    transition: var(--transition-fast);
}

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

.contact-main {
    padding: 50px 0 100px;
}

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

.contact-form-wrapper .section-header {
    margin-bottom: 4rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.5rem 2rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius-md);
    font-family: var(--body-font);
    font-size: 1.6rem;
    transition: var(--transition-fast);
    background-color: var(--white-color);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.contact-form .btn-primary {
    align-self: flex-start;
    margin-top: 1rem;
}

.contact-map-wrapper {
    height: 100%;
}

.map-container {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.social-section {
    background-color: var(--light-color);
    padding: 100px 0;
}

.social-wrapper {
    text-align: center;
}

.social-header {
    max-width: 700px;
    margin: 0 auto 5rem;
}

.social-header h2 {
    margin-bottom: 2rem;
}

.social-header p {
    font-size: 1.8rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.social-icon i {
    width: 80px;
    height: 80px;
    background-color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.social-icon span {
    font-size: 1.6rem;
    font-weight: 600;
    transition: var(--transition-fast);
}

.social-icon:hover i {
    background-color: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.social-icon:hover span {
    color: var(--primary-color);
}

@media screen and (max-width: 992px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        height: 400px;
    }
    
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .areas-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 576px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .social-icons {
        gap: 4rem;
    }
    
    .social-icon i {
        width: 70px;
        height: 70px;
        font-size: 2.5rem;
    }
    
    .areas-cta {
        flex-direction: column;
    }
}

/* ===== MAHALLE SAYFASI ===== */
.neighborhood-content {
    padding: 80px 0;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.main-content h2 {
    font-size: 3.2rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

.main-content p {
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--dark-light-color);
}

.features-section {
    background-color: var(--light-color);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    margin: 4rem 0;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.feature-list li {
    font-size: 1.6rem;
    color: var(--dark-light-color);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.products-section {
    margin: 4rem 0;
}

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

.product-item {
    background-color: var(--white-color);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.product-item h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.delivery-info {
    background-color: var(--light-color);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    margin: 4rem 0;
}

.delivery-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.delivery-details li {
    font-size: 1.6rem;
    color: var(--dark-light-color);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.order-cta {
    text-align: center;
    margin: 4rem 0;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

/* Sidebar Styles */
.sidebar {
    position: sticky;
    top: 100px;
}

.widget {
    background-color: var(--white-color);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: 3rem;
}

.widget h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.contact-widget .phone {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-widget .working-hours {
    font-size: 1.4rem;
    color: var(--gray-color);
}

.menu-widget ul li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 1.6rem;
    color: var(--dark-light-color);
}

.menu-widget ul li:last-child {
    border-bottom: none;
}

@media screen and (max-width: 992px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .feature-list,
    .product-items,
    .delivery-details {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        position: static;
    }
}

.about-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.values-section,
.team-section,
.mission-vision {
    text-align: center;
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.value-item {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.mission-vision-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    flex-wrap: wrap;
}

.mission-box, 
.vision-box {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    text-align: center;
    padding: 40px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.team-member {
    text-align: center;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
    .mission-box, 
    .vision-box {
        min-width: 100%;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

/* Blog Detay Sayfası Stilleri */
.blog-detail {
    padding: 120px 0;
    background-color: #fff;
    position: relative;
}

.blog-detail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 400px;
    background: linear-gradient(45deg, #f8f9fa 0%, #e9ecef 100%);
    z-index: 0;
}

.blog-detail .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.blog-detail-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.blog-detail-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #2d3436;
    margin-bottom: 30px;
    line-height: 1.3;
    font-weight: 700;
    position: relative;
    padding-bottom: 20px;
}

.blog-detail-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #e67e22;
}

.blog-detail-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    color: #636e72;
    font-size: 1rem;
    margin-top: 30px;
}

.blog-detail-date {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-detail-date i {
    color: #e67e22;
}

.blog-detail-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.blog-detail-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.blog-detail-author span {
    font-weight: 600;
    color: #2d3436;
}

.blog-detail-category {
    background: #e67e22;
    color: #fff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.blog-detail-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    margin-bottom: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.blog-detail-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2d3436;
}

.blog-detail-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #2d3436;
    margin: 50px 0 25px;
    font-weight: 600;
}

.blog-detail-text p {
    margin-bottom: 25px;
    color: #636e72;
}

.blog-detail-text ul {
    margin: 30px 0;
    padding-left: 20px;
}

.blog-detail-text li {
    margin-bottom: 15px;
    color: #636e72;
    position: relative;
    padding-left: 25px;
}

.blog-detail-text li::before {
    content: '•';
    color: #e67e22;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -2px;
}

.blog-detail-tips {
    background: linear-gradient(45deg, #ffeaa7 0%, #fff3cd 100%);
    border-radius: 15px;
    padding: 40px;
    margin: 50px 0;
    position: relative;
    border-left: 5px solid #e67e22;
}

.blog-detail-tips::before {
    content: '\f0eb';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: -20px;
    left: 40px;
    background: #e67e22;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.blog-detail-tips h3 {
    font-family: 'Playfair Display', serif;
    color: #2d3436;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.blog-detail-share {
    margin-top: 80px;
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.blog-detail-share h3 {
    font-family: 'Playfair Display', serif;
    color: #2d3436;
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.share-button {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.share-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.share-button.facebook {
    background-color: #1877f2;
}

.share-button.twitter {
    background-color: #1da1f2;
}

.share-button.linkedin {
    background-color: #0a66c2;
}

.share-button.whatsapp {
    background-color: #25d366;
}

@media (max-width: 768px) {
    .blog-detail {
        padding: 80px 0;
    }

    .blog-detail-title {
        font-size: 2.2rem;
    }

    .blog-detail-meta {
        flex-direction: column;
        gap: 20px;
    }

    .blog-detail-text {
        font-size: 1rem;
    }

    .blog-detail-text h2 {
        font-size: 1.8rem;
    }

    .blog-detail-tips {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .blog-detail-title {
        font-size: 1.8rem;
    }

    .blog-detail-text h2 {
        font-size: 1.5rem;
    }

    .blog-detail-tips {
        padding: 25px;
    }

    .share-button {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Son Yazılar Bölümü */
.latest-posts {
    padding: 100px 0;
    background-color: #f8f9fa;
}

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

.latest-posts .section-title {
    margin-bottom: 50px;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #2d3436;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.latest-posts .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #e67e22;
}

.latest-posts .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.latest-posts .blog-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.latest-posts .blog-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.latest-posts .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.latest-posts .blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.latest-posts .blog-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.9);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #2d3436;
    font-weight: 500;
}

.latest-posts .blog-content {
    padding: 30px;
}

.latest-posts .blog-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #2d3436;
    margin-bottom: 15px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.latest-posts .blog-card:hover .blog-title {
    color: #e67e22;
}

.latest-posts .blog-excerpt {
    color: #636e72;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.latest-posts .blog-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #e67e22;
    font-weight: 500;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.latest-posts .blog-link i {
    transition: transform 0.3s ease;
}

.latest-posts .blog-link:hover {
    gap: 15px;
}

.latest-posts .blog-link:hover i {
    transform: translateX(5px);
}

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

.mt-5 {
    margin-top: 50px;
}

@media screen and (max-width: 992px) {
    .latest-posts .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .latest-posts {
        padding: 60px 0;
    }

    .latest-posts .section-title {
        font-size: 2rem;
    }

    .latest-posts .blog-grid {
        grid-template-columns: 1fr;
    }

    .latest-posts .blog-image {
        height: 200px;
    }

    .latest-posts .blog-title {
        font-size: 1.3rem;
    }
}

/* Sipariş Modal */
.order-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(5px);
}

.order-modal.active {
    display: flex;
}

.modal-content {
    background: var(--white-color);
    padding: 4rem;
    border-radius: var(--border-radius-lg);
    position: relative;
    width: 100%;
    max-width: 500px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.order-modal.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--light-color);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.modal-title {
    font-size: 2.4rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

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

.order-option {
    padding: 2rem;
    border-radius: var(--border-radius-md);
    background: var(--light-color);
    text-decoration: none;
    color: var(--dark-color);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.order-option:hover {
    background: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-5px);
}

.order-option i {
    font-size: 2.4rem;
}

.order-option span {
    font-size: 1.4rem;
    font-weight: 600;
}

@media screen and (max-width: 576px) {
    .modal-content {
        padding: 3rem 2rem;
        margin: 0 2rem;
    }
    
    .order-options {
        grid-template-columns: 1fr;
    }
}

/* Modal Stilleri */
.order-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    position: relative;
    width: 90%;
    max-width: 500px;
    text-align: center;
}

.close-modal {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    background: none;
    border: none;
    padding: 0;
}

.close-modal:hover {
    color: #000;
}

.modal-title {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.order-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.order-option {
    padding: 12px 20px;
    background-color: #e74c3c;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.order-option:hover {
    background-color: #c0392b;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    position: relative;
}

.close-button {
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.close-button:hover {
    color: #000;
}

.modal-title {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

.order-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.order-option {
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
}

.order-option:hover {
    background-color: #f5f5f5;
    border-color: #333;
}

.order-option i {
    margin-right: 10px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 500px;
    position: relative;
    animation: modalOpen 0.3s ease-out;
}

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

.close {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
}

.close:hover {
    color: #000;
}

.order-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.order-option {
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.order-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.order-option i {
    margin-right: 10px;
    font-size: 24px;
}

.order-option.phone i { color: #28a745; }
.order-option.whatsapp i { color: #25d366; }
.order-option.yemeksepeti i { color: #ff0000; }
.order-option.getir i { color: #5d3ebc; }

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .order-options {
        grid-template-columns: 1fr;
    }
}