﻿/* ============================================
   🎯¨ MODERN PREMIUM CORPORATE THEME 2024
   ============================================
   Glassmorphism â€¢ Gradient â€¢ Modern UI/UX
   Tamamen Sıfırdan Yeni Tasarım
   ============================================ */

/* ============================================
   CSS VARIABLES - Modern Design System
   ============================================ */
:root {
    /* Premium Gradient Colors */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-dark: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    
    /* Solid Colors */
    --primary: #667eea;
    --primary-dark: #5568d3;
    --primary-light: #8b9eff;
    --secondary: #764ba2;
    --accent: #f5576c;
    --accent-light: #f093fb;
    
    /* Neutral Colors */
    --white: #ffffff;
    --black: #0a0a0a;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #eeeeee;
    --gray-300: #e0e0e0;
    --gray-400: #bdbdbd;
    --gray-500: #9e9e9e;
    --gray-600: #757575;
    --gray-700: #616161;
    --gray-800: #424242;
    --gray-900: #212121;
    --dark: #1a1a2e;
    --darker: #0f0f1e;
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    
    /* Typography */
    --font-primary: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Poppins', var(--font-primary);
    
    /* Spacing Scale */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    --radius-2xl: 3rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 64px rgba(0, 0, 0, 0.24);
    --shadow-2xl: 0 24px 80px rgba(0, 0, 0, 0.32);
    --shadow-glow: 0 0 30px rgba(102, 126, 234, 0.5);
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Container */
    --container-max: 1400px;
}

/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: var(--space-md);
}

h1 { 
    font-size: clamp(2.5rem, 5vw, 4rem); 
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 { 
    font-size: clamp(2rem, 4vw, 3rem); 
    font-weight: 700;
}

h3 { 
    font-size: clamp(1.5rem, 3vw, 2rem); 
    font-weight: 600;
}

h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: var(--space-md);
    color: var(--gray-700);
    line-height: 1.8;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: all var(--transition-base);
}

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

/* ============================================
   CONTAINER
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-md);
    }
}

/* ============================================
   TOP BAR - Glassmorphism Style
   ============================================ */
.top-bar {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--space-sm) 0;
    font-size: 0.875rem;
    position: relative;
    z-index: 1001;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.top-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(102, 126, 234, 0.1) 50%, transparent 100%);
    pointer-events: none;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: var(--space-lg);
    min-width: 0;
    position: relative;
    z-index: 1;
}

.top-bar-left {
    flex: 0 1 auto;
    min-width: 0;
    overflow: hidden;
}

.top-bar-left span {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: clamp(0.75rem, 1.3vw, 0.9rem);
    display: block;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    flex-wrap: nowrap;
    flex: 0 1 auto;
    min-width: 0;
    overflow: hidden;
}

.top-bar-right a,
.top-bar-right span {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    transition: all var(--transition-base);
    font-weight: 500;
    white-space: nowrap;
    font-size: clamp(0.75rem, 1.3vw, 0.9rem);
    flex-shrink: 1;
    min-width: 0;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-md);
    position: relative;
}

.top-bar-right a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.top-bar-right a:hover::before {
    opacity: 1;
}

.top-bar-right a:hover {
    color: var(--white);
    transform: translateY(-1px);
}

.top-bar-right a i {
    font-size: 0.9em;
    opacity: 0.9;
    transition: all var(--transition-base);
}

.top-bar-right a:hover i {
    opacity: 1;
    transform: scale(1.1);
}

.top-bar-right a[href^="tel:"] i {
    color: #4ade80;
}

.top-bar-right a[href^="mailto:"] i {
    color: #60a5fa;
}

.top-bar-right a[href*="whatsapp"] i {
    color: #25d366;
}

/* Separator */
.top-bar-right a:not(:last-child)::after {
    content: '';
    position: absolute;
    right: calc(var(--space-lg) * -1);
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
}

.top-cta-btn {
    background: var(--gradient-accent) !important;
    color: var(--white) !important;
    padding: var(--space-xs) var(--space-md) !important;
    border-radius: var(--radius-full) !important;
    font-weight: 600 !important;
    box-shadow: var(--shadow-md) !important;
    transition: all var(--transition-base) !important;
    border: none !important;
}

.top-cta-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: var(--shadow-lg) !important;
    color: var(--white) !important;
}

/* ============================================
   HEADER - Modern Glassmorphism
   ============================================ */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all var(--transition-base);
    border-bottom: 1px solid var(--gray-200);
}

.header.scrolled {
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, 0.98);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) var(--space-lg);
    gap: var(--space-xl);
    min-width: 0;
    overflow: hidden;
}

/* Logo */
.logo {
    flex: 0 0 auto;
    min-width: 0;
    overflow: hidden;
}

.logo a {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: clamp(1.2rem, 2.5vw, 1.75rem);
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transition: transform var(--transition-base);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.logo a:hover {
    transform: scale(1.05);
}

.logo img {
    max-height: 55px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

/* Navigation */
.nav {
    flex: 1 1 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: var(--space-lg);
    min-width: 0;
    overflow: hidden;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: clamp(0.5rem, 1vw, var(--space-md));
    align-items: center;
    flex-wrap: nowrap;
    min-width: 0;
    overflow: hidden;
}

.nav-menu li {
    position: relative;
    flex: 0 1 auto;
    min-width: 0;
}

.nav-menu a {
    display: flex;
    align-items: center;
    padding: var(--space-sm) clamp(0.5rem, 1vw, var(--space-md));
    color: var(--dark);
    font-weight: 600;
    font-size: clamp(0.8rem, 1.5vw, 0.95rem);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    min-width: 0;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left var(--transition-base);
    z-index: -1;
    border-radius: var(--radius-md);
}

.nav-menu a:hover::before,
.nav-menu a.active::before {
    left: 0;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--white);
    transform: translateY(-2px);
}

/* CTA Button */
.cta-button {
    background: var(--gradient-primary);
    color: var(--white) !important;
    padding: var(--space-sm) clamp(0.75rem, 2vw, var(--space-xl)) !important;
    border-radius: var(--radius-full) !important;
    font-weight: 600 !important;
    font-size: clamp(0.8rem, 1.5vw, 0.95rem) !important;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base) !important;
    border: none;
    position: relative;
    overflow: hidden;
    white-space: nowrap !important;
    flex: 0 0 auto !important;
    min-width: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: var(--space-xs) !important;
    text-decoration: none !important;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-xl);
    color: var(--white) !important;
}

/* Mobile Menu Toggle */
.mobile-menu-btn {
    display: none;
    background: var(--gradient-primary);
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
}

.mobile-menu-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

/* Mobile Menu */
@media (max-width: 992px) {
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        padding: var(--space-2xl) var(--space-lg);
        box-shadow: var(--shadow-2xl);
        transition: right var(--transition-base);
        z-index: 9999;
        overflow-y: auto;
        gap: var(--space-sm);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        width: 100%;
        padding: var(--space-md);
        border-radius: var(--radius-lg);
    }
    
    .cta-button {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* ============================================
   MAIN CONTENT
   ============================================ */
main {
    min-height: 60vh;
    background: var(--white);
}

/* ============================================
   FOOTER - Modern Gradient
   ============================================ */
.footer {
    background: var(--gradient-dark);
    color: rgba(255, 255, 255, 0.9);
    padding: var(--space-3xl) 0 var(--space-xl);
    margin-top: var(--space-3xl);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
    z-index: 0;
}

.footer .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.footer h3 {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--space-lg);
    position: relative;
    padding-bottom: var(--space-sm);
}

.footer h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: var(--radius-full);
}

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

.footer ul li {
    margin-bottom: var(--space-sm);
}

.footer ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all var(--transition-base);
    display: inline-block;
    font-weight: 500;
}

.footer ul li a:hover {
    color: var(--white);
    padding-left: var(--space-xs);
    transform: translateX(5px);
}

.footer p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.contact-info {
    color: rgba(255, 255, 255, 0.9);
}

.contact-info p {
    margin-bottom: var(--space-sm);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.social-links {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: 1.25rem;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
}

.social-link:hover {
    background: var(--gradient-accent);
    transform: translateY(-5px) rotate(5deg);
    box-shadow: var(--shadow-glow);
    color: var(--white) !important;
    border-color: transparent;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-lg);
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin: 0;
}

/* ============================================
   HERO SLIDER - Modern Full Screen
   ============================================ */
.hero-section {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
    background: var(--gradient-hero);
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-slow), visibility var(--transition-slow);
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.85) 0%, rgba(102, 126, 234, 0.6) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: var(--space-2xl) 0;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: var(--space-lg);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--space-xl);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--space-xl);
}

.hero-btn {
    padding: var(--space-md) var(--space-2xl);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all var(--transition-base);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    box-shadow: var(--shadow-lg);
    border: 2px solid transparent;
}

.hero-btn-primary {
    background: var(--white);
    color: var(--primary);
    box-shadow: var(--shadow-xl);
}

.hero-btn-primary:hover {
    background: var(--gradient-accent);
    color: var(--white);
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-2xl);
}

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    color: var(--white);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-prev,
.hero-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 55px;
    height: 55px;
    border-radius: var(--radius-full);
    font-size: 1.25rem;
    cursor: pointer;
    z-index: 10;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.hero-prev {
    left: var(--space-lg);
}

.hero-next {
    right: var(--space-lg);
}

.hero-prev:hover,
.hero-next:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-xl);
}

.hero-pagination {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--space-sm);
    z-index: 10;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all var(--transition-base);
    padding: 0;
}

.hero-dot.active {
    background: var(--white);
    width: 35px;
    border-color: var(--white);
}

@media (max-width: 768px) {
    .hero-section {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-prev,
    .hero-next {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .hero-prev {
        left: var(--space-sm);
    }
    
    .hero-next {
        right: var(--space-sm);
    }
}

/* ============================================
   SERVICES SECTION - Premium Professional Cards
   ============================================ */
.services-section {
    padding: var(--space-3xl) 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9ff 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(118, 75, 162, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.services-section .container {
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: var(--space-3xl);
    position: relative;
    padding-bottom: var(--space-lg);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 6px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.services-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: var(--space-2xl);
    margin-top: var(--space-2xl);
    align-items: start;
}

/* Premium Sidebar */
.services-sidebar {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-2xl);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    height: fit-content;
    position: sticky;
    top: 140px;
    border: 2px solid var(--gray-100);
    backdrop-filter: blur(10px);
    transition: all var(--transition-base);
}

.services-sidebar:hover {
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.15);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.service-categories {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.category-item {
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-lg);
    color: var(--gray-700);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all var(--transition-base);
    border: 2px solid transparent;
    background: linear-gradient(to right, var(--gray-50), var(--white));
    position: relative;
    display: block;
    width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    line-height: 1.5;
    overflow: hidden;
}

.category-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transition: transform var(--transition-base);
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    z-index: 1;
}

.category-item:hover::before,
.category-item.active::before {
    transform: scaleY(1);
}

.category-item::after {
    content: '';
    opacity: 0;
    transition: all var(--transition-base);
}

.category-item:hover::after,
.category-item.active::after {
    opacity: 1;
}

.category-item:hover,
.category-item.active {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    color: var(--primary);
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.category-item.active {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
    font-weight: 700;
}

.category-item.active::after {
    color: var(--white);
}

/* Premium Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    padding: var(--space-md) 0;
}

.service-item {
    background: var(--white);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-base);
    border: 2px solid var(--gray-100);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-slow);
    z-index: 1;
    pointer-events: none;
}

.service-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-slow);
    z-index: 2;
    pointer-events: none;
}

.service-item:hover::before {
    opacity: 0.03;
}

.service-item:hover::after {
    opacity: 1;
}

.service-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.25);
    border-color: var(--primary);
}

.service-item a {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    position: relative;
    z-index: 3;
    height: 100%;
}

.service-image {
    position: relative;
    width: 100%;
    padding-top: 70%;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
    pointer-events: none;
}

.service-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
    filter: brightness(1) saturate(1.1);
}

.service-item:hover .service-image img {
    transform: scale(1.2) rotate(2deg);
    filter: brightness(1.1) saturate(1.2);
}

.service-item h3 {
    padding-left:10px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
    transition: all var(--transition-base);
    position: relative;
    z-index: 2;
    line-height: 1.3;
    flex-grow: 1;
    display: flex;
    align-items: center;
    min-height: 80px;
    background: var(--white);
}

.service-item:hover h3 {
    color: var(--primary);
    background: linear-gradient(to bottom, var(--white) 0%, rgba(102, 126, 234, 0.02) 100%);
}

@media (max-width: 1400px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-lg);
    }
}

@media (max-width: 1200px) {
    .services-layout {
        grid-template-columns: 340px 1fr;
        gap: var(--space-xl);
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-lg);
    }
}

@media (max-width: 992px) {
    .services-layout {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .services-sidebar {
        position: static;
        margin-bottom: var(--space-xl);
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: var(--space-lg);
    }
    
    .gallery-grid-wrapper {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: var(--space-lg);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .gallery-grid-wrapper {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .services-sidebar {
        padding: var(--space-lg);
    }
    
    .category-item {
        padding: var(--space-sm) var(--space-md);
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   GALLERY SECTION - Premium Professional Grid
   ============================================ */
.gallery-grid-section {
    padding: var(--space-3xl) 0;
    background: linear-gradient(180deg, #ffffff 0%, #fafbff 100%);
    position: relative;
}

.gallery-grid-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(102, 126, 234, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(118, 75, 162, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.gallery-grid-section .container {
    position: relative;
    z-index: 1;
}

.gallery-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--space-xl);
    padding: var(--space-md) 0;
}

.gallery-grid-item {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-base);
    background: var(--white);
    aspect-ratio: 4/3;
    border: 3px solid transparent;
}

.gallery-grid-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-slow);
    z-index: 2;
    pointer-events: none;
}

    .gallery-grid-item::after {
        content: '👁️ GÖrüntüle';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0.8);
        color: var(--white);
        font-weight: 700;
        font-size: 1.1rem;
        opacity: 0;
        transition: all var(--transition-base);
        z-index: 3;
        pointer-events: none;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        white-space: nowrap;
    }

.gallery-grid-item:hover::before {
    opacity: 0.85;
}

.gallery-grid-item:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.gallery-grid-item:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 70px rgba(102, 126, 234, 0.35);
    border-color: var(--primary);
}

.gallery-grid-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: var(--gradient-primary);
}

.gallery-grid-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
    filter: brightness(1) contrast(1.05);
}

.gallery-grid-item:hover .gallery-grid-image img {
    transform: scale(1.25) rotate(1deg);
    filter: brightness(1.1) contrast(1.1);
}

/* Gallery Modal */
.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
}

.gallery-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.gallery-modal-content {
    position: relative;
    z-index: 2;
    max-width: 90vw;
    max-height: 90vh;
    width: 100%;
    background: var(--white);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.gallery-modal-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: var(--radius-full);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.gallery-modal-close:hover {
    background: var(--accent);
    transform: rotate(90deg) scale(1.1);
}

.gallery-modal-header {
    padding-left:30px;
    border-bottom: 1px solid var(--gray-200);
    background: var(--white);
    height:30px;
}

.gallery-modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: var(--space-sm);
}

.gallery-modal-description {
    color: var(--gray-600);
}

.gallery-modal-slider {
    position: relative;
    width: 100%;
    height: 550px;
    background: var(--gray-900);
}

.gallery-modal-slides {
    width: 100%;
    height: 100%;
    position: relative;
}

.gallery-modal-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-xl);
}

.gallery-modal-slide.active {
    opacity: 1;
    visibility: visible;
}

.gallery-modal-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-2xl);
}

.gallery-modal-prev,
.gallery-modal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 55px;
    height: 55px;
    border-radius: var(--radius-full);
    font-size: 1.25rem;
    cursor: pointer;
    z-index: 10;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.gallery-modal-prev {
    left: var(--space-lg);
}

.gallery-modal-next {
    right: var(--space-lg);
}

.gallery-modal-prev:hover,
.gallery-modal-next:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-xl);
}

.gallery-modal-pagination {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--space-sm);
    z-index: 10;
}

.pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all var(--transition-base);
    padding: 0;
}

.pagination-dot.active {
    background: var(--white);
    width: 35px;
    border-color: var(--white);
}

.gallery-modal-page-link {
    display: block;
    padding: var(--space-md) var(--space-xl);
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
}

.gallery-modal-page-link:hover {
    background: var(--gradient-accent);
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
    .gallery-grid-wrapper {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: var(--space-md);
    }
    
    .gallery-modal-content {
        max-width: 95vw;
        max-height: 95vh;
    }
    
    .gallery-modal-slider {
        height: 400px;
    }
}

/* ============================================
   BLOG LIST SECTION - Premium Professional
   ============================================ */
.blog-list-section {
    padding: var(--space-3xl) 0;
    background: linear-gradient(180deg, #ffffff 0%, #fafbff 100%);
    min-height: 60vh;
}

.blog-list-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
    padding-bottom: var(--space-xl);
    border-bottom: 3px solid;
    border-image: var(--gradient-primary) 1;
}

.blog-page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-lg);
}

.blog-list-main {
    max-width: 1400px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--gray-100);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-slow);
    z-index: 1;
    pointer-events: none;
}

.blog-card:hover::before {
    opacity: 0.03;
}

.blog-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.25);
    border-color: var(--primary);
}

.blog-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    height: 100%;
    position: relative;
    z-index: 2;
}

.blog-image {
    position: relative;
    width: 100%;
    padding-top: 60%;
    overflow: hidden;
    background: var(--gradient-primary);
}

.blog-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
    pointer-events: none;
}

.blog-image-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
    filter: brightness(1) saturate(1.1);
}

.blog-card:hover .blog-image-img {
    transform: scale(1.2) rotate(2deg);
    filter: brightness(1.1) saturate(1.2);
}

.blog-category-tag {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    background: var(--gradient-primary);
    color: var(--white);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.blog-content {
    padding: var(--space-xl);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: var(--white);
}

.blog-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: var(--space-md);
    line-height: 1.3;
    transition: color var(--transition-base);
}

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

.blog-excerpt {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
    flex-grow: 1;
}

.blog-author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-top: auto;
}

.pagination-wrapper {
    margin-top: var(--space-3xl);
    padding-top: var(--space-xl);
    border-top: 2px solid var(--gray-200);
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.pagination-link {
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 600;
    transition: all var(--transition-base);
    border: 2px solid var(--gray-300);
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
}

.pagination-link:hover {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.pagination-numbers {
    display: flex;
    gap: var(--space-xs);
}

.pagination-number {
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 600;
    transition: all var(--transition-base);
    border: 2px solid var(--gray-300);
    min-width: 44px;
    text-align: center;
    display: inline-block;
}

.pagination-number:hover,
.pagination-number.active {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: var(--space-lg);
    }
}

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

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb-section,
.cephe-breadcrumb {
    padding: var(--space-lg) 0;
    background: linear-gradient(to right, var(--gray-50), var(--white));
    border-bottom: 1px solid var(--gray-200);
}

.breadcrumb,
.cephe-breadcrumb ol {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: var(--space-sm);
    flex-wrap: wrap;
    align-items: center;
}

.breadcrumb li,
.cephe-breadcrumb li {
    display: flex;
    align-items: center;
    color: var(--gray-600);
    font-size: 0.875rem;
}

.breadcrumb li:not(:last-child)::after,
.cephe-breadcrumb li:not(:last-child)::after {
    content: '›';
    margin-left: var(--space-sm);
    color: var(--gray-400);
    font-weight: bold;
}

.breadcrumb li a,
.cephe-breadcrumb li a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition-base);
    font-weight: 500;
}

.breadcrumb li a:hover,
.cephe-breadcrumb li a:hover {
    color: var(--primary-dark);
}

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

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    padding: var(--space-3xl) 0;
    background: linear-gradient(to bottom, var(--white) 0%, var(--gray-50) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-title-small {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 3px solid;
    border-image: var(--gradient-primary) 1;
}

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.contact-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    text-align: center;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-lg);
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-glow);
}

.contact-icon.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.contact-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: var(--space-md);
}

.contact-card p {
    font-size: 1rem;
    color: var(--gray-700);
    margin: 0;
    line-height: 1.7;
}

.contact-card a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition-base);
    font-weight: 600;
}

.contact-card a:hover {
    color: var(--primary-dark);
    text-decoration: none;
}

.contact-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    margin-top: var(--space-2xl);
    align-items: stretch;
}

@media (max-width: 968px) {
    .contact-content-grid {
        grid-template-columns: 1fr;
    }
}

.contact-forms-section {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-form-wrapper {
    margin-bottom: var(--space-xl);
}

.contact-form-wrapper:last-child {
    margin-bottom: 0;
}

.form-header {
    margin-bottom: var(--space-lg);
}

.form-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: var(--space-sm);
}

.form-field {
    margin-bottom: var(--space-lg);
}

.form-field label {
    display: block;
    margin-bottom: var(--space-xs);
    font-weight: 600;
    color: var(--dark);
    font-size: 0.95rem;
}

.form-field label .required {
    color: var(--accent);
    margin-left: 3px;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field input[type="url"],
.form-field textarea,
.form-control {
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-family: inherit;
    transition: all var(--transition-base);
    background: var(--white);
    color: var(--dark);
}

.form-field input:focus,
.form-field textarea:focus,
.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

.form-field.field-error {
    animation: shake 0.5s;
}

.form-field.field-error label {
    color: var(--accent);
    font-weight: 700;
}

.field-error-input,
.form-field.field-error input,
.form-field.field-error textarea {
    border-color: var(--accent) !important;
    background-color: #fff5f5;
    box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.1);
}

.field-error-input:focus,
.form-field.field-error input:focus,
.form-field.field-error textarea:focus {
    border-color: var(--accent) !important;
    box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.2);
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

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

.captcha-wrapper {
    margin: var(--space-xl) 0;
    padding: var(--space-lg);
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray-300);
    position: relative;
}

.captcha-label {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: var(--space-md);
    font-size: 0.95rem;
}

.captcha-container {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.captcha-image-wrapper {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    flex-shrink: 0;
}

.captcha-image {
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    user-select: none;
    transition: all var(--transition-base);
    cursor: pointer;
}

.captcha-image:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
    transform: scale(1.05);
}

.captcha-input-wrapper {
    flex: 1;
    min-width: 200px;
}

.captcha-input {
    width: 100%;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    padding: var(--space-md);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.btn-captcha-refresh {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-base);
    font-size: 1rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.btn-captcha-refresh:hover {
    transform: rotate(180deg) scale(1.1);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.btn-submit {
    padding: var(--space-md) var(--space-2xl);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-submit:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-xl);
    background: var(--gradient-accent);
    color: var(--white);
}

.alert {
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    border: 1px solid transparent;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border-color: #c3e6cb;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border-color: #f5c6cb;
}

.alert-info {
    background: #d1ecf1;
    color: #0c5460;
    border-color: #bee5eb;
}

.contact-map-section {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-map-section > div:first-child {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
    gap: var(--space-md);
}

.contact-map {
    width: 100%;
    flex: 1;
    min-height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid var(--gray-200);
    box-shadow: var(--shadow-md);
}

.btn-directions {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    transition: all var(--transition-base);
    text-decoration: none;
    box-shadow: var(--shadow-md);
}

.btn-directions:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-xl);
    background: var(--gradient-accent);
    color: var(--white);
}

/* ============================================
   BLOG LIST SECTION
   ============================================ */
.blog-list-section {
    padding: var(--space-3xl) 0;
    background: var(--white);
}

.blog-list-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.blog-page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-md);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 2px solid var(--gray-200);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.blog-image {
    position: relative;
    width: 100%;
    padding-top: 60%;
    overflow: hidden;
    background: var(--gradient-primary);
}

.blog-image-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.blog-category-tag {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    background: var(--gradient-primary);
    color: var(--white);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.blog-content {
    padding: var(--space-xl);
}

.blog-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: var(--space-md);
    line-height: 1.3;
    transition: color var(--transition-base);
}

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

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.pagination-link,
.pagination-number {
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 600;
    transition: all var(--transition-base);
    border: 2px solid var(--gray-300);
    min-width: 44px;
    text-align: center;
}

.pagination-link:hover,
.pagination-number:hover,
.pagination-number.active {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* ============================================
   PAGE & POST CONTENT - Premium Professional
   ============================================ */
.cephe-page,
.post-content {
    padding: var(--space-3xl) 0;
    background: linear-gradient(180deg, #ffffff 0%, #fafbff 50%, #ffffff 100%);
    min-height: 60vh;
}

.cephe-content-section {
    padding: var(--space-2xl) 0;
}

.cephe-page-layout-row {
    display: flex;
    gap: var(--space-2xl);
    align-items: flex-start;
}

/* Premium Sidebar */
.cephe-sidebar-left {
    flex: 0 0 380px;
    max-width: 380px;
    min-width: 380px;
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-2xl);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    height: fit-content;
    position: sticky;
    top: 140px;
    border: 2px solid var(--gray-100);
}

.cephe-category-menu-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 3px solid;
    border-image: var(--gradient-primary) 1;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cephe-category-menu-item {
    margin-bottom: var(--space-xs);
}

.cephe-category-menu-item a {
    display: block;
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-lg);
    color: var(--gray-700);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-base);
    border: 2px solid transparent;
    background: linear-gradient(to right, var(--gray-50), var(--white));
    position: relative;
    width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    line-height: 1.5;
    overflow: hidden;
}

.cephe-category-menu-item a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transition: transform var(--transition-base);
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    z-index: 1;
}

.cephe-category-menu-item a:hover::before,
.cephe-category-menu-item a.active::before {
    transform: scaleY(1);
}

.cephe-category-menu-item a:hover,
.cephe-category-menu-item a.active {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    color: var(--primary);
    transform: translateX(8px);
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
    padding-left: var(--space-xl);
}

.cephe-category-menu-item a.active {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
    font-weight: 700;
}

/* Page Content */
.cephe-page-wrapper {
    flex: 1;
    background: var(--white);
    padding: var(--space-2xl);
    border-radius: var(--radius-2xl);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--gray-100);
}

.cephe-page-header,
.post-header {
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-xl);
    border-bottom: 3px solid;
    border-image: var(--gradient-primary) 1;
}

.cephe-page-title,
.post-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-lg);
    line-height: 1.2;
}

.cephe-page-meta,
.post-meta-top {
    display: flex;
    gap: var(--space-lg);
    flex-wrap: wrap;
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-top: var(--space-md);
}

.cephe-page-meta span,
.post-meta-top span {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-md);
    background: var(--gray-50);
    border-radius: var(--radius-full);
    font-weight: 500;
}

.cephe-page-body,
.post-body {
    margin-top: var(--space-2xl);
}

.cephe-content-wrapper,
.post-content-wrapper {
    color: var(--gray-700);
    line-height: 1.9;
    font-size: 1.1rem;
}

.cephe-content-wrapper h1,
.cephe-content-wrapper h2,
.cephe-content-wrapper h3,
.cephe-content-wrapper h4,
.post-content-wrapper h1,
.post-content-wrapper h2,
.post-content-wrapper h3,
.post-content-wrapper h4 {
    color: var(--dark);
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-md);
    font-weight: 700;
}

.cephe-content-wrapper h2,
.post-content-wrapper h2 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2rem;
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--gray-200);
}

.cephe-content-wrapper p,
.post-content-wrapper p {
    margin-bottom: var(--space-lg);
    text-align: justify;
}

.cephe-content-wrapper img,
.post-content-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    margin: var(--space-xl) 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 3px solid var(--gray-100);
    transition: transform var(--transition-base);
}

.cephe-content-wrapper img:hover,
.post-content-wrapper img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.25);
    border-color: var(--primary);
}

.cephe-content-wrapper table,
.post-content-wrapper table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--space-xl) 0;
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
}

.cephe-content-wrapper table th,
.post-content-wrapper table th {
    background: var(--gradient-primary);
    color: var(--white);
    padding: var(--space-md);
    text-align: left;
    font-weight: 700;
}

.cephe-content-wrapper table td,
.post-content-wrapper table td {
    padding: var(--space-md);
    border-bottom: 1px solid var(--gray-200);
}

.cephe-content-wrapper table tr:hover,
.post-content-wrapper table tr:hover {
    background: rgba(102, 126, 234, 0.05);
}

.post-featured-image {
    margin: var(--space-2xl) 0;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border: 4px solid var(--gray-100);
    transition: transform var(--transition-base);
}

.post-featured-image:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 70px rgba(102, 126, 234, 0.3);
    border-color: var(--primary);
}

.post-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.related-post-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-base);
    border: 2px solid var(--gray-200);
}

.related-post-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.25);
    border-color: var(--primary);
}

/* ============================================
   ABOUT SECTION - Premium Professional
   ============================================ */
.about-section {
    padding: var(--space-3xl) 0;
    background: linear-gradient(180deg, #fafbff 0%, #ffffff 100%);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 80% 20%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(118, 75, 162, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.about-section .container {
    position: relative;
    z-index: 1;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.about-text {
    color: var(--gray-700);
    line-height: 1.9;
    font-size: 1.15rem;
    padding: var(--space-xl);
    background: var(--white);
    border-radius: var(--radius-2xl);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--gray-100);
}

.about-text h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-lg);
    line-height: 1.2;
}

.about-text p {
    margin-bottom: var(--space-lg);
    text-align: justify;
}

.about-image {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border: 4px solid var(--gray-100);
    transition: all var(--transition-base);
    transform: perspective(1000px) rotateY(-3deg);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: 1;
    pointer-events: none;
}

.about-image:hover::before {
    opacity: 0.1;
}

.about-image:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.03);
    box-shadow: 0 25px 70px rgba(102, 126, 234, 0.3);
    border-color: var(--primary);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
    transition: transform var(--transition-base);
}

.about-image:hover img {
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .about-image {
        order: -1;
        transform: none;
    }
    
    .about-image:hover {
        transform: scale(1.03);
    }
    
    .about-text {
        padding: var(--space-lg);
    }
}

/* ============================================
   GALLERY SECTION IN PAGE - Premium
   ============================================ */
.cephe-gallery-section {
    margin-top: var(--space-3xl);
    padding-top: var(--space-2xl);
    border-top: 3px solid;
    border-image: var(--gradient-primary) 1;
}

.cephe-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: var(--space-xl);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cephe-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.cephe-gallery-item {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-base);
    border: 3px solid var(--gray-100);
    aspect-ratio: 4/3;
}

.cephe-gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
    border-color: var(--primary);
}

.cephe-gallery-link {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.cephe-gallery-link img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
    filter: brightness(1) contrast(1.05);
}

.cephe-gallery-item:hover .cephe-gallery-link img {
    transform: scale(1.25) rotate(1deg);
    filter: brightness(1.1) contrast(1.1);
}

.cephe-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.85) 0%, rgba(118, 75, 162, 0.85) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: 2;
}

.cephe-gallery-item:hover .cephe-gallery-overlay {
    opacity: 1;
}

.cephe-gallery-zoom {
    background: var(--white);
    color: var(--primary);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    font-size: 1.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-xl);
    font-weight: bold;
}

.cephe-gallery-zoom:hover {
    background: var(--gradient-accent);
    color: var(--white);
    transform: scale(1.2) rotate(90deg);
    box-shadow: var(--shadow-2xl);
}

@media (max-width: 768px) {
    .cephe-gallery {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
}

/* ============================================
   CATEGORY SECTION - Premium Professional
   ============================================ */
.category-section {
    padding: var(--space-3xl) 0;
    background: linear-gradient(180deg, #ffffff 0%, #fafbff 100%);
    min-height: 60vh;
}

.category-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
    padding-bottom: var(--space-xl);
    border-bottom: 3px solid;
    border-image: var(--gradient-primary) 1;
}

.category-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-lg);
}

.category-description {
    font-size: 1.2rem;
    color: var(--gray-600);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.category-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.category-main {
    width: 100%;
}

.category-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.category-service-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--gray-100);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.category-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-base);
    z-index: 1;
}

.category-service-card:hover::before {
    transform: scaleX(1);
}

.category-service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: 0;
}

.category-service-card:hover::after {
    opacity: 1;
}

.category-service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
    border-color: var(--primary);
}

.service-card-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: var(--space-md);
    line-height: 1.3;
    position: relative;
    z-index: 2;
    transition: color var(--transition-base);
}

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

.service-card-description {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

.service-card-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md) var(--space-2xl);
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 2;
    width: fit-content;
    margin-top: auto;
}

.service-card-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-xl);
    background: var(--gradient-accent);
    color: var(--white);
}

.no-posts {
    text-align: center;
    padding: var(--space-3xl);
    background: var(--white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
    color: var(--gray-600);
    font-size: 1.2rem;
    border: 2px dashed var(--gray-300);
}

@media (max-width: 992px) {
    .category-services-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: var(--space-lg);
    }
    
    .cephe-page-layout-row {
        flex-direction: column;
    }
    
    .cephe-sidebar-left {
        flex: 1;
        max-width: 100%;
        position: static;
        margin-bottom: var(--space-xl);
    }
    
    .cephe-page-wrapper {
        padding: var(--space-lg);
    }
}

@media (max-width: 768px) {
    .category-services-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .category-service-card {
        padding: var(--space-xl);
    }
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 576px) {
    .container {
        padding: 0 var(--space-md);
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .header,
    .footer,
    .top-bar,
    .mobile-menu-btn,
    .hero-prev,
    .hero-next,
    .hero-pagination {
        display: none;
    }
    
    body {
        background: var(--white);
        color: var(--black);
    }
}
