/* Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #cc0000;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --border-color: #dee2e6;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header / Menü */
.site-header {
    background: #cc0000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1000;
    width: 100%;
}

.site-header::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 0;
    right: 0;
    height: 32px;
    background-image: 
        url("data:image/svg+xml,%3Csvg width='80' height='32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,16 Q20,8 40,16 T80,16' stroke='%23ffffff' stroke-width='4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-size: 80px 32px;
    z-index: 1;
    opacity: 1;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    filter: drop-shadow(0 2px 4px rgba(255, 255, 255, 0.5));
}

@media (max-width: 768px) {
    .site-header::after {
        bottom: -10px;
        height: 20px;
        background-size: 40px 20px;
        background-image: 
            url("data:image/svg+xml,%3Csvg width='40' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,10 Q10,5 20,10 T40,10' stroke='%23ffffff' stroke-width='2.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    }
}

@media (max-width: 576px) {
    .site-header::after {
        bottom: -8px;
        height: 16px;
        background-size: 30px 16px;
        background-image: 
            url("data:image/svg+xml,%3Csvg width='30' height='16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,8 Q7.5,4 15,8 T30,8' stroke='%23ffffff' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    }
}

.navbar {
    padding: 0.75rem 0;
}

.navbar .container-fluid {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.navbar-brand-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

@media (max-width: 991px) {
    .navbar-brand-wrapper {
        align-items: center;
    }
    
    .whatsapp-btn-mobile {
        height: auto;
        min-height: 45px;
        align-self: center;
    }
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
    padding: 0.5rem 0;
    margin-right: 3rem;
}

.navbar-brand:hover {
    color: #fff;
    opacity: 0.9;
}

.site-logo {
    max-height: 65px;
    height: auto;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
    transition: var(--transition);
    aspect-ratio: auto;
}

.navbar-brand:hover .site-logo {
    transform: scale(1.05);
}

.site-title {
    color: #fff;
    font-weight: 700;
    margin: 0;
    font-size: 1.8rem;
}

.navbar-nav {
    align-items: center;
    flex-wrap: nowrap;
    gap: 0;
}

.nav-link {
    color: #fff;
    font-weight: 500;
    padding: 0.6rem 1rem;
    transition: var(--transition);
    position: relative;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-link:hover {
    color: #fff;
    opacity: 0.9;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #fff;
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 80%;
}

/* Dropdown Menü Stilleri */
.navbar-nav .dropdown-menu {
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    margin-top: 0.75rem;
    padding: 0.75rem 0;
    min-width: 220px;
    background: #fff;
}

.dropdown-item {
    padding: 0.5rem 1.25rem;
    color: var(--text-color);
    transition: var(--transition);
    font-weight: 400;
    font-size: 0.9rem;
    line-height: 1.4;
}

.dropdown-item:hover {
    background: #f8f9fa;
    color: #dc3545;
    padding-left: 1.5rem;
}

/* Alt seviye dropdown (submenu) */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -0.5rem;
    margin-left: 0.125rem;
    min-width: 200px;
    display: none;
    position: absolute;
}

.dropdown-submenu > .dropdown-menu.show {
    display: block;
}

.dropdown-submenu:hover > .dropdown-menu {
    display: block;
}

.dropdown-submenu > .dropdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.dropdown-submenu > .dropdown-item i {
    font-size: 0.75rem;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.dropdown-submenu > .dropdown-item[aria-expanded="true"] i,
.dropdown-submenu > .dropdown-item:focus + .dropdown-menu.show ~ i {
    transform: rotate(-90deg);
}

/* Mobilde submenu */
@media (max-width: 991px) {
    .dropdown-submenu > .dropdown-menu {
        position: static;
        float: none;
        width: auto;
        margin-top: 0;
        margin-left: 1rem;
        background: #f0f0f0;
        border: none;
        box-shadow: none;
        display: none;
    }
    
    .dropdown-submenu > .dropdown-menu.show {
        display: block;
    }
    
    .dropdown-submenu > .dropdown-item i {
        transform: rotate(-90deg);
    }
    
    .dropdown-item {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }
}

.dropdown-toggle::after {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
    border-top-color: #fff;
}

.dropdown-toggle[aria-expanded="true"] {
    background: rgba(255, 255, 255, 0.15);
}

.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

/* Telefon ve WhatsApp Butonları */
.header-phone {
    margin-left: 0.5rem;
    padding-left: 0.5rem;
    border-left: 2px solid rgba(255, 255, 255, 0.3);
}

.phone-link {
    display: flex;
    align-items: center;
    color: #fff;
    font-weight: 600;
    padding: 0.4rem 0.8rem;
    text-decoration: none;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    white-space: nowrap;
    height: 40px;
    min-height: 40px;
}

.phone-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.phone-link i {
    color: #fff;
    font-size: 1.1rem;
    margin-right: 0.4rem;
}

.phone-text {
    white-space: nowrap;
    font-size: 0.9rem;
}

.header-whatsapp {
    margin-left: 0.5rem;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: #fff !important;
    padding: 0.4rem 0.8rem;
    border-radius: 25px;
    height: 40px;
    min-height: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
    gap: 0.5rem;
    animation: whatsappPulse 2s ease-in-out infinite;
    position: relative;
}

@keyframes whatsappPulse {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3), 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        opacity: 0.85;
        box-shadow: 0 2px 8px rgba(37, 211, 102, 0.5), 0 0 0 8px rgba(37, 211, 102, 0);
    }
}

.whatsapp-btn:hover {
    background: #20BA5A;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    animation-play-state: paused;
    opacity: 1;
}

.whatsapp-btn i {
    font-size: 1.4rem;
    margin: 0;
    color: #fff;
}

.whatsapp-text {
    font-size: 0.9rem;
    color: #fff;
    font-weight: 600;
    display: inline;
}

/* Mobil WhatsApp Butonu (Logo yanında) */
.whatsapp-btn-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: #fff !important;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    flex-shrink: 0;
    gap: 0.5rem;
    height: 45px;
    min-height: 45px;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: whatsappPulseMobile 2s ease-in-out infinite;
    position: relative;
}

@keyframes whatsappPulseMobile {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 2px 8px rgba(255, 255, 255, 0.2), 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    50% {
        opacity: 0.85;
        box-shadow: 0 2px 8px rgba(255, 255, 255, 0.3), 0 0 0 8px rgba(255, 255, 255, 0);
    }
}

.whatsapp-btn-mobile:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff !important;
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.3);
    animation-play-state: paused;
    opacity: 1;
}

.whatsapp-btn-mobile i {
    font-size: 1.2rem;
    color: #fff;
    flex-shrink: 0;
}

.whatsapp-text-mobile {
    font-size: 0.95rem;
    color: #fff;
    font-weight: 600;
    display: inline;
    white-space: nowrap;
}

/* Firma Giriş Butonu */
.header-firma-giris {
    margin-left: 0.5rem;
    padding-left: 0.5rem;
    border-left: 2px solid rgba(255, 255, 255, 0.3);
}

.firma-giris-btn {
    display: flex;
    align-items: center;
    color: #fff;
    font-weight: 600;
    padding: 0.4rem 0.8rem;
    text-decoration: none;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    white-space: nowrap;
    border: none;
    height: 40px;
    min-height: 40px;
}

.firma-giris-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.firma-giris-btn i {
    color: #fff;
    font-size: 1.1rem;
    margin-right: 0.4rem;
}

.firma-giris-text {
    white-space: nowrap;
    font-size: 0.9rem;
}

/* Firma Giriş Modal */
#firmaGirisModal .modal-dialog {
    background: transparent;
}

#firmaGirisModal .modal-content {
    border-radius: 12px;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    background: transparent !important;
    overflow: hidden;
}

.firma-giris-modal .modal-content {
    border-radius: 12px;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    background: transparent !important;
    overflow: hidden;
}

.firma-giris-modal .modal-header {
    background: linear-gradient(135deg, var(--accent-color) 0%, #ff6b6b 100%);
    color: #fff;
    border-bottom: none;
    border-radius: 12px 12px 0 0;
    padding: 1.5rem;
    overflow: hidden;
}

.firma-giris-modal .modal-body {
    background: #fff;
    overflow: hidden;
    border-radius: 0 0 12px 12px;
}

.firma-giris-modal .modal-header .btn-close {
    filter: brightness(0) invert(1);
}

.firma-giris-modal .modal-body {
    padding: 2rem;
}

.firma-giris-step {
    display: none;
}

.firma-giris-step.active {
    display: block;
}

.firma-giris-modal .form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(204, 0, 0, 0.25);
}

.firma-giris-modal .btn-primary {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.firma-giris-modal .btn-primary:hover {
    background: #b30000;
    border-color: #b30000;
}

@media (max-width: 991px) {
    .header-firma-giris {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.3);
        margin-top: 0.5rem;
        padding-top: 0.5rem;
    }
    
    .firma-giris-btn {
        justify-content: center;
        width: 100%;
    }
}


/* Mobil dropdown */
@media (max-width: 991px) {
    .navbar-nav .dropdown-menu {
        box-shadow: none;
        border: none;
        background: var(--bg-light);
        margin-left: 1rem;
        margin-top: 0;
        padding-left: 1rem;
    }
    
    .dropdown-item {
        padding: 0.5rem 1rem;
        border-left: 2px solid transparent;
    }
    
    .dropdown-item:hover {
        border-left-color: var(--secondary-color);
        padding-left: 1.5rem;
    }
    
    .header-phone {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.3);
        margin-top: 0.5rem;
        padding-top: 0.5rem;
    }
    
    .header-whatsapp {
        margin-left: 0;
        margin-top: 0.5rem;
    }
    
    .phone-link,
    .whatsapp-btn {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .phone-text {
        font-size: 0.85rem;
    }
    
    .whatsapp-btn {
        padding: 0.4rem 0.8rem;
    }
    
    .whatsapp-btn i {
        font-size: 1.2rem;
    }
    
    .whatsapp-text {
        font-size: 0.85rem;
    }
    
    .site-logo {
        max-height: 50px;
        max-width: 150px;
    }
    
    .slider-title {
        font-size: 1.5rem;
    }
    
    .carousel {
        height: 35vh;
        min-height: 250px;
        max-height: 350px;
    }
    
    .content-section {
        padding: 2rem 0;
    }
    
    .content-section .container {
        padding: 0 1rem;
    }
    
    /* Footer Küçük Mobil */
    .site-footer {
        padding: 1.5rem 0 0.75rem;
    }
    
    .site-footer .container-fluid {
        padding: 0 0.75rem;
    }
    
    .footer-widget {
        margin-bottom: 1.25rem;
    }
    
    .footer-logo {
        max-height: 35px;
        max-width: 100px;
        margin-bottom: 0.75rem;
    }
    
    .footer-title {
        font-size: 1rem;
        margin-bottom: 0.75rem;
        padding-bottom: 0.4rem;
    }
    
    .footer-text {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
        line-height: 1.6;
    }
    
    .footer-links li {
        margin-bottom: 0.35rem;
    }
    
    .footer-links a {
        font-size: 0.85rem;
        padding: 0.1rem 0;
    }
    
    .footer-contact li {
        margin-bottom: 0.5rem;
        font-size: 0.85rem;
    }
    
    .footer-contact i {
        font-size: 1rem;
        margin-right: 0.5rem;
    }
    
    .footer-hours li {
        margin-bottom: 0.35rem;
        font-size: 0.85rem;
        padding: 0.2rem 0;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
        margin-right: 0.3rem;
        margin-bottom: 0.3rem;
    }
    
    .footer-bottom {
        padding-top: 1rem;
        margin-top: 1.5rem;
    }
    
    .copyright {
        font-size: 0.8rem;
    }
}

/* Mobil menü kapanma için */
.navbar-collapse {
    transition: all 0.3s ease;
}

.navbar-collapse.show {
    max-height: calc(100vh - 80px);
    overflow-y: auto;
}

@media (max-width: 991px) {
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #c82333;
        z-index: 999;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        max-height: 0;
        overflow: hidden;
    }
    
    .navbar-collapse.show {
        max-height: calc(100vh - 80px);
        padding: 1rem 0;
    }
    
    /* Menü açıkken body scroll'unu engelle */
    body.menu-open {
        overflow: hidden;
    }
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Slider Section */
.slider-section {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.carousel {
    width: 100%;
    height: 70vh;
    min-height: 400px;
    max-height: 600px;
}

.carousel-inner {
    height: 100%;
}

.carousel-item {
    height: 100%;
    position: relative;
}

.slider-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.slider-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.slider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-overlay .container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.slider-content {
    text-align: center;
    color: #fff;
    z-index: 1;
}

.slider-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

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

.carousel-indicators {
    margin-bottom: 2rem;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    margin: 0 5px;
    transition: var(--transition);
}

.carousel-indicators button.active {
    background: #fff;
    width: 30px;
    border-radius: 6px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
    transition: var(--transition);
}

.carousel-control-prev {
    left: 2rem;
}

.carousel-control-next {
    right: 2rem;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.5);
}

/* Main Content */
.main-content {
    width: 100%;
    flex: 1 0 auto;
    position: relative;
    z-index: 0;
}

.main-content .container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.content-section .container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* 5 Sütun Grid */
.row-cols-5 > * {
    flex: 0 0 auto;
    width: 20%;
}

@media (max-width: 991px) {
    .row-cols-5 > * {
        width: 50%;
    }
}

@media (max-width: 576px) {
    .row-cols-5 > * {
        width: 100%;
    }
}

/* İçerik Kartları */
.content-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.content-image-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #f0f0f0;
}

.content-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.content-card:hover .content-image {
    transform: scale(1.05);
}

.content-body {
    padding: 1.5rem;
}

.content-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.content-text {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.content-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.content-buttons .btn {
    flex: 1;
    min-width: 120px;
}

/* Kampanyalar Bölümü */
.campaigns-section {
    background: #fff;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.campaign-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border: 1px solid #f0f0f0;
}

.campaign-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.campaign-image-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #f8f9fa;
    position: relative;
}

.campaign-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.campaign-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.campaign-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(204, 0, 0, 0.3);
}

.campaign-body {
    padding: 1.5rem;
}

.campaign-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-color);
    line-height: 1.4;
}

.campaign-text {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

/* Kampanya Anekdotu - Şık ve Minimal Tasarım */
.campaign-anecdote {
    text-align: center;
    padding: 1rem;
    margin-top: 1.5rem;
    margin-bottom: 0;
}

.anecdote-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0 auto;
    padding: 1.25rem 2rem;
    background: #fff;
    border-radius: 12px;
    border: 2px solid #e9ecef;
    display: inline-block;
    position: relative;
    max-width: 90%;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    letter-spacing: 0.3px;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.anecdote-text:hover {
    border-color: var(--accent-color);
    box-shadow: 0 4px 20px rgba(204, 0, 0, 0.12);
    transform: translateY(-2px);
}

.anecdote-text i {
    color: var(--accent-color);
    font-size: 1.4rem;
    margin-right: 0.75rem;
    vertical-align: middle;
    display: inline-block;
    animation: subtle-pulse 3s ease-in-out infinite;
}

.anecdote-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-color);
    border-radius: 12px 0 0 12px;
}

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

@media (max-width: 991px) {
    .campaign-anecdote {
        padding: 0.75rem;
        margin-top: 1.25rem;
        margin-bottom: 0;
    }
    
    .anecdote-text {
        font-size: 1.1rem;
        padding: 1rem 1.75rem;
        max-width: 95%;
    }
    
    .anecdote-text i {
        font-size: 1.2rem;
        margin-right: 0.5rem;
    }
}

@media (max-width: 768px) {
    .campaign-anecdote {
        padding: 0.5rem;
        margin-top: 1rem;
        margin-bottom: 0;
    }
    
    .anecdote-text {
        font-size: 0.95rem;
        padding: 0.9rem 1.25rem;
        line-height: 1.5;
        letter-spacing: 0.2px;
        max-width: 100%;
    }
    
    .anecdote-text i {
        font-size: 1.05rem;
        margin-right: 0.4rem;
    }
}

@media (max-width: 576px) {
    .campaign-anecdote {
        padding: 0.5rem 0.25rem;
        margin-top: 0.75rem;
        margin-bottom: 0;
    }
    
    .anecdote-text {
        font-size: 0.85rem;
        padding: 0.75rem 1rem;
        border-width: 1.5px;
        line-height: 1.4;
    }
    
    .anecdote-text i {
        font-size: 0.95rem;
        margin-right: 0.3rem;
    }
    
    .anecdote-text::before {
        width: 3px;
    }
}

/* Merak Ettikleriniz / Sıkça Sorulan Sorular */
.faq-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color) 0%, #ff6b6b 50%, var(--accent-color) 100%);
    z-index: 1;
}

.faq-header {
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 2;
}

.faq-header .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-color) 0%, #ff6b6b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(204, 0, 0, 0.1);
}

.faq-subtitle {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-top: 0.5rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.faq-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color) 0%, #ff6b6b 100%);
    border-radius: 2px;
}

.accordion {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(204, 0, 0, 0.1);
    background: #fff;
    border: 2px solid rgba(204, 0, 0, 0.1);
}

.accordion-item {
    background: #fff;
    border: none;
    border-bottom: 2px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-item:hover {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(204, 0, 0, 0.1);
}

.accordion-item:first-child {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.accordion-item:last-child {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.accordion-button {
    background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
    color: var(--text-color);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1.5rem 2rem;
    border: none;
    box-shadow: none;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.3px;
}

.accordion-button::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--accent-color) 0%, #ff6b6b 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.accordion-button:hover::before {
    opacity: 1;
}

.accordion-button:hover {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
    color: var(--accent-color);
    padding-left: 2.5rem;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--accent-color) 0%, #ff6b6b 100%);
    color: #fff;
    box-shadow: 0 5px 20px rgba(204, 0, 0, 0.3);
    padding-left: 2.5rem;
}

.accordion-button:not(.collapsed)::before {
    opacity: 1;
    background: #fff;
    width: 4px;
}

.accordion-button:not(.collapsed) i {
    color: #fff;
    transform: scale(1.2);
}

.accordion-button:focus {
    border-color: transparent;
    box-shadow: 0 0 0 3px rgba(204, 0, 0, 0.2);
    outline: none;
}

.accordion-button i {
    color: var(--accent-color);
    font-size: 1.4rem;
    transition: all 0.3s ease;
    margin-right: 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(204, 0, 0, 0.1);
    border-radius: 50%;
    padding: 0.5rem;
}

.accordion-button:not(.collapsed) i {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.accordion-button:hover i {
    transform: rotate(15deg) scale(1.1);
    background: rgba(204, 0, 0, 0.15);
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    transform: rotate(180deg) scale(1.2);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23cc0000'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    transition: all 0.3s ease;
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 1px 2px rgba(204, 0, 0, 0.2));
}

.accordion-body {
    padding: 2rem;
    color: var(--text-color);
    line-height: 1.9;
    font-size: 1rem;
    background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
    border-top: 1px solid rgba(204, 0, 0, 0.1);
    position: relative;
}

.accordion-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-color) 0%, #ff6b6b 100%);
    opacity: 0.3;
}

.accordion-collapse {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Planlama ve Üretim Süreci */
.production-process-card {
    background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(204, 0, 0, 0.1);
    border: 2px solid rgba(204, 0, 0, 0.1);
    height: 100%;
    position: relative;
    overflow: hidden;
    animation: cardFadeIn 0.8s ease-out;
}

.production-process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color) 0%, #ff6b6b 50%, var(--accent-color) 100%);
    z-index: 1;
    animation: shimmer 3s ease-in-out infinite;
}

.production-process-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(204, 0, 0, 0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

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

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

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.process-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
    animation: headerSlideIn 1s ease-out 0.2s both;
}

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

.process-title {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-color) 0%, #ff6b6b 50%, var(--accent-color) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 10px rgba(204, 0, 0, 0.1);
    animation: gradientShift 3s ease infinite;
    position: relative;
    display: inline-block;
}

.process-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shine 3s ease-in-out infinite;
}

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

@keyframes shine {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

.process-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
    animation: subtitleFadeIn 1s ease-out 0.4s both;
}

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

.process-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color) 0%, #ff6b6b 100%);
    border-radius: 2px;
    animation: lineExpand 1s ease-out 0.6s both;
}

@keyframes lineExpand {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 60px;
        opacity: 1;
    }
}

.blog-animation-slot {
    min-height: 140px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255,255,255,0.7);
    border: 1px solid rgba(204, 0, 0, 0.12);
    transition: opacity 0.3s ease;
}

.blog-animation-slot.blog-animation-visible {
    animation: blogSlotFadeIn 0.35s ease-out;
}

@keyframes blogSlotFadeIn {
    from { opacity: 0; transform: scale(0.98); }
    to   { opacity: 1; transform: scale(1); }
}

.blog-animation-slot > * {
    max-width: 100%;
}

.blog-animation-slot img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Ayrı sütun: sadece embed (iframe/embed/object) */
.faq-embed-column {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.embed-column-card {
    width: 100%;
    min-height: 200px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255,255,255,0.85);
    border: 1px solid rgba(204, 0, 0, 0.12);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.embed-column-card.embed-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0.75rem;
    min-height: auto;
}

.blog-embed-item {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
}

.blog-embed-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-color, #cc0000);
    padding: 0.5rem 0.6rem 0.35rem;
    border-bottom: 1px solid rgba(204, 0, 0, 0.15);
    line-height: 1.3;
}

.blog-embed-content {
    padding: 0.5rem;
}

.blog-embed-item iframe,
.blog-embed-item embed,
.blog-embed-item object {
    max-width: 100%;
    width: 100%;
    min-height: 160px;
    border: none;
    display: block;
    vertical-align: top;
}

.blog-embed-only.blog-animation-slot {
    min-height: 200px;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-embed-only iframe,
.blog-embed-only embed,
.blog-embed-only object {
    max-width: 100%;
    width: 100%;
    min-height: 180px;
    border: none;
    display: block;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.process-step {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
    padding: 1.5rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: visible;
    opacity: 0;
    transform: translateX(-30px);
    animation: stepSlideIn 0.6s ease-out forwards;
    margin-bottom: 1rem;
}

.process-step:nth-child(1) {
    animation-delay: 0.8s;
}

.process-step:nth-child(2) {
    animation-delay: 1s;
}

.process-step:nth-child(3) {
    animation-delay: 1.2s;
}

.process-step:nth-child(4) {
    animation-delay: 1.4s;
}

@keyframes stepSlideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.process-step::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--accent-color) 0%, #ff6b6b 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    transform: scaleY(0);
    transform-origin: bottom;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(204, 0, 0, 0.05), transparent);
    transition: left 0.5s ease;
}

.process-step:hover {
    transform: translateX(8px) scale(1.02);
    box-shadow: 0 8px 30px rgba(204, 0, 0, 0.2);
    border-color: rgba(204, 0, 0, 0.3);
    background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
}

.process-step:hover::before {
    opacity: 1;
    transform: scaleY(1);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.process-step:hover::after {
    left: 100%;
}

.step-arrow {
    position: absolute;
    bottom: -2.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 3rem;
    background: linear-gradient(180deg, var(--accent-color) 0%, #ff6b6b 50%, var(--accent-color) 100%);
    background-size: 100% 200%;
    z-index: 10;
    opacity: 0;
    animation: arrowFadeIn 0.8s ease-out forwards, arrowFlow 2s ease-in-out infinite, arrowShimmer 3s ease-in-out infinite;
    border-radius: 3px;
    box-shadow: 0 0 20px rgba(204, 0, 0, 0.5), 0 0 40px rgba(204, 0, 0, 0.3), inset 0 0 10px rgba(255, 255, 255, 0.2);
    position: relative;
}

.process-step:nth-child(1) .step-arrow {
    animation-delay: 1.2s, 2s, 2s;
}

.process-step:nth-child(2) .step-arrow {
    animation-delay: 1.4s, 2.2s, 2.2s;
}

.process-step:nth-child(3) .step-arrow {
    animation-delay: 1.6s, 2.4s, 2.4s;
}

@keyframes arrowFadeIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px) scale(0.5);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
    }
}

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

@keyframes arrowShimmer {
    0%, 100% {
        box-shadow: 0 0 15px rgba(204, 0, 0, 0.4), 0 0 30px rgba(204, 0, 0, 0.2);
    }
    50% {
        box-shadow: 0 0 25px rgba(204, 0, 0, 0.6), 0 0 50px rgba(204, 0, 0, 0.4);
    }
}

.step-arrow::before {
    content: '';
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 20px;
    background: linear-gradient(180deg, var(--accent-color) 0%, #ff6b6b 100%);
    -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    filter: drop-shadow(0 4px 12px rgba(204, 0, 0, 0.5));
    animation: arrowHeadPulse 2s ease-in-out infinite, arrowHeadGlow 2.5s ease-in-out infinite;
    z-index: 2;
}

@keyframes arrowHeadPulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateX(-50%) scale(1.2);
        opacity: 0.9;
    }
}

@keyframes arrowHeadGlow {
    0%, 100% {
        filter: drop-shadow(0 4px 12px rgba(204, 0, 0, 0.5));
    }
    50% {
        filter: drop-shadow(0 6px 20px rgba(204, 0, 0, 0.8));
    }
}

.step-arrow::after {
    content: '↓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.4rem;
    color: #fff;
    font-weight: 900;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 255, 255, 0.3);
    animation: arrowIconBounce 1.5s ease-in-out infinite;
    z-index: 3;
    line-height: 1;
    filter: drop-shadow(0 0 8px rgba(204, 0, 0, 0.6));
}

@keyframes arrowIconBounce {
    0%, 100% {
        transform: translate(-50%, -50%) translateY(0) scale(1);
        opacity: 0.9;
    }
    50% {
        transform: translate(-50%, -50%) translateY(-8px) scale(1.1);
        opacity: 1;
    }
}


.process-step:last-child .step-arrow {
    display: none;
}

.step-content {
    width: 100%;
    opacity: 0;
    animation: contentFadeIn 0.6s ease-out forwards;
    position: relative;
}

.process-step:nth-child(1) .step-content {
    animation-delay: 1s;
}

.process-step:nth-child(2) .step-content {
    animation-delay: 1.2s;
}

.process-step:nth-child(3) .step-content {
    animation-delay: 1.4s;
}

.process-step:nth-child(4) .step-content {
    animation-delay: 1.6s;
}

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

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.step-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color) 0%, #ff6b6b 100%);
    transition: width 0.3s ease;
}

.process-step:hover .step-title {
    color: var(--accent-color);
    transform: translateX(5px);
}

.process-step:hover .step-title::after {
    width: 100%;
}

.step-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
    transition: all 0.3s ease;
}

.process-step:hover .step-description {
    color: var(--text-color);
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .faq-section {
        padding: 3.5rem 0;
    }
    
    .faq-header {
        margin-bottom: 2.5rem;
    }
    
    .faq-header .section-title {
        font-size: 2rem;
    }
    
    .faq-subtitle {
        font-size: 1.1rem;
    }
    
    .accordion {
        border-radius: 15px;
    }
    
    .accordion-button {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }
    
    .accordion-button:hover,
    .accordion-button:not(.collapsed) {
        padding-left: 2rem;
    }
    
    .accordion-button i {
        width: 28px;
        height: 28px;
        font-size: 1.2rem;
    }
    
    .accordion-body {
        padding: 1.5rem;
        font-size: 0.95rem;
    }
    
    .production-process-card {
        padding: 2rem;
        border-radius: 15px;
        margin-top: 2rem;
    }
    
    .process-title {
        font-size: 1.75rem;
    }
    
    .process-subtitle {
        font-size: 1rem;
    }
    
    .process-steps {
        gap: 1.25rem;
    }
    
    .process-step {
        padding: 1.25rem;
        gap: 0;
        margin-bottom: 0.75rem;
    }
    
    .step-arrow {
        bottom: -2rem;
        height: 2rem;
        width: 5px;
    }
    
    .step-arrow::before {
        bottom: -12px;
        width: 24px;
        height: 16px;
    }
    
    .step-arrow::after {
        font-size: 1.2rem;
    }
    
    .step-title {
        font-size: 1.1rem;
    }
    
    .step-description {
        font-size: 0.9rem;
    }
    
    .faq-embed-column {
        order: 1;
        margin-top: 1rem;
    }
    
    .embed-list .blog-embed-item iframe,
    .embed-list .blog-embed-item embed,
    .embed-list .blog-embed-item object {
        min-height: 140px;
    }
}

@media (max-width: 576px) {
    .faq-section {
        padding: 2.5rem 0;
    }
    
    .faq-header {
        margin-bottom: 2rem;
    }
    
    .faq-header .section-title {
        font-size: 1.75rem;
    }
    
    .faq-subtitle {
        font-size: 1rem;
    }
    
    .accordion {
        border-radius: 12px;
    }
    
    .accordion-button {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .accordion-button:hover,
    .accordion-button:not(.collapsed) {
        padding-left: 1.75rem;
    }
    
    .accordion-button i {
        width: 24px;
        height: 24px;
        font-size: 1rem;
        margin-right: 0.5rem;
    }
    
    .accordion-body {
        padding: 1.25rem;
        font-size: 0.9rem;
        line-height: 1.8;
    }
    
    .production-process-card {
        padding: 1.5rem;
        border-radius: 12px;
        margin-top: 1.5rem;
    }
    
    .process-header {
        margin-bottom: 2rem;
    }
    
    .process-title {
        font-size: 1.5rem;
    }
    
    .process-subtitle {
        font-size: 0.95rem;
    }
    
    .process-steps {
        gap: 1rem;
    }
    
    .process-step {
        padding: 1rem;
        gap: 0;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 0.5rem;
    }
    
    .embed-list .blog-embed-item iframe,
    .embed-list .blog-embed-item embed,
    .embed-list .blog-embed-item object {
        min-height: 120px;
    }
    
    .step-arrow {
        bottom: -1.5rem;
        height: 1.5rem;
        width: 4px;
    }
    
    .step-arrow::before {
        bottom: -10px;
        width: 20px;
        height: 14px;
    }
    
    .step-arrow::after {
        font-size: 1rem;
    }
    
    .step-content {
        width: 100%;
    }
    
    .step-title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .step-description {
        font-size: 0.85rem;
        line-height: 1.6;
    }
}

/* Kutu Modellerimiz Bölümü */
.kutu-modelleri-section {
    background: var(--bg-light);
    padding: 3rem 0;
}

.kutu-model-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border: 1px solid #f0f0f0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.kutu-model-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.kutu-model-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.kutu-model-image-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #f8f9fa;
    position: relative;
}

.kutu-model-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.kutu-model-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.kutu-model-card:hover .kutu-model-image {
    transform: scale(1.1);
}

.kutu-model-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.kutu-model-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-color);
    line-height: 1.4;
    transition: var(--transition);
}

.kutu-model-link:hover .kutu-model-title {
    color: var(--accent-color);
}

.kutu-model-text {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0;
    font-size: 0.95rem;
    flex: 1;
}

@media (max-width: 991px) {
    .kutu-modelleri-section {
        padding: 2.5rem 0;
    }
}

@media (max-width: 768px) {
    .kutu-modelleri-section {
        padding: 2rem 0;
    }
    
    .kutu-model-image-wrapper {
        height: 200px;
    }
    
    .kutu-model-title {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .kutu-modelleri-section {
        padding: 1.5rem 0;
    }
    
    .kutu-model-image-wrapper {
        height: 180px;
    }
    
    .kutu-model-body {
        padding: 1.25rem;
    }
    
    .kutu-model-title {
        font-size: 0.95rem;
    }
    
    .kutu-model-text {
        font-size: 0.9rem;
    }
}

/* Etiket Çeşitleri Bölümü */
.etiket-cesitleri-section {
    background: #fff;
    padding: 3rem 0;
}

.etiket-cesit-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border: 1px solid #f0f0f0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.etiket-cesit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.etiket-cesit-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.etiket-cesit-image-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #f8f9fa;
    position: relative;
}

.etiket-cesit-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.etiket-cesit-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.etiket-cesit-card:hover .etiket-cesit-image {
    transform: scale(1.1);
}

.etiket-cesit-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.etiket-cesit-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-color);
    line-height: 1.4;
    transition: var(--transition);
}

.etiket-cesit-link:hover .etiket-cesit-title {
    color: var(--accent-color);
}

.etiket-cesit-text {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0;
    font-size: 0.95rem;
    flex: 1;
}

@media (max-width: 991px) {
    .etiket-cesitleri-section {
        padding: 2.5rem 0;
    }
}

@media (max-width: 768px) {
    .etiket-cesitleri-section {
        padding: 2rem 0;
    }
    
    .etiket-cesit-image-wrapper {
        height: 200px;
    }
    
    .etiket-cesit-title {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .etiket-cesitleri-section {
        padding: 1.5rem 0;
    }
    
    .etiket-cesit-image-wrapper {
        height: 180px;
    }
    
    .etiket-cesit-body {
        padding: 1.25rem;
    }
    
    .etiket-cesit-title {
        font-size: 0.95rem;
    }
    
    .etiket-cesit-text {
        font-size: 0.9rem;
    }
}

/* Detay Sayfası */
.detail-section {
    background: #fff;
    min-height: 60vh;
    padding: 3rem 0;
}

.detail-section .container-fluid {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.detail-section .row {
    align-items: flex-start;
}

.detail-article {
    background: #fff;
    padding: 0;
}

/* Breadcrumb - Şık Tasarım */
.elegant-breadcrumb {
    margin-bottom: 2rem;
}

.breadcrumb-elegant {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    background: linear-gradient(135deg, rgba(204, 0, 0, 0.05) 0%, rgba(204, 0, 0, 0.02) 100%);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
}

.breadcrumb-item-elegant {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.breadcrumb-item-elegant:not(:last-child)::after {
    content: "›";
    margin: 0 1rem;
    color: var(--text-light);
    font-size: 1.2rem;
    font-weight: 300;
}

.breadcrumb-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
}

.breadcrumb-link:hover {
    background: rgba(204, 0, 0, 0.1);
    color: #aa0000;
    transform: translateX(3px);
}

.breadcrumb-link i {
    font-size: 1rem;
}

.breadcrumb-item-elegant.active {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
    font-weight: 600;
    padding: 0.25rem 0.5rem;
}

.breadcrumb-item-elegant.active i {
    color: var(--accent-color);
    font-size: 1rem;
}

@media (max-width: 768px) {
    .breadcrumb-elegant {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
    
    .breadcrumb-item-elegant:not(:last-child)::after {
        margin: 0 0.75rem;
    }
    
    .breadcrumb-link,
    .breadcrumb-item-elegant.active {
        padding: 0.2rem 0.4rem;
    }
}

/* Detail Header */
.detail-header {
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 1.5rem;
}

.detail-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.detail-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.meta-item i {
    color: var(--accent-color);
}

/* Detail Image */
.detail-image-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.detail-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Detail Content */
.detail-content {
    margin-top: 2rem;
    padding-top: 2rem;
}

.content-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-color);
}

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

.content-text h2,
.content-text h3,
.content-text h4 {
    color: var(--text-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.content-text h2 {
    font-size: 1.75rem;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
}

.content-text h3 {
    font-size: 1.5rem;
}

.content-text h4 {
    font-size: 1.25rem;
}

.content-text img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.content-text a {
    color: var(--accent-color);
    text-decoration: none;
}

.content-text a:hover {
    text-decoration: underline;
}

.content-text ul,
.content-text ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.content-text li {
    margin-bottom: 0.5rem;
}

/* Detail Sidebar */
.detail-sidebar {
    position: sticky;
    top: 100px;
    align-self: flex-start;
    height: fit-content;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

.related-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 1rem;
    transition: var(--transition);
    border: 1px solid #e9ecef;
}

.related-item:hover {
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-color);
}

.related-image {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-content {
    flex: 1;
}

.related-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.related-title a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.related-title a:hover {
    color: var(--accent-color);
}

.related-excerpt {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 991px) {
    .detail-section {
        padding: 2rem 0;
    }
    
    .detail-title {
        font-size: 2rem;
    }
    
    .detail-subtitle {
        font-size: 1.1rem;
    }
    
    .detail-sidebar {
        position: static;
        margin-top: 2rem;
    }
    
    .detail-meta {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .detail-section {
        padding: 1.5rem 0;
    }
    
    .detail-title {
        font-size: 1.75rem;
    }
    
    .detail-subtitle {
        font-size: 1rem;
    }
    
    .detail-meta {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .content-text {
        font-size: 1rem;
    }
    
    .related-item {
        flex-direction: column;
    }
    
    .related-image {
        width: 100%;
        height: 200px;
    }
}

.btn-campaign {
    background: var(--accent-color);
    color: #fff;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    width: 100%;
    text-align: center;
}

.btn-campaign:hover {
    background: #aa0000;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(204, 0, 0, 0.3);
}

/* Footer */
.site-footer {
    background: #1e3a5f;
    color: #fff;
    padding: 3rem 0 1rem;
    margin-top: 0;
    position: relative;
    z-index: 1;
    width: 100%;
    flex-shrink: 0;
    flex: 0 0 auto;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: -16px;
    left: 0;
    right: 0;
    height: 32px;
    background-image: 
        url("data:image/svg+xml,%3Csvg width='80' height='32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,16 Q20,8 40,16 T80,16' stroke='%23cc0000' stroke-width='4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-size: 80px 32px;
    z-index: 2;
    opacity: 1;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    filter: drop-shadow(0 2px 4px rgba(204, 0, 0, 0.5));
}

@media (max-width: 768px) {
    .site-footer::before {
        top: -10px;
        height: 20px;
        background-size: 40px 20px;
        background-image: 
            url("data:image/svg+xml,%3Csvg width='40' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,10 Q10,5 20,10 T40,10' stroke='%23cc0000' stroke-width='2.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    }
}

@media (max-width: 576px) {
    .site-footer::before {
        top: -8px;
        height: 16px;
        background-size: 30px 16px;
        background-image: 
            url("data:image/svg+xml,%3Csvg width='30' height='16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,8 Q7.5,4 15,8 T30,8' stroke='%23cc0000' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    }
}

.site-footer .container-fluid {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.site-footer .row {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
}

.site-footer .row > [class*="col-"] {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

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

.footer-logo {
    max-height: 45px;
    max-width: 130px;
    width: auto;
    height: auto;
    object-fit: contain;
    margin-bottom: 0.5rem;
    aspect-ratio: auto;
}

.footer-company-name {
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 0.5rem;
}

.footer-text {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

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

.footer-links li {
    margin-bottom: 0.25rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    font-size: 0.9rem;
    padding: 0.1rem 0;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 8px;
    font-weight: 500;
}

.footer-sub-item {
    margin-left: 1rem;
    margin-bottom: 0.35rem;
}

.footer-sub-item a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7) !important;
}

.footer-sub-item a:hover {
    color: rgba(255, 255, 255, 0.9) !important;
    padding-left: 6px;
}

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

.footer-contact li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
}

.footer-contact i {
    margin-right: 0.5rem;
    margin-top: 0.15rem;
    color: #4a90e2;
    font-size: 1rem;
    min-width: 18px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-hours {
    list-style: none;
    padding: 0;
    color: rgba(255, 255, 255, 0.85);
}

.footer-hours li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    padding: 0.35rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-hours li:last-child {
    border-bottom: none;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 0.75rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.social-link:hover {
    background: #4a90e2;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.4);
}

.footer-bottom {
    border-top: 2px solid rgba(255, 255, 255, 0.15);
    padding-top: 2rem;
    margin-top: 3rem;
    text-align: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .navbar .container-fluid {
        padding: 0 1rem;
    }
    
    .navbar-brand-wrapper {
        gap: 0.5rem;
    }
    
    .navbar-brand {
        margin-right: 0.5rem;
    }
    
    .site-logo {
        max-height: 50px;
    }
    
    .whatsapp-btn-mobile {
        height: 40px;
        padding: 0.4rem 0.8rem;
    }
    
    .whatsapp-btn-mobile i {
        font-size: 1.2rem;
    }
    
    .whatsapp-text-mobile {
        font-size: 0.85rem;
    }
    
    .header-phone {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        margin-top: 0.5rem;
        width: 100%;
    }
    
    .header-whatsapp {
        display: none; /* Mobilde menü içindeki WhatsApp'ı gizle, logo yanındaki görünsün */
    }
    
    .phone-link {
        justify-content: center;
        width: 100%;
    }
    
    .slider-title {
        font-size: 2.5rem;
    }
    
    .carousel {
        height: 50vh;
        min-height: 350px;
        max-height: 500px;
    }
    
    .carousel-control-prev {
        left: 1rem;
    }
    
    .carousel-control-next {
        right: 1rem;
    }
    
    .content-section .container {
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    .navbar-brand-wrapper {
        gap: 0.5rem;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
        margin-right: 0.5rem;
    }
    
    .site-logo {
        max-height: 40px;
    }
    
    .whatsapp-btn-mobile {
        height: 38px;
        padding: 0.35rem 0.7rem;
    }
    
    .whatsapp-btn-mobile i {
        font-size: 1.1rem;
    }
    
    .whatsapp-text-mobile {
        font-size: 0.8rem;
    }
    
    .slider-title {
        font-size: 1.8rem;
    }
    
    .carousel {
        height: 40vh;
        min-height: 300px;
        max-height: 400px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .carousel-control-prev {
        left: 0.5rem;
    }
    
    .carousel-control-next {
        right: 0.5rem;
    }
    
    .content-section .container {
        padding: 0 1rem;
    }
    
    /* Footer Mobil */
    .site-footer {
        padding: 2rem 0 1rem;
    }
    
    .site-footer .container-fluid {
        padding: 0 1rem;
    }
    
    .footer-widget {
        margin-bottom: 1.5rem;
    }
    
    .footer-logo {
        max-height: 40px;
        max-width: 120px;
        margin-bottom: 1rem;
    }
    
    .footer-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        padding-bottom: 0.5rem;
    }
    
    .footer-text {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .footer-links li {
        margin-bottom: 0.4rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
        padding: 0.1rem 0;
    }
    
    .footer-contact li {
        margin-bottom: 0.6rem;
        font-size: 0.9rem;
    }
    
    .footer-hours li {
        margin-bottom: 0.4rem;
        font-size: 0.9rem;
        padding: 0.25rem 0;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        margin-right: 0.4rem;
        margin-bottom: 0.4rem;
    }
    
    .footer-bottom {
        padding-top: 1.5rem;
        margin-top: 2rem;
    }
    
    .copyright {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .slider-title {
        font-size: 1.5rem;
    }
    
    .carousel {
        min-height: 300px;
        max-height: 400px;
    }
    
    .carousel-indicators {
        margin-bottom: 1rem;
    }
    
    .site-footer {
        padding: 2rem 0 1rem;
    }
}

/* Full Screen */
html {
    height: 100%;
    width: 100%;
    overflow-x: hidden;
}

html, body {
    height: 100%;
    width: 100%;
    overflow-x: hidden;
}

.main-content {
    flex: 1;
}

/* Genel Responsive Düzenlemeler */
.container,
.container-fluid {
    width: 100%;
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 576px) {
    .container,
    .container-fluid {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 768px) {
    .container,
    .container-fluid {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 1800px !important;
    }
    
    .about-section .container,
    .contact-section .container,
    .category-section .container,
    .main-content .container {
        max-width: 1800px !important;
        padding: 0 2rem !important;
    }
}

/* Tüm sayfalar için genel responsive */
@media (max-width: 991px) {
    .main-content {
        padding-top: 1rem;
    }
    
    section {
        padding: 2rem 0 !important;
    }
}

@media (max-width: 768px) {
    .main-content {
        padding-top: 0.5rem;
    }
    
    section {
        padding: 1.5rem 0 !important;
    }
}

@media (max-width: 576px) {
    .main-content {
        padding-top: 0;
    }
    
    section {
        padding: 1rem 0 !important;
    }
}

/* İletişim Sayfası */
.contact-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 60vh;
    padding: 3rem 0;
}

.contact-section .container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-form-wrapper {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: var(--transition);
}

.contact-form-wrapper:hover {
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.15);
}

.contact-form-wrapper h3 {
    color: var(--text-color);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--accent-color);
}

.contact-form-wrapper .form-label {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.contact-form-wrapper .form-control {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 0.85rem 1rem;
    transition: var(--transition);
    font-size: 0.95rem;
}

.contact-form-wrapper .form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(204, 0, 0, 0.25);
    outline: none;
}

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

.contact-map-wrapper {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: var(--transition);
}

.contact-map-wrapper:hover {
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.15);
}

.contact-map-wrapper h3 {
    color: var(--text-color);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--accent-color);
}

.contact-map {
    border-radius: 10px;
    overflow: hidden;
    height: 450px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-info-wrapper {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: var(--transition);
}

.contact-info-wrapper:hover {
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.15);
}

.contact-info-wrapper h3 {
    color: var(--text-color);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--accent-color);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1rem;
    border-radius: 10px;
    transition: var(--transition);
}

.contact-info-item:hover {
    background: #f8f9fa;
}

.contact-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #aa0000 100%);
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.5rem;
    box-shadow: 0 3px 10px rgba(204, 0, 0, 0.3);
}

.contact-details h5 {
    color: var(--text-color);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.7;
    font-size: 0.95rem;
}

.contact-details a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.contact-details a:hover {
    color: #aa0000;
    text-decoration: underline;
}

/* İletişim Kartları (Alt kısım) */
.contact-info-cards {
    margin-top: 2rem;
}

.contact-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    height: 100%;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.15);
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #aa0000 100%);
    color: #fff;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(204, 0, 0, 0.3);
}

.contact-card h5 {
    color: var(--text-color);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-card p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.7;
    font-size: 0.95rem;
}

.contact-card a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.contact-card a:hover {
    color: #aa0000;
    text-decoration: underline;
}

/* reCAPTCHA Stili */
.g-recaptcha {
    margin: 1rem 0;
}

@media (max-width: 768px) {
    .contact-section {
        padding: 2rem 0;
    }
    
    .contact-form-wrapper,
    .contact-map-wrapper,
    .contact-info-wrapper {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-map {
        height: 300px;
    }
    
    .contact-info-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin: 0 auto;
    }
    
    .contact-card {
        margin-bottom: 1.5rem;
    }
}

/* Hakkımızda Sayfası - Şık ve Simetrik Tasarım */
.about-section {
    background: #ffffff;
    min-height: 60vh;
    padding: 5rem 0;
}

.about-section .container-fluid {
    max-width: 1800px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 2rem !important;
}

.about-section .container {
    max-width: 1800px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 2rem !important;
}

.about-section .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
}

.about-section .col-lg-9,
.about-section .col-lg-3 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.about-section .page-content-wrapper-elegant {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
}

/* Hero Section - Simetrik ve Merkezi */
.about-hero {
    text-align: center;
    padding: 2rem 0 3rem;
    margin-bottom: 4rem;
    width: 100%;
}

.hero-content {
    max-width: 1800px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}

.page-title-elegant {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    letter-spacing: -0.3px;
    width: 100%;
    max-width: 100%;
}

.page-subtitle-elegant {
    font-size: 1.25rem;
    color: var(--text-light);
    font-weight: 400;
    margin: 0 auto;
    line-height: 1.7;
    width: 100%;
    max-width: 100%;
}

.hero-divider {
    width: 80px;
    height: 3px;
    background: var(--accent-color);
    margin: 2.5rem auto 0;
    border-radius: 2px;
}

/* Content Wrapper - Temiz ve Düzenli */
.page-content-wrapper-elegant {
    background: #fff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
    margin-bottom: 0;
    width: 100%;
    max-width: 100%;
}

.content-icon-wrapper {
    display: none;
}

.page-content {
    line-height: 1.8;
}

.content-text-elegant {
    font-size: 1.05rem;
    color: var(--text-color);
    line-height: 1.9;
    text-align: left;
    font-weight: 400;
    max-width: 100%;
}

.content-text-elegant p {
    margin-bottom: 1.5rem;
    text-align: justify;
    max-width: 100%;
}

.content-text-elegant p:first-child {
    font-size: 1.15rem;
    color: var(--text-color);
    font-weight: 500;
    margin-bottom: 2rem;
    line-height: 1.9;
    text-align: justify;
    max-width: 100%;
}

.content-image-elegant {
    border-radius: 15px;
    margin: 2rem 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.content-image-elegant:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.content-text-elegant p {
    margin-bottom: 1.8rem;
}

.content-text-elegant h2,
.content-text-elegant h3,
.content-text-elegant h4 {
    color: var(--text-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.4;
}

.content-text-elegant h2 {
    font-size: 1.75rem;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.75rem;
    margin-bottom: 1.5rem;
    padding-left: 0;
}

.content-text-elegant h2::before,
.content-text-elegant h3::before,
.content-text-elegant h4::before {
    display: none;
}

.content-text h3 {
    font-size: 1.5rem;
}

.content-text h4 {
    font-size: 1.25rem;
}

.content-text ul,
.content-text ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.content-text li {
    margin-bottom: 0.5rem;
}

.content-text strong {
    color: var(--accent-color);
    font-weight: 700;
}

.content-text a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
}

.content-text a:hover {
    color: #aa0000;
    text-decoration: underline;
}

.content-text img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 1.5rem 0;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.content-text table {
    width: 100%;
    margin: 1.5rem 0;
    border-collapse: collapse;
}

.content-text table th,
.content-text table td {
    padding: 0.75rem;
    border: 1px solid #ddd;
    text-align: left;
}

.content-text table th {
    background: var(--accent-color);
    color: #fff;
    font-weight: 700;
}

.content-text blockquote {
    border-left: 4px solid var(--accent-color);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: var(--text-light);
}

.content-text code {
    background: #f4f4f4;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
}

.content-text pre {
    background: #f4f4f4;
    padding: 1rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 1.5rem 0;
}

.content-text pre code {
    background: none;
    padding: 0;
}

/* Sidebar - Şık ve Düzenli */
.page-sidebar {
    position: sticky;
    top: 20px;
}

.sidebar-widget {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
    margin-bottom: 0;
}

.widget-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--accent-color);
    text-align: center;
}

.widget-title i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

.widget-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.sidebar-campaign-item {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1rem;
    transition: var(--transition);
    border: 1px solid #e9ecef;
}

.sidebar-campaign-item:hover {
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
    border-color: var(--accent-color);
}

.campaign-thumb {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.campaign-thumb:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.campaign-thumb img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    transition: var(--transition);
    display: block;
}

.campaign-thumb:hover img {
    transform: scale(1.05);
}

.campaign-info {
    padding: 0;
}

.campaign-title-small {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.campaign-title-small a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
    display: block;
}

.campaign-title-small a:hover {
    color: var(--accent-color);
}

.campaign-excerpt {
    color: var(--text-light);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.campaign-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.campaign-link:hover {
    color: #aa0000;
    transform: translateX(3px);
}

/* Footer Elegant */
.page-footer-elegant {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
}

.footer-divider {
    display: none;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.footer-content i {
    color: var(--accent-color);
    font-size: 1rem;
}

@media (max-width: 991px) {
    .about-section {
        padding: 3rem 0;
    }
    
    .about-hero {
        padding: 1rem 0 2rem;
        margin-bottom: 2rem;
    }
    
    .page-title-elegant {
        font-size: 2.25rem;
    }
    
    .page-subtitle-elegant {
        font-size: 1.15rem;
    }
    
    .page-content-wrapper-elegant {
        padding: 2rem 1.5rem;
    }
    
    .page-sidebar {
        position: static;
        margin-top: 2rem;
    }
    
    .sidebar-widget {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 2rem 0;
    }
    
    .page-title-elegant {
        font-size: 2rem;
    }
    
    .page-subtitle-elegant {
        font-size: 1.1rem;
    }
    
    .page-content-wrapper-elegant {
        padding: 1.5rem;
    }
    
    .content-text-elegant {
        font-size: 1rem;
    }
    
    .content-text-elegant p:first-child {
        font-size: 1.05rem;
    }
}

/* Kategori İçerikleri Sayfası */
.category-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 60vh;
    padding: 3rem 0;
}

.category-section .container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.category-header {
    margin-bottom: 3rem;
}

.category-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.category-count {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 1rem;
}

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

.content-item {
    transition: var(--transition);
}

.content-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.15);
}

.content-image-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #f8f9fa;
}

.content-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.content-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.content-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.content-title a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.content-title a:hover {
    color: var(--accent-color);
}

.content-excerpt {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
    flex: 1;
}

.content-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
    margin-top: auto;
}

.content-date {
    color: var(--text-light);
    font-size: 0.9rem;
}

.content-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.content-link:hover {
    color: #aa0000;
    transform: translateX(5px);
}

/* Sayfalama */
.pagination {
    margin-top: 2rem;
}

.pagination .page-link {
    color: var(--accent-color);
    border: 1px solid #e0e0e0;
    padding: 0.75rem 1rem;
    transition: var(--transition);
}

.pagination .page-link:hover {
    background: var(--accent-color);
    color: #fff;
    border-color: var(--accent-color);
}

.pagination .page-item.active .page-link {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #fff;
}

@media (max-width: 768px) {
    .category-section {
        padding: 2rem 0;
    }
    
    .category-title {
        font-size: 2rem;
    }
    
    .content-image-wrapper {
        height: 200px;
    }
    
    .content-body {
        padding: 1.25rem;
    }
    
    .content-title {
        font-size: 1.25rem;
    }
    
    .content-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* Bootstrap Buton Override */
.btn-primary {
    background-color: #cc0000 !important;
    border-color: #cc0000 !important;
    color: #fff !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active {
    background-color: #aa0000 !important;
    border-color: #aa0000 !important;
    color: #fff !important;
}

.btn-primary:focus {
    box-shadow: 0 0 0 0.2rem rgba(204, 0, 0, 0.25) !important;
}

.btn-outline-primary {
    color: #cc0000 !important;
    border-color: #cc0000 !important;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
    background-color: #cc0000 !important;
    border-color: #cc0000 !important;
    color: #fff !important;
}

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

@media (max-width: 991px) {
    .about-section {
        padding: 3rem 0;
    }
    
    .about-hero {
        padding: 1rem 0 2rem;
        margin-bottom: 2rem;
    }
    
    .page-title-elegant {
        font-size: 2.25rem;
    }
    
    .page-subtitle-elegant {
        font-size: 1.15rem;
    }
    
    .page-content-wrapper-elegant {
        padding: 2rem 1.5rem;
    }
    
    .page-sidebar {
        position: static;
        margin-top: 2rem;
    }
    
    .sidebar-widget {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 2rem 0;
    }
    
    .page-title-elegant {
        font-size: 2rem;
    }
    
    .page-subtitle-elegant {
        font-size: 1.1rem;
    }
    
    .page-content-wrapper-elegant {
        padding: 1.5rem;
    }
    
    .content-text-elegant {
        font-size: 1rem;
    }
    
    .content-text-elegant p:first-child {
        font-size: 1.05rem;
    }
}
