/* =============================================
   Enfessoft - Ana Stil Dosyası
   Çok amaçlı tema
   ============================================= */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;600;700&display=swap');

/* CSS Değişkenleri */
:root {
    --primary: #2d6a4f;
    --primary-dark: #1b4332;
    --primary-light: #40916c;
    --secondary: #52b788;
    --accent: #74c69d;
    --accent-light: #95d5b2;
    --bg-light: #d8f3dc;
    --bg-lighter: #f0faf3;
    --white: #ffffff;
    --dark: #1a1a2e;
    --gray: #6b7280;
    --gray-light: #f3f4f6;
    --gold: #d4a437;
    --gold-light: #f0d78c;
    --danger: #ef4444;
    --whatsapp: #25D366;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 40px rgba(45, 106, 79, 0.15);
    --shadow-xl: 0 25px 50px rgba(45, 106, 79, 0.2);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    background: var(--bg-lighter);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =============================================
   Animasyonlar
   ============================================= */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

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

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

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

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

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

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

@keyframes leafFall {
    0% { transform: translateY(-10px) rotate(0deg); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(20px) rotate(45deg); opacity: 0; }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* =============================================
   Header / Navbar
   ============================================= */
.top-bar {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
    padding: 8px 0;
    font-size: 0.85rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar a {
    color: var(--accent-light);
}

.top-bar a:hover {
    color: var(--white);
}

.top-bar-left {
    display: flex;
    gap: 20px;
    align-items: center;
}

.top-bar-right {
    display: flex;
    gap: 15px;
    align-items: center;
}

.top-bar-right a {
    font-size: 1.1rem;
}

.navbar {
    background: var(--white);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 0;
    box-shadow: var(--shadow-lg);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 75px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary);
}

.logo img {
    height: 50px;
    width: auto;
}

.logo span {
    font-family: 'Playfair Display', serif;
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 5px;
    align-items: center;
}

.nav-links a {
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--dark);
    position: relative;
    transition: var(--transition);
}

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

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
    background: var(--bg-light);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 50%;
}

.nav-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--whatsapp) !important;
    color: var(--white) !important;
    padding: 10px 22px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.nav-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4) !important;
    background: #20bd5a !important;
}

.nav-whatsapp::after {
    display: none !important;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* =============================================
   Hero / Slider Section
   ============================================= */
.hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    min-height: 550px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero::after {
    content: '🌿';
    position: absolute;
    top: 20%;
    right: 10%;
    font-size: 80px;
    opacity: 0.15;
    animation: float 6s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    color: var(--accent-light);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 25px;
    border: 1px solid rgba(255,255,255,0.2);
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero p {
    font-size: 1.15rem;
    color: var(--accent-light);
    margin-bottom: 35px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-decoration {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(82, 183, 136, 0.2), transparent);
    z-index: 1;
}

/* =============================================
   Butonlar
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(82, 183, 136, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(82, 183, 136, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    transform: translateY(-3px);
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    font-size: 1.05rem;
    padding: 16px 36px;
}

.btn-whatsapp:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.btn-sm {
    padding: 10px 22px;
    font-size: 0.9rem;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--dark);
}

/* =============================================
   Section Başlıkları
   ============================================= */
.section {
    padding: 80px 0;
}

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

.section-header .badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bg-light);
    color: var(--primary);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
    position: relative;
}

.section-header p {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* =============================================
   Kategori Kartları
   ============================================= */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.category-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    group: true;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.category-card-img {
    height: 200px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    position: relative;
    overflow: hidden;
}

.category-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.category-card-img .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(27, 67, 50, 0.7), transparent);
    opacity: 0;
    transition: var(--transition);
}

.category-card:hover .category-card-img .overlay {
    opacity: 1;
}

.category-card-body {
    padding: 22px;
}

.category-card-body h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary-dark);
}

.category-card-body p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.category-card-body .cat-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.category-card-body .cat-link:hover {
    gap: 10px;
    color: var(--secondary);
}

/* =============================================
   Ürün Kartları
   ============================================= */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 25px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.product-card-img {
    position: relative;
    height: 260px;
    overflow: hidden;
    background: var(--gray-light);
}

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

.product-card:hover .product-card-img img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gold);
    color: var(--white);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(212, 164, 55, 0.4);
}

.product-badge.sale {
    background: var(--danger);
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
}

.product-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(27, 67, 50, 0.8), transparent 60%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
}

.product-card:hover .product-card-overlay {
    opacity: 1;
}

.product-card-overlay .btn {
    transform: translateY(20px);
    transition: var(--transition);
}

.product-card:hover .product-card-overlay .btn {
    transform: translateY(0);
}

.product-card-body {
    padding: 20px;
}

.product-card-category {
    color: var(--secondary);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.product-card-body h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
    line-height: 1.4;
}

.product-card-body h3 a:hover {
    color: var(--primary);
}

.product-card-desc {
    color: var(--gray);
    font-size: 0.88rem;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--gray-light);
}

.product-price {
    display: flex;
    flex-direction: column;
}

.product-price .current {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.product-price .old {
    font-size: 0.85rem;
    color: var(--gray);
    text-decoration: line-through;
}

.product-card-footer .btn-whatsapp {
    padding: 10px 18px;
    font-size: 0.85rem;
    border-radius: 50px;
}

/* =============================================
   Öne Çıkan Ürünler Banner
   ============================================= */
.featured-banner {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.featured-banner::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(82, 183, 136, 0.15);
    border-radius: 50%;
    top: -100px;
    right: -50px;
}

.featured-banner .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.featured-banner-text {
    max-width: 500px;
    color: var(--white);
}

.featured-banner-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.featured-banner-text p {
    color: var(--accent-light);
    margin-bottom: 25px;
    font-size: 1.05rem;
}

/* =============================================
   Hakkımızda Section
   ============================================= */
.about-section {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image-main {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-image-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gold);
    color: var(--white);
    padding: 20px 25px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about-image-badge .number {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.about-image-badge .text {
    font-size: 0.85rem;
    font-weight: 500;
}

.about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.about-content p {
    color: var(--gray);
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-feature i {
    width: 45px;
    height: 45px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.about-feature span {
    font-weight: 500;
    font-size: 0.95rem;
}

/* =============================================
   İstatistikler
   ============================================= */
.stats-section {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 50px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
    color: var(--white);
}

.stat-item {
    padding: 20px;
}

.stat-item .number {
    font-size: 2.8rem;
    font-weight: 800;
    display: block;
    line-height: 1.2;
}

.stat-item .label {
    font-size: 0.95rem;
    opacity: 0.9;
    font-weight: 400;
}

/* =============================================
   Footer
   ============================================= */
.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-about .logo {
    margin-bottom: 15px;
}

.footer-about .logo span {
    -webkit-text-fill-color: var(--white);
}

.footer-about p {
    color: var(--accent-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
    opacity: 0.85;
}

.footer-social {
    display: flex;
    gap: 12px;
}

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

.footer-social a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

.footer h4 {
    font-size: 1.15rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary);
    border-radius: 3px;
}

.footer-links a {
    display: block;
    color: var(--accent-light);
    padding: 6px 0;
    font-size: 0.95rem;
    opacity: 0.85;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--white);
    padding-left: 8px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--accent-light);
    font-size: 0.95rem;
    opacity: 0.85;
}

.footer-contact li i {
    color: var(--secondary);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    color: var(--accent-light);
    opacity: 0.7;
    font-size: 0.9rem;
}

/* =============================================
   WhatsApp Sabit Buton
   ============================================= */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    animation: float 3s ease-in-out infinite;
}

.whatsapp-float a {
    width: 65px;
    height: 65px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
    transition: var(--transition);
    position: relative;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float a::before {
    content: 'Sipariş Ver';
    position: absolute;
    right: 75px;
    background: var(--dark);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.whatsapp-float a:hover::before {
    opacity: 1;
}

/* =============================================
   Breadcrumb
   ============================================= */
.breadcrumb-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.breadcrumb-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M20 20c0-5.5-4.5-10-10-10S0 14.5 0 20s4.5 10 10 10 10-4.5 10-10z'/%3E%3C/g%3E%3C/svg%3E");
}

.breadcrumb-content {
    position: relative;
    z-index: 2;
}

.breadcrumb-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 10px;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.breadcrumb-nav a {
    color: var(--accent-light);
    opacity: 0.8;
}

.breadcrumb-nav a:hover {
    opacity: 1;
    color: var(--white);
}

.breadcrumb-nav span {
    color: var(--white);
}

.breadcrumb-nav i {
    color: var(--accent-light);
    opacity: 0.5;
    font-size: 0.75rem;
}

/* =============================================
   Ürün Detay Sayfası
   ============================================= */
.product-detail {
    padding: 60px 0;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.product-gallery {
    position: sticky;
    top: 100px;
}

.product-gallery-main {
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: var(--shadow);
    background: var(--gray-light);
}

.product-gallery-main img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-gallery-main:hover img {
    transform: scale(1.05);
}

.product-gallery-thumbs {
    display: flex;
    gap: 10px;
}

.product-gallery-thumbs img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: 3px solid transparent;
    transition: var(--transition);
}

.product-gallery-thumbs img:hover,
.product-gallery-thumbs img.active {
    border-color: var(--primary);
}

.product-info h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.product-info .category-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bg-light);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.product-price-detail {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--bg-lighter);
    border-radius: var(--radius-sm);
    border: 2px solid var(--bg-light);
}

.product-price-detail .current {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.product-price-detail .old {
    font-size: 1.2rem;
    color: var(--gray);
    text-decoration: line-through;
}

.product-price-detail .discount {
    background: var(--danger);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.product-description {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--gray-light);
}

.product-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.product-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.product-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bg-lighter);
    border-radius: var(--radius-sm);
}

.product-feature-item i {
    color: var(--secondary);
    font-size: 1.1rem;
}

.product-feature-item span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* =============================================
   Sayfa İçi Ürün Listesi (Kategori Sayfası)
   ============================================= */
.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.category-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-dark);
}

.product-count {
    color: var(--gray);
    font-size: 0.95rem;
}

/* =============================================
   Scroll to Top
   ============================================= */
.scroll-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
    z-index: 998;
    border: none;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* =============================================
   Boş Durum
   ============================================= */
.empty-state {
    text-align: center;
    padding: 80px 20px;
}

.empty-state i {
    font-size: 4rem;
    color: var(--accent-light);
    margin-bottom: 20px;
}

.empty-state h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.empty-state p {
    color: var(--gray);
    margin-bottom: 25px;
}

/* =============================================
   Responsive Tasarım
   ============================================= */
@media (max-width: 1024px) {
    .hero h1 { font-size: 2.5rem; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .product-detail-grid { grid-template-columns: 1fr; }
    .product-gallery { position: static; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .top-bar { display: none; }

    .hamburger { display: flex; }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 30px 30px;
        box-shadow: var(--shadow-xl);
        transition: var(--transition);
        z-index: 1000;
        gap: 5px;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        width: 100%;
        padding: 14px 18px;
    }

    .hero {
        min-height: auto;
        padding: 60px 0;
    }

    .hero h1 { font-size: 2rem; }
    .hero p { font-size: 1rem; }

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

    .hero-decoration { display: none; }

    .section { padding: 50px 0; }
    .section-header h2 { font-size: 1.8rem; }

    .categories-grid,
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
    }

    .featured-banner .container {
        flex-direction: column;
        text-align: center;
    }

    .featured-banner-text h2 { font-size: 1.6rem; }

    .about-features { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; }

    .product-actions { flex-direction: column; }
    .product-features { grid-template-columns: 1fr; }

    .breadcrumb-content h1 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
    .container { padding: 0 15px; }
    .hero h1 { font-size: 1.6rem; }
    .section-header h2 { font-size: 1.5rem; }
    .product-info h1 { font-size: 1.5rem; }

    .categories-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid { grid-template-columns: 1fr; }
}

/* =============================================
   Loading/Skeleton
   ============================================= */
.skeleton {
    background: linear-gradient(90deg, var(--gray-light), #e5e7eb, var(--gray-light));
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius-sm);
}

/* =============================================
   Slider / Carousel
   ============================================= */
.hero-slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background: var(--primary-dark);
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

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

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(27,67,50,0.7) 0%, rgba(27,67,50,0.3) 50%, transparent 100%);
    z-index: 2;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 3;
    max-width: 600px;
    padding: 60px;
    color: var(--white);
    animation: fadeInUp 0.8s ease-out;
}

.slide-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.slide-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
    line-height: 1.7;
}

.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-prev { left: 25px; }
.slider-next { right: 25px; }

.slider-prev:hover,
.slider-next:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-50%) scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dots .dot.active {
    background: var(--white);
    transform: scale(1.2);
}

.slider-dots .dot:hover {
    background: rgba(255,255,255,0.7);
}

@media (max-width: 768px) {
    .hero-slider { height: 400px; }
    .slide-content { padding: 30px; max-width: 100%; }
    .slide-content h2 { font-size: 1.8rem; }
    .slide-content p { font-size: 0.95rem; }
    .slider-prev, .slider-next { width: 40px; height: 40px; font-size: 1rem; }
    .slider-prev { left: 10px; }
    .slider-next { right: 10px; }
}

@media (max-width: 480px) {
    .hero-slider { height: 300px; }
    .slide-content h2 { font-size: 1.4rem; }
    .slider-prev, .slider-next { display: none; }
}

/* =============================================
   Dropdown Menü (Navbar)
   ============================================= */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-dropdown-toggle i.fa-chevron-down {
    font-size: 0.7rem;
    transition: var(--transition);
}

.nav-dropdown:hover .nav-dropdown-toggle i.fa-chevron-down {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1001;
    list-style: none;
}

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

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--dark);
    font-size: 0.9rem;
    font-weight: 400;
    transition: var(--transition);
}

.dropdown-menu li a:hover {
    background: var(--bg-light);
    color: var(--primary);
    padding-left: 25px;
}

.dropdown-menu li a::after {
    display: none;
}

@media (max-width: 768px) {
    .nav-dropdown { width: 100%; }
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        display: none;
        background: var(--bg-lighter);
        border-radius: 0;
        padding: 0;
    }
    .nav-dropdown.open .dropdown-menu { display: block; }
    .dropdown-menu li a { padding: 12px 30px; }
}

/* =============================================
   Alt Kategori Strip
   ============================================= */
.subcategory-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.subcategory-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: var(--white);
    border: 2px solid var(--primary-light);
    border-radius: 50px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.subcategory-chip:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 106, 79, 0.3);
}

.subcategory-chip img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

/* =============================================
   Sayfa İçeriği (Dinamik Sayfalar)
   ============================================= */
.page-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    font-size: 1.05rem;
    color: var(--dark);
}

.page-content h2,
.page-content h3,
.page-content h4 {
    color: var(--primary-dark);
    margin: 30px 0 15px;
    font-family: 'Playfair Display', serif;
}

.page-content p {
    margin-bottom: 20px;
}

.page-content img {
    border-radius: var(--radius);
    margin: 20px 0;
    box-shadow: var(--shadow);
}

.page-content ul, .page-content ol {
    margin: 15px 0 15px 25px;
}

.page-content li {
    margin-bottom: 8px;
}

.page-content a {
    color: var(--primary);
    text-decoration: underline;
}

.page-content a:hover {
    color: var(--secondary);
}

.page-content blockquote {
    border-left: 4px solid var(--secondary);
    padding: 15px 25px;
    margin: 20px 0;
    background: var(--bg-lighter);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--gray);
}

.page-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.page-content table th,
.page-content table td {
    border: 1px solid var(--gray-light);
    padding: 12px 16px;
    text-align: left;
}

.page-content table th {
    background: var(--bg-light);
    font-weight: 600;
}

/* =============================================
   Ürün Türü Badge Stilleri
   ============================================= */

.product-badge.download {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #fff;
}

.product-badge.blog {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
}

/* Blog Kart Meta */
.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 0.82rem;
    color: var(--gray);
}

.blog-card-meta i {
    margin-right: 3px;
}

.blog-card-meta a {
    color: var(--primary);
    text-decoration: none;
}

.blog-card-meta a:hover {
    text-decoration: underline;
}

.blog-card-category {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

/* =============================================
   İndirme Linkleri (Ürün Detay)
   ============================================= */

.product-links-list {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-light);
}

.product-links-list h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark);
}

.product-links-list h3 i {
    color: var(--primary);
    margin-right: 8px;
}

.links-table {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.link-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: var(--bg-lighter);
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray-light);
    transition: var(--transition);
}

.link-row:hover {
    border-color: var(--primary);
    background: var(--bg-light);
}

.link-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.link-title i {
    color: var(--primary);
}

/* =============================================
   Blog Listeleme Sayfası
   ============================================= */

.blog-listing {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.blog-card {
    display: grid;
    grid-template-columns: 350px 1fr;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.blog-card-img {
    display: block;
    overflow: hidden;
    position: relative;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    min-height: 250px;
}

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

.blog-card-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-card-body h2 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 12px 0;
    line-height: 1.4;
}

.blog-card-body h2 a {
    color: var(--dark);
    text-decoration: none;
    transition: var(--transition);
}

.blog-card-body h2 a:hover {
    color: var(--primary);
}

.blog-card-body p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.blog-read-more:hover {
    gap: 10px;
    color: var(--primary-dark);
}

/* =============================================
   Blog Yazı Detay
   ============================================= */

.blog-post-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: start;
}

.blog-post {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.blog-post-cover {
    width: 100%;
    max-height: 450px;
    overflow: hidden;
}

.blog-post-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-post-meta {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    padding: 25px 30px 0;
    font-size: 0.88rem;
    color: var(--gray);
}

.blog-post-meta i {
    margin-right: 4px;
}

.blog-post-meta a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.blog-post-meta a:hover {
    text-decoration: underline;
}

.blog-post-content {
    padding: 25px 30px 30px;
}

.blog-post-share {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 30px 30px;
    border-top: 1px solid var(--gray-light);
    margin: 0 30px;
}

.blog-post-share span {
    font-weight: 600;
    color: var(--dark);
}

.blog-post-share a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bg-lighter);
    color: var(--gray);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1rem;
}

.blog-post-share a:hover {
    background: var(--primary);
    color: var(--white);
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: 30px;
}

.blog-sidebar-widget {
    background: var(--white);
    border-radius: var(--radius);
    padding: 25px;
    box-shadow: var(--shadow);
}

.blog-sidebar-widget h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--bg-light);
    color: var(--dark);
}

.blog-sidebar-widget h3 i {
    color: var(--primary);
    margin-right: 8px;
}

.blog-sidebar-post {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-light);
    text-decoration: none;
    transition: var(--transition);
}

.blog-sidebar-post:last-child {
    border-bottom: none;
}

.blog-sidebar-post:hover {
    opacity: 0.85;
}

.blog-sidebar-post img {
    width: 70px;
    height: 55px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.blog-sidebar-post h4 {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.4;
    margin-bottom: 4px;
}

.blog-sidebar-post span {
    font-size: 0.78rem;
    color: var(--gray);
}

/* Sidebar Kategori Listesi */
.sidebar-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-category-list li {
    border-bottom: 1px solid var(--gray-light);
}

.sidebar-category-list li:last-child {
    border-bottom: none;
}

.sidebar-category-list a {
    display: flex;
    align-items: center;
    padding: 10px 0;
    color: var(--dark);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.sidebar-category-list a::before {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.65rem;
    margin-right: 10px;
    color: var(--primary);
    transition: var(--transition);
}

.sidebar-category-list a:hover {
    color: var(--primary);
    padding-left: 5px;
}

/* Sidebar widget arası boşluk */
.blog-sidebar-widget + .blog-sidebar-widget {
    margin-top: 25px;
}

/* =============================================
   Responsive: Blog & Download
   ============================================= */

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

    .blog-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .blog-card {
        grid-template-columns: 1fr;
    }

    .blog-card-img img {
        min-height: 200px;
        max-height: 250px;
    }

    .blog-card-body {
        padding: 20px;
    }

    .blog-post-meta {
        padding: 20px 20px 0;
        gap: 10px;
    }

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

    .blog-post-share {
        margin: 0 20px;
        padding: 15px 0 20px;
    }

    .blog-post-cover {
        max-height: 280px;
    }

    .link-row {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .product-card-footer .blog-card-meta {
        font-size: 0.75rem;
        gap: 8px;
    }
}

/* =============================================
   İletişim Sayfası
   ============================================= */

.contact-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

.contact-form-wrapper h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.contact-form-wrapper h2 i {
    color: var(--secondary);
    margin-right: 8px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form .form-group label {
    display: block;
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--dark);
}

.contact-form .form-group label i {
    color: var(--primary);
    margin-right: 6px;
    width: 16px;
    text-align: center;
}

.contact-form .form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-sm);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--white);
}

.contact-form .form-control:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(82, 183, 136, 0.15);
}

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

/* İletişim Sidebar */
.contact-sidebar {
    position: sticky;
    top: 100px;
}

.contact-info-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    margin-bottom: 25px;
}

.contact-info-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--bg-light);
}

.contact-info-card h3 i {
    color: var(--secondary);
    margin-right: 8px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--gray-light);
}

.contact-info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-info-item > i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    color: var(--primary);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-info-item strong {
    display: block;
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 500;
    margin-bottom: 4px;
}

.contact-info-item span,
.contact-info-item a {
    font-size: 0.95rem;
    color: var(--dark);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

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

/* Harita */
.contact-map {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.contact-map iframe {
    width: 100%;
    height: 280px;
    border: none;
    display: block;
}

/* Alert */
.contact-form-wrapper .alert {
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-form-wrapper .alert-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.contact-form-wrapper .alert-danger {
    background: #fecaca;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* Responsive: İletişim */
@media (max-width: 992px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 25px;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .contact-info-card {
        padding: 25px;
    }
}
