/**
 * RF Spor Merkezi - Ana CSS Dosyası
 */

/* ===================== GENEL ===================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff6b35;
    --secondary-color: #ff8c42;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #ff6b35;
    --info-color: #ff8c42;
    --dark-color: #2d3436;
    --anthracite: #3d3d3d;
    --light-color: #f3f4f6;
    --white: #ffffff;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background: #fff;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
    box-sizing: border-box;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    max-width: 100%;
    box-sizing: border-box;
}

.col-md-4 { flex: 0 0 33.333%; max-width: 33.333%; padding: 0 15px; }
.col-md-6 { flex: 0 0 50%; max-width: 50%; padding: 0 15px; }
.col-md-8 { flex: 0 0 66.666%; max-width: 66.666%; padding: 0 15px; }

@media (max-width: 768px) {
    .col-md-4, .col-md-6, .col-md-8 { flex: 0 0 100%; max-width: 100%; }
}

.text-center { text-align: center; }

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s;
}

a:hover {
    color: var(--secondary-color);
}

a:visited {
    color: var(--primary-color);
}

/* ===================== HEADER ===================== */
.site-header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    transition: box-shadow 0.3s ease;
    will-change: box-shadow;
}

body.public-site.menu-open {
    overflow: hidden !important;
}

body.public-site.menu-open .site-header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 9999;
}

.site-header.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.site-header.scrolled .main-nav {
    padding: 8px 0;
}

.site-header.scrolled .logo img {
    max-height: 50px;
}

.top-bar {
    display: none;
}

.main-nav {
    padding: 20px 0;
    transition: padding 0.3s ease;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    position: relative;
}

.logo img {
    max-height: 60px;
    transition: max-height 0.3s ease;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo h1 {
    margin: 0;
    font-size: 28px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.logo .slogan {
    margin: 0;
    font-size: 12px;
    color: #666;
    font-weight: 400;
    opacity: 1;
    max-height: 20px;
    overflow: hidden;
    transition: opacity 0.3s ease, max-height 0.3s ease;
}

.site-header.scrolled .logo .slogan {
    opacity: 0;
    max-height: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 10px;
    align-items: center;
    position: static;
    visibility: visible;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s;
}

.nav-menu li a:hover,
.nav-menu li.active a {
    background: var(--primary-color);
    color: white;
}

.btn-admin {
    background: var(--primary-color) !important;
    color: white !important;
}

/* Hamburger Menu */
.public-site .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 10001;
    position: relative;
}

.public-site .hamburger span {
    display: block;
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    border-radius: 3px;
}

.public-site .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.public-site .hamburger.active span:nth-child(2) {
    opacity: 0;
}

.public-site .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Body scroll lock when menu is open (yukarıda tanımlanmış) */

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}


/* ===================== SLIDER ===================== */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
    max-width: 100%;
    padding: 0 !important;
    margin: 0;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: white;
    opacity: 0;
    transition: opacity 1s;
}

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.7) 0%, rgba(118, 75, 162, 0.7) 100%);
}

.slide-content {
    position: relative;
    z-index: 2;
    color: white;
    padding-top: 150px;
}

/* Slider içindeki butonlar beyaz */
.slide-content .btn-light {
    background: white;
    color: var(--primary-color) !important;
    border: 2px solid white;
}

.slide-content .btn-light i {
    color: var(--primary-color) !important;
}

.slide-content .btn-light:hover {
    background: transparent;
    color: white !important;
    border-color: white;
}

.slide-content .btn-light:hover i {
    color: white !important;
}

.slide-title {
    font-size: 54px;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
}

.slide-subtitle {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.slide-description {
    font-size: 18px;
    margin-bottom: 30px;
    color: white;
}

.slider-prev, .slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.3);
    border: none;
    color: white;
    font-size: 24px;
    padding: 15px 20px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
}

.slider-prev:hover, .slider-next:hover {
    background: rgba(255,255,255,0.5);
}

.slider-prev { left: 20px; }
.slider-next { right: 20px; }

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: white;
    width: 30px;
    border-radius: 6px;
}

/* ===================== SECTIONS ===================== */
section {
    padding: 80px 0;
    max-width: 100%;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.section-subtitle {
    font-size: 18px;
    color: #6b7280;
}

/* ===================== FEATURES ===================== */
.features-section {
    background: var(--light-color);
    padding: 60px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-box {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 36px;
}

.feature-box h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.feature-box p {
    color: #6b7280;
}

/* ===================== PACKAGES ===================== */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.package-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
    transform: translateY(-5px);
}

.package-badge-old {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.package-header h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.package-type {
    background: var(--light-color);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 14px;
    color: var(--primary-color);
}

.package-price {
    margin: 30px 0;
}

.package-price .price {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
}

.package-price .period {
    color: #6b7280;
    font-size: 14px;
}

.package-features ul {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.package-features li {
    padding: 10px 0;
    border-bottom: 1px solid #e5e7eb;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features i {
    color: var(--success-color);
    margin-right: 10px;
}

/* ===================== PRODUCTS ===================== */
.products-section {
    background: var(--light-color);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
    transform: translateY(-5px);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: white;
    z-index: 2;
}

.product-badge.badge-success {
    background: var(--success-color);
}

.product-badge.badge-danger {
    background: var(--danger-color);
}

.product-image {
    height: 200px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    background: white;
}

.no-image {
    font-size: 48px;
    color: #9ca3af;
    position: relative;
    z-index: 2;
}

.product-info {
    padding: 20px;
}

.product-category {
    background: var(--primary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
}

.product-info h3 {
    font-size: 18px;
    margin: 15px 0 10px;
}

.product-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 15px 0;
    flex-wrap: wrap;
    gap: 10px;
}

.product-price .price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.stock-info {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 500;
    color: var(--success-color);
    padding: 4px 10px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 20px;
}

.stock-info i {
    font-size: 12px;
}

.stock-info.out-of-stock {
    color: var(--danger-color);
    background: rgba(239, 68, 68, 0.1);
}

/* ===================== BLOG ===================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
    transform: translateY(-5px);
}

.blog-image {
    height: 250px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.2);
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    background: white;
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    color: #6b7280;
    font-size: 14px;
}

.blog-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.blog-content p {
    color: #6b7280;
    margin-bottom: 15px;
}

/* ===================== CTA SECTION ===================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
    padding: 80px 0;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: white;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 30px;
    color: white;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* CTA içindeki butonlar beyaz */
.cta-section .btn-light {
    background: white;
    color: var(--primary-color) !important;
    border: 2px solid white;
}

.cta-section .btn-light i {
    color: var(--primary-color) !important;
}

.cta-section .btn-light:hover {
    background: transparent;
    color: white !important;
    border-color: white;
}

.cta-section .btn-light:hover i {
    color: white !important;
}
}

/* ===================== BUTTONS ===================== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    font-size: 15px;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white !important;
}

.btn-primary i {
    color: white !important;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
    color: white !important;
}

.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
}

.btn-light {
    background: white;
    color: var(--primary-color) !important;
    border: 2px solid white;
}

.btn-light i {
    color: var(--primary-color) !important;
}

.btn-light:hover {
    background: transparent;
    color: white !important;
    border-color: white;
}

.btn-light:hover i {
    color: white !important;
}

.btn-outline-light {
    background: transparent;
    border: 2px solid white;
    color: white !important;
}

.btn-outline-light i {
    color: white !important;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary-color) !important;
}

.btn-outline-light:hover i {
    color: var(--primary-color) !important;
}

.btn-lg {
    padding: 15px 40px;
    font-size: 18px;
}

.btn-sm {
    padding: 10px 22px;
    font-size: 13px;
    border-radius: 8px;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Kart butonları için özel stil - daha kibar */
.package-card .btn,
.product-card .btn,
.blog-card .btn {
    margin-top: auto;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.package-card .btn-primary,
.product-card .btn-primary,
.blog-card .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
}

.package-card .btn-primary:hover,
.product-card .btn-primary:hover,
.blog-card .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.35);
}

.package-card .btn-outline-primary,
.blog-card .btn-outline-primary {
    border: 2px solid var(--primary-color);
    background: transparent;
}

.package-card .btn-outline-primary:hover,
.blog-card .btn-outline-primary:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.35);
}

.btn-link {
    background: none;
    color: var(--primary-color);
    padding: 0;
}

/* ===================== FOOTER ===================== */
.site-footer {
    background: var(--anthracite);
    color: white;
    max-width: 100%;
    overflow: hidden;
}

.footer-main {
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: start;
    gap: 10px;
}

.footer-contact i {
    color: var(--primary-color);
    margin-top: 3px;
}

.footer-contact a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.social-links a {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
    border: 1px solid rgba(255,255,255,0.2);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
    border-color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
    color: rgba(255,255,255,0.7);
    max-width: 100%;
}

.footer-bottom-content {
    max-width: 100%;
    overflow-wrap: break-word;
}

/* ===================== FOOTER MAP ===================== */
.footer-map {
    max-width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.footer-map iframe {
    width: 100%;
    max-width: 100%;
    height: 400px;
    border: none;
    display: block;
    margin: 0;
}

@media (max-width: 768px) {
    .footer-map iframe {
        height: 300px;
    }
}

/* ===================== PAGE HEADER ===================== */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 60px 0 40px;
    color: white;
    text-align: center;
}

.page-header-content h1 {
    font-size: 42px;
    margin-bottom: 10px;
    font-weight: 700;
}

.page-header-content h1 i {
    margin-right: 15px;
}

.page-header-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 20px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    opacity: 0.8;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.breadcrumb a:hover {
    opacity: 0.7;
}

/* ===================== FILTER BAR ===================== */
.filter-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
    padding: 20px;
    background: var(--light-color);
    border-radius: 10px;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid transparent;
    background: white;
    color: var(--dark-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s;
}

.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.filter-btn i {
    margin-right: 8px;
}

/* ===================== EMPTY STATE ===================== */
.empty-state {
    text-align: center;
    padding: 80px 20px;
}

.empty-state i {
    font-size: 80px;
    color: var(--light-color);
    margin-bottom: 20px;
}

.empty-state h3 {
    font-size: 28px;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.empty-state p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

/* ===================== PACKAGES PAGE ===================== */
.packages-page {
    padding: 80px 0 60px;
    background: var(--light-color);
}

/* Ana sayfa package-badge için */
.packages-section .package-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

/* Paketler sayfası package-badge için */
.packages-page .package-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    z-index: 10;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.packages-page .package-badge i {
    font-size: 12px;
}

.badge-popular {
    display: inline-block;
    background: #9b59b6;
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(155, 89, 182, 0.4);
}

.badge-premium {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.package-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 36px;
}

.package-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-color);
    padding-right: 60px;
    min-height: auto;
}

.package-header {
    margin-bottom: 20px;
}

.package-header h3 {
    font-size: 24px;
    margin-bottom: 10px;
    padding-right: 60px;
}

.package-price {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 20px;
}

/* Paketler sayfası için price override */
.packages-page .package-price .price {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
}

.package-price .currency {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
}

/* Paketler sayfası için package-features artık ul/li kullanıyor */
.packages-page .package-features {
    display: block;
    margin-bottom: 20px;
    padding: 0;
    border: none;
}

.package-features .feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

.package-features .feature i {
    color: var(--primary-color);
    font-size: 16px;
}

.package-description {
    margin-bottom: 20px;
}

.package-description p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* ===================== PAGE CONTENT ===================== */
.page-content {
    padding: 80px 0 60px;
}

.content-box {
    max-width: 900px;
    margin: 0 auto;
}

.page-text {
    background: white;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.page-text h2 {
    color: var(--dark-color);
    margin-bottom: 20px;
    font-size: 28px;
}

.page-text p {
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.info-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.info-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
}

.info-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.info-box p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

.features-grid-simple {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-box {
    background: white;
    padding: 25px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.feature-box i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-box h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.feature-box p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

.stats-section {
    background: linear-gradient(135deg, var(--anthracite), var(--dark-color));
    padding: 60px 0;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-icon {
    font-size: 50px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

/* ===================== CONTACT PAGE ===================== */
.contact-section {
    padding: 80px 0 60px;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.contact-card {
    background: white;
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.contact-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.contact-card p,
.contact-card a {
    font-size: 14px;
    color: #666;
    text-decoration: none;
    line-height: 1.6;
}

.contact-card a:hover {
    color: var(--primary-color);
}

.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto 50px;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.contact-form-header {
    text-align: center;
    margin-bottom: 30px;
}

.contact-form-header h2 {
    font-size: 28px;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.contact-form-header p {
    font-size: 15px;
    color: #666;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-color);
    font-size: 14px;
}

.contact-form label i {
    color: var(--primary-color);
    margin-right: 5px;
}

.contact-form .required {
    color: var(--danger-color);
}

.contact-form .form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s;
}

.contact-form .form-control:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert i {
    font-size: 20px;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.alert-danger {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.map-wrapper {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.map-wrapper iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* ===================== BLOG PAGE ===================== */
.blog-page {
    padding: 80px 0 60px;
    background: var(--light-color);
}

.blog-excerpt {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.blog-content {
    padding: 20px;
}

.blog-content h3 {
    font-size: 18px;
    margin-bottom: 12px;
    min-height: 48px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-content h3 a {
    color: var(--dark-color);
    text-decoration: none;
    transition: color 0.3s;
}

.blog-content h3 a:hover {
    color: var(--primary-color);
}

/* ===================== PRODUCTS PAGE ===================== */
.products-page {
    padding: 80px 0 60px;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: white;
    z-index: 10;
}

.badge-warning {
    background: var(--warning-color);
}

.badge-popular {
    background: #9b59b6;
}

.product-category {
    display: inline-block;
    padding: 4px 10px;
    background: var(--light-color);
    color: var(--primary-color);
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

.product-category i {
    margin-right: 5px;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 17px;
    margin-bottom: 10px;
    color: var(--dark-color);
    min-height: 42px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.product-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding: 12px 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.product-stock,
.product-sales {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #666;
}

.product-stock i,
.product-sales i {
    color: var(--primary-color);
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 3px;
}

.product-price .price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.product-price .currency {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
}

/* ===================== SCROLL TO TOP ===================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: none;
    z-index: 999;
    transition: all 0.3s;
}

.scroll-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 768px) {
    /* Page Content */
    body {
        padding-top: 0;
    }
    
    section:first-of-type,
    .hero-slider {
        margin-top: 0;
    }
    
    /* Header & Menu */
    .top-bar {
        display: none;
    }
    
    .site-header {
        position: sticky;
        top: 0;
    }
    
    .public-site .hamburger {
        display: flex !important;
        position: relative;
        z-index: 10001;
        transition: all 0.3s ease;
    }
    
    .public-site .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .public-site .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .public-site .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .public-site .nav-menu {
        display: flex !important;
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 80px 20px 20px;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
        transition: right 0.3s ease-in-out;
        gap: 0;
        overflow-y: auto;
        z-index: 10000;
        visibility: hidden;
    }
    
    .public-site .nav-menu.active {
        right: 0 !important;
        visibility: visible !important;
    }
    
    /* Mobile Menu Overlay */
    .public-site .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9998;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .public-site .menu-overlay.active {
        display: block;
        opacity: 1;
    }
    
    
    .public-site .nav-menu li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
        margin: 0;
    }
    
    .public-site .nav-menu li a {
        display: block;
        padding: 15px 20px;
        width: 100%;
        border-radius: 0;
        color: var(--dark-color);
        font-size: 16px;
        font-weight: 500;
        transition: all 0.3s ease;
    }
    
    .public-site .nav-menu li a:hover {
        background: var(--light-color);
        color: var(--primary-color);
        padding-left: 25px;
    }
    
    .public-site .nav-menu li.active a {
        background: var(--light-color);
        color: var(--primary-color);
    }
    
    .public-site .nav-menu .btn-admin {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: var(--primary-color);
        color: white !important;
        padding: 12px 20px;
        border-radius: 8px;
        margin: 10px 20px;
        width: calc(100% - 40px);
        justify-content: center;
    }
    
    .logo h1 {
    font-size: 20px;
    }
    
    .logo img {
        max-height: 40px;
    }
    
    /* Content */
    .hero-slider { height: 400px; }
    .slide-title { font-size: 32px; }
    .slide-subtitle { font-size: 20px; }
    .slide-description { font-size: 16px; }
    .section-title { font-size: 28px; }
    .cta-content h2 { font-size: 28px; }
    .cta-buttons { 
        flex-direction: column; 
        align-items: center; 
        gap: 10px;
    }
    .cta-buttons .btn { width: 100%; max-width: 300px; }
    section { padding: 40px 0; }
    .features-grid { gap: 20px; }
    .packages-grid { 
        grid-template-columns: 1fr;
        gap: 20px; 
    }
    .products-grid { 
        grid-template-columns: 1fr;
        gap: 20px; 
    }
    .blog-grid { 
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Page Content */
    .page-text {
        padding: 25px;
    }
    
    .info-grid,
    .features-grid-simple {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .filter-bar {
        padding: 15px;
    }
    
    .filter-btn {
        padding: 8px 15px;
        font-size: 13px;
    }
    
    /* Contact */
    .contact-info-cards {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .contact-form-wrapper {
        padding: 25px 20px;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-form-header h2 {
        font-size: 22px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .packages-grid,
    .products-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nav-menu {
        gap: 5px;
    }
    
    .nav-menu li a {
        padding: 8px 12px;
        font-size: 14px;
    }
    
    .logo h1 {
        font-size: 24px;
    }
    
    .logo img {
        max-height: 50px;
    }
    
    .features-grid-simple {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-info-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===================== BLOG DETAY SAYFASI ===================== */

/* Page Header - Blog Detay */
.page-header.blog-header {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 0;
}

.page-header.blog-header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 52, 54, 0.85), rgba(255, 107, 53, 0.75));
    z-index: 1;
}

.page-header.blog-header .container {
    position: relative;
    z-index: 2;
    color: white;
}

.page-header.blog-header .category-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.page-header.blog-header h1 {
    font-size: 42px;
    font-weight: 700;
    margin: 20px 0;
    line-height: 1.3;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.page-header.blog-header .blog-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.page-header.blog-header .blog-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.page-header.blog-header .blog-meta i {
    font-size: 16px;
}

/* Blog Detail Section */
.blog-detail-section {
    padding: 20px 0;
    background: #f8f9fa;
}

.blog-detail-section .container {
    max-width: 1200px;
}

/* Blog Article */
.blog-article {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    line-height: 1.8;
    font-size: 16px;
    color: #333;
}

/* Blog Article Header */
.blog-article-header {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.blog-article-header .category-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 15px;
}

.blog-article-header h1 {
    font-size: 32px;
    color: var(--dark-color);
    margin: 15px 0;
    font-weight: 600;
    line-height: 1.3;
}

.blog-article-header .blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
    font-size: 14px;
    color: #666;
}

.blog-article-header .blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-article-header .blog-meta i {
    color: var(--primary-color);
}

/* Blog Image Gallery */
.blog-image-gallery {
    margin: 25px 0;
}

.blog-main-image {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-main-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    display: block;
}

.blog-article h1,
.blog-article h2,
.blog-article h3 {
    color: var(--dark-color);
    margin: 30px 0 20px 0;
    font-weight: 600;
}

.blog-article h1 { font-size: 32px; }
.blog-article h2 { font-size: 28px; }
.blog-article h3 { font-size: 24px; }

.blog-article p {
    margin-bottom: 20px;
    line-height: 1.9;
}

.blog-article img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 25px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.blog-article ul,
.blog-article ol {
    margin: 20px 0;
    padding-left: 30px;
}

.blog-article li {
    margin-bottom: 10px;
}

/* Blog Tags */
.blog-tags {
    padding: 20px 0;
    margin-top: 30px;
    border-top: 2px solid #f0f0f0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.blog-tags strong {
    color: var(--dark-color);
    font-size: 15px;
}

.blog-tags .tag {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.blog-tags .tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

/* Share Buttons */
.share-buttons {
    padding: 25px 0;
    margin-top: 20px;
    border-top: 2px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.share-buttons strong {
    color: var(--dark-color);
    font-size: 15px;
    margin-right: 10px;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.whatsapp {
    background: #25d366;
}

.share-btn i {
    color: white;
}

/* Related Posts */
.related-posts {
    margin-top: 50px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.related-posts h3 {
    font-size: 26px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-color);
    position: relative;
}

.related-posts h3:after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
}

.blog-card-small {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card-small:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.blog-card-small img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    transition: all 0.3s ease;
    background: white;
}

.blog-card-small:hover img {
    transform: scale(1.1);
}

.blog-card-small h4 {
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

.blog-card-small h4 a {
    color: var(--dark-color);
    transition: color 0.3s ease;
}

.blog-card-small h4 a:hover {
    color: var(--primary-color);
}

.blog-card-small .date {
    display: block;
    padding: 0 15px 15px 15px;
    font-size: 13px;
    color: #999;
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    margin-bottom: 25px;
}

.sidebar-widget h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f0f0;
}

.sidebar-widget p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.sidebar-widget.cta-widget {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    border: none;
}

.sidebar-widget.cta-widget h3 {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.sidebar-widget.cta-widget p {
    color: rgba(255, 255, 255, 0.95);
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
}

/* Popular Posts List */
.popular-posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.popular-posts-list li {
    margin-bottom: 15px;
}

.popular-posts-list li:last-child {
    margin-bottom: 0;
}

.popular-post-item {
    display: flex;
    gap: 12px;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.popular-post-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.popular-post-item img,
.popular-post-no-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.popular-post-no-img {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.popular-post-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.popular-post-content h4 {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
    color: var(--dark-color);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.popular-post-meta {
    font-size: 12px;
    color: #999;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Category List */
.category-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.category-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    color: var(--dark-color);
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.category-item:hover {
    background: #e9ecef;
    border-left-color: var(--primary-color);
    transform: translateX(3px);
    color: var(--primary-color);
}

.category-item.active {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    border-left-color: #ff8c42;
}

.category-item i {
    font-size: 14px;
    width: 18px;
}

.category-item span:first-of-type {
    flex: 1;
    font-weight: 500;
    font-size: 14px;
}

.category-count {
    background: rgba(0,0,0,0.1);
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.category-item.active .category-count {
    background: rgba(255, 255, 255, 0.3);
}

/* Tags Cloud */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-cloud-item {
    display: inline-block;
    padding: 8px 15px;
    background: #f8f9fa;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--dark-color);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.tag-cloud-item:hover {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

/* CTA Widget Buttons */
.cta-widget .btn {
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.cta-widget .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* Responsive - Blog Detay */
@media (max-width: 768px) {
    .page-header.blog-header {
        height: 300px;
    }
    
    .page-header.blog-header h1 {
        font-size: 26px;
    }
    
    .page-header.blog-header .blog-meta {
        flex-direction: column;
        gap: 10px;
        font-size: 13px;
    }
    
    .blog-article {
        padding: 20px 15px;
    }
    
    .blog-article-header h1 {
        font-size: 24px;
        margin: 10px 0;
    }
    
    .blog-article-header .blog-meta {
        flex-direction: column;
        gap: 8px;
        font-size: 13px;
    }
    
    .blog-article h1 { font-size: 24px; }
    .blog-article h2 { font-size: 22px; }
    .blog-article h3 { font-size: 20px; }
    
    .blog-main-image img {
        max-height: 300px;
    }
    
    .share-buttons {
        flex-wrap: wrap;
    }
    
    .related-posts {
        padding: 20px;
    }
    
    .related-posts h3 {
        font-size: 22px;
    }
    
    .blog-sidebar {
        position: static;
        margin-top: 30px;
    }
    
    .popular-post-item {
        flex-direction: column;
    }
    
    .popular-post-item img,
    .popular-post-no-img {
        width: 100%;
        height: 150px;
    }
    
    .category-item {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .tag-cloud-item {
        padding: 6px 12px;
        font-size: 12px;
    }
}
