/* KariyerPC - Modern Corporate Website Styles */

/* ===== CSS Variables ===== */
:root {
    /* Colors - Professional & Trustworthy */
    --primary: #4F46E5;
    --primary-dark: #4338CA;
    --primary-light: #6366F1;
    --secondary: #F59E0B;
    --secondary-dark: #D97706;
    
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
    --info: #3B82F6;
    
    --text-primary: #1F2937;
    --text-secondary: #6B7280;
    --text-light: #9CA3AF;
    
    --bg-primary: #FFFFFF;
    --bg-secondary: #F9FAFB;
    --bg-dark: #111827;
    
    --border-color: #E5E7EB;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Typography */
    --font-sans: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: 80px 0;
    
    /* Transitions */
    --transition: all 0.3s ease;
  /* Tüm sayfalarda mobilde ikonları zorla göster */
  .nav-link i {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: auto !important;
    height: auto !important;
    margin: 0 6px 0 2px !important;
    font-size: 18px !important;
    color: #111827 !important;
  }
}

/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Ensure mobile menu toggle is always visible on mobile */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Hamburger çizgileri koyu renk, beyaz header üzerinde görünür */
    .mobile-menu-toggle span {
        display: block !important;
        width: 18px !important;
        height: 2px !important;
        background: #111827 !important; /* var(--text-primary) */
        margin: 1px auto !important;
        opacity: 1 !important;
        visibility: visible !important;
        position: relative !important;
    }
    
    .mobile-menu-toggle::before {
        display: none !important;
    }
}

/* Global rule to hide all nav icons on desktop - MUST BE LAST */
@media (min-width: 769px) {
    .navbar-menu .nav-link i,
    .nav-link i,
    header .nav-link i,
    .header .nav-link i {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        width: 0 !important;
        height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        font-size: 0 !important;
    }
}
    
@media (min-width: 769px) {
    /* Keep original navbar layout */
    .navbar {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
    }
    
    /* Ensure logo doesn't get squashed */
    .navbar-brand {
        flex-shrink: 0 !important;
        margin-right: 20px !important;
    }
    
    .logo, .logo-text {
        max-width: 200px !important;
        height: auto !important;
    }
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 80px; /* compensate fixed header height */
}

@media (max-width: 768px) {
    body { padding-top: 64px; }
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ===== Container ===== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Header & Navigation ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 9999;
    transition: var(--transition);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    font-family: 'Inter', sans-serif;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.logo {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (min-width: 769px) {
    #navbarMenu.navbar-menu {
        position: static !important;
        width: auto !important;
        height: auto !important;
        transform: none !important;
        box-shadow: none !important;
        background: transparent !important;
        display: flex;
        align-items: center;
        gap: 30px;
        flex-direction: row !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    #navbarMenu.navbar-menu .nav-link:not(.nav-link-special) {
        display: inline-block !important;
        padding: 8px 0 !important;
        border-left: none !important;
        background: transparent !important;
    }

    .nav-link {
        font-size: 15px;
        font-weight: 500;
        font-family: 'Inter', sans-serif;
        color: var(--text-primary);
        position: relative;
        padding: 8px 0;
        transition: var(--transition);
    }

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

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--primary);
        transition: width 0.3s ease;
    }

    .nav-link:hover::after,
    .nav-link.active::after {
        width: 100%;
    }

    #navbarMenu.navbar-menu .nav-link-special {
        display: inline-block !important;
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%) !important;
        color: white !important;
        padding: 8px 20px !important;
        border-radius: 8px;
        font-weight: 500;
        font-size: 15px;
        font-family: 'Inter', sans-serif;
    }

    #navbarMenu.navbar-menu .nav-link-special::after {
        display: none;
    }

    #navbarMenu.navbar-menu .nav-link-special:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
        color: white !important;
    }

    .language-switcher {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-left: 10px;
        font-family: 'Inter', sans-serif;
    }

    .lang-link {
        font-size: 14px;
        font-weight: 500;
        font-family: 'Inter', sans-serif;
        color: var(--text-secondary);
        padding: 6px 12px;
        border-radius: 6px;
        transition: var(--transition);
    }

    .lang-link:hover,
    .lang-link.active {
        color: var(--primary);
        background: rgba(79, 70, 229, 0.1);
    }

    .lang-separator {
        color: var(--border-color);
    }
    
    /* Masaüstünde toggle gizli */
    .mobile-menu-toggle {
        display: none !important;
    }
}

/* ===== Hero Slider ===== */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
}

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

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

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

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 700px;
}

.slide-title {
    font-size: 56px;
    font-weight: 900;
    color: white;
    margin-bottom: 24px;
    line-height: 1.2;
    animation: slideInUp 0.8s ease-out;
}

.slide-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    line-height: 1.6;
    animation: slideInUp 0.8s ease-out 0.2s backwards;
}

.slide-actions {
    animation: slideInUp 0.8s ease-out 0.4s backwards;
}

.slider-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.slider-btn {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 12px;
}

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

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

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

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
    background: #f8fafc;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.05) 0%, rgba(99, 102, 241, 0.05) 100%);
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(79, 70, 229, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(99, 102, 241, 0.05) 0%, transparent 50%);
}

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

.hero-content {
    animation: fadeInUp 0.8s ease;
    flex: 1;
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 8px 20px;
    border-radius: 50px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease 0.2s both;
    position: relative;
    z-index: 1;
}

.badge-icon {
    font-size: 20px;
}

.badge-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1f2937;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    color: #6b7280;
    margin-bottom: 40px;
    max-width: 540px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease 0.5s both;
}

.hero-stats {
    display: flex;
    gap: 48px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.stat-icon {
    font-size: 42px;
    filter: drop-shadow(0 4px 12px rgba(79, 70, 229, 0.2));
    animation: iconFloat 3s ease-in-out infinite;
}

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

.stat-number {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-image {
    position: relative;
    animation: fadeInRight 0.8s ease 0.4s both;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    padding: 0;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-img {
    width: 100%;
    height: 100%;
    max-width: 600px;
    max-height: 600px;
    object-fit: contain;
    display: block;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 3s ease-in-out infinite;
}

.card-1 {
    top: 15%;
    right: 5%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 35%;
    left: 5%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 15%;
    right: 20%;
    animation-delay: 2s;
}

.card-icon {
    font-size: 24px;
}

.card-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

/* Floating cards - mobile optimization */
@media (max-width: 768px) {
    .floating-card {
        padding: 8px 12px;
        border-radius: 8px;
        gap: 8px;
    }
    
    .card-icon {
        font-size: 16px;
    }
    
    .card-text {
        font-size: 11px;
    }
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    transition: var(--transition);
    cursor: pointer;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 16px;
}

/* Button Glow Effect v2.0 */
.btn-primary {
    position: relative;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
    overflow: visible;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #ffeaa7, #ff6b6b);
    background-size: 400%;
    border-radius: 14px;
    z-index: -1;
    animation: glowRotate 3s linear infinite;
    filter: blur(8px);
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

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

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline-white:hover {
    background: white;
    color: var(--primary);
}

/* ===== Sections ===== */
.services-section,
.blog-section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(79, 70, 229, 0.1);
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.section-footer {
    text-align: center;
    margin-top: 50px;
}

/* ===== Services Grid ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    padding: 50px 40px;
    border-radius: 24px;
    border: 1px solid rgba(79, 70, 229, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(79, 70, 229, 0.03) 0%, 
        rgba(99, 102, 241, 0.05) 50%, 
        rgba(139, 92, 246, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(79, 70, 229, 0.1), transparent);
    animation: rotate 20s linear infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

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

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(79, 70, 229, 0.15),
        0 10px 30px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(79, 70, 229, 0.2);
}

.service-card:hover::before {
    opacity: 1;
}

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

.service-card { display: flex; flex-direction: column; padding: 36px 30px; border-radius: 20px; }

.service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, 
        rgba(79, 70, 229, 0.1) 0%, 
        rgba(99, 102, 241, 0.15) 50%,
        rgba(139, 92, 246, 0.1) 100%);
    border-radius: 20px;
    margin-bottom: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
    border: 1px solid rgba(79, 70, 229, 0.1);
    backdrop-filter: blur(10px);
}

.service-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(79, 70, 229, 0.2));
}

.service-icon i {
    font-size: 32px;
    color: var(--primary);
    filter: drop-shadow(0 2px 4px rgba(79, 70, 229, 0.2));
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(8deg);
    background: linear-gradient(135deg, 
        rgba(79, 70, 229, 0.15) 0%, 
        rgba(99, 102, 241, 0.2) 50%,
        rgba(139, 92, 246, 0.15) 100%);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.2);
}

.service-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.3;
    position: relative;
    z-index: 2;
}

.service-description {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    padding: 12px 24px;
    background: linear-gradient(135deg, 
        rgba(79, 70, 229, 0.1) 0%, 
        rgba(99, 102, 241, 0.15) 100%);
    border-radius: 12px;
    border: 1px solid rgba(79, 70, 229, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
    margin-top: auto;
}

.service-link:hover {
    gap: 12px;
    background: linear-gradient(135deg, 
        rgba(79, 70, 229, 0.15) 0%, 
        rgba(99, 102, 241, 0.2) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.2);
    border-color: rgba(79, 70, 229, 0.3);
}

/* ===== CTA Section ===== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.cta-text {
    flex: 1;
}

.cta-title {
    font-size: 38px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
}

.cta-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    gap: 16px;
}

/* ===== Blog Grid ===== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

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

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

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

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

.blog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.blog-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--text-light);
}

.blog-date,
.blog-views {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-title a {
    color: var(--text-primary);
}

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

.blog-excerpt {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 600;
    font-size: 15px;
}

.blog-link:hover {
    gap: 10px;
}

/* Mobile - 2 columns for blog-grid */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

/* Blog Grid Mini - Homepage */
.blog-grid-mini {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.blog-card-mini {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
}

.blog-card-mini:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.blog-image-mini {
    width: 100%;
    height: 140px;
    overflow: hidden;
    background: #f7fafc;
    position: relative;
}

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

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

.blog-overlay-mini {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.3) 100%);
}

.blog-category-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(255,255,255,0.95);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #667eea;
    backdrop-filter: blur(4px);
}

.blog-content-mini {
    padding: 14px;
}

.blog-title-mini {
    font-size: 13px;
    font-weight: 600;
    color: #1a202c;
    margin: 0 0 10px 0;
    line-height: 1.4;
    min-height: 38px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-meta-mini {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    color: #718096;
}

.blog-date-mini,
.blog-views-mini {
    display: flex;
    align-items: center;
    gap: 4px;
}

.blog-date-mini svg,
.blog-views-mini svg {
    opacity: 0.7;
}

/* Tablet - 3 columns */
@media (max-width: 1024px) {
    .blog-grid-mini {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
}

/* Mobile - 2 columns */
@media (max-width: 768px) {
    .blog-grid-mini {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .blog-image-mini {
        height: 120px;
    }
    
    .blog-content-mini {
        padding: 12px;
    }
    
    .blog-title-mini {
        font-size: 12px;
        min-height: 36px;
    }
}

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

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

.footer-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--primary-light) 0%, white 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    max-height: 96px; /* ~4 satır */
    overflow: hidden;
    position: relative;
}

.footer-description.more {
    max-height: none;
}

.footer-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    position: relative;
}

.footer-read-more::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #ffd200 0%, #ffffff 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
    opacity: 0.85;
}

.footer-read-more:hover::after { transform: scaleX(1); }
.footer-read-more svg { width: 14px; height: 14px; transition: transform 0.25s ease; }
.footer-read-more:hover svg { transform: translateX(4px); }
.footer-read-more:focus-visible { outline: 2px dashed #ffd200; outline-offset: 4px; border-radius: 4px; }

/* Footer social spacing to avoid overlap with read-more */
.modern-footer-social { margin-top: 14px; }

.footer-heading {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

/* ===== Services Hero ===== */
.services-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 60px 0;
}

.services-hero-title {
    font-size: 34px;
    font-weight: 800;
    margin: 0 0 12px 0;
}

.services-hero-subtitle {
    font-size: 18px;
    opacity: 0.95;
    margin: 0 0 24px 0;
}

.services-hero-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.hero-badge-item {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 600;
    backdrop-filter: blur(6px);
}

.services-hero-ctas { display: flex; gap: 12px; }

@media (max-width: 768px) {
    .services-hero-title { font-size: 26px; }
    .services-hero-subtitle { font-size: 16px; }
}

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

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

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

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

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

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-img {
        max-width: 400px;
        max-height: 400px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .services-grid { grid-template-columns: 1fr; }
    
    .footer-column:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
  /* Hero butonlarını mobilde alt alta hizala */
  .hero-actions { display: flex !important; flex-direction: column !important; gap: 12px !important; width: 100% !important; }
  .hero-actions .btn, .cta-actions .btn, .hero .btn { width: 100% !important; justify-content: center !important; display: inline-flex !important; }
  /* CTA bölümü: metin ve butonları dikey hizala */
  .cta-content { display: flex !important; flex-direction: column !important; gap: 16px !important; align-items: stretch !important; }
  .cta-actions { display: flex !important; flex-direction: column !important; gap: 12px !important; width: 100% !important; }
  .cta-actions .btn { width: 100% !important; }
  
  /* ===== Modern Mobil Menü ===== */
  
  /* Menü - Modern & Şık - Mobilde sağdan açılır */
  #navbarMenu.navbar-menu {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    left: auto !important;
    width: 320px !important;
    max-width: 320px !important;
    height: 100vh !important;
    max-height: 100vh !important;
    background: #fff !important;
    transform: translateX(100%) !important;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    z-index: 10003 !important;
    display: flex !important;
    flex-direction: column !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: -4px 0 24px rgba(0,0,0,0.12) !important;
    gap: 0 !important;
    overflow-y: auto !important;
  }
  
  #navbarMenu.navbar-menu.active {
    transform: translateX(0) !important;
  }
  
  /* Menü Header - Boşluk Ekle */
  #navbarMenu.navbar-menu::before {
    content: '';
    display: block;
    height: 120px;
    border-bottom: 1px solid #f1f3f5;
    flex-shrink: 0;
  }
  
  /* Toggle Buton - Modern & Animasyonlu */
  .mobile-menu-toggle {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    cursor: pointer;
    padding: 0;
    gap: 5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10005;
    position: relative;
  }
  
  .mobile-menu-toggle:hover {
    background: #fff;
    border-color: #dee2e6;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transform: scale(1.05);
  }
  
  .mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    background: #212529;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
  }
  
  /* X Animasyonu - Beyaz X */
  .mobile-menu-toggle.active {
    background: transparent;
    border-color: #e9ecef;
  }
  
  .mobile-menu-toggle.active span {
    background: #212529;
  }
  
  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  
  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  
  /* Overlay - Hızlı Blur */
  .mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 10002;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    backdrop-filter: blur(4px);
  }
  
  body.menu-open .mobile-menu-overlay {
    opacity: 1;
    visibility: visible;
  }
  
  /* Linkler - SVG İkonlu */
  #navbarMenu.navbar-menu .nav-link {
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 16px 28px !important;
    color: #212529 !important;
    background: transparent !important;
    font-weight: 500;
    font-size: 16px !important;
    text-decoration: none;
    border-left: 4px solid transparent !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
  }
  
  /* SVG İkonlar - Göster */
  #navbarMenu.navbar-menu .nav-link svg {
    display: block !important;
    width: 20px !important;
    height: 20px !important;
    flex-shrink: 0;
    color: #667eea;
    stroke: currentColor;
  }
  
  #navbarMenu.navbar-menu .nav-link::after {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: transparent;
    transition: all 0.25s ease;
  }
  
  #navbarMenu.navbar-menu .nav-link:hover {
    background: #f8f9fa !important;
    border-left-color: #667eea !important;
    padding-left: 32px !important;
  }
  
  #navbarMenu.navbar-menu .nav-link:hover::after {
    background: #667eea;
    transform: translateY(-50%) scale(1.2);
  }
  
  #navbarMenu.navbar-menu .nav-link.active {
    border-left-color: #667eea !important;
    font-weight: 600;
    background: #f8f9fa !important;
  }
  
  #navbarMenu.navbar-menu .nav-link.active::after {
    background: #667eea;
  }
  
  /* İkonlar - Mobilde Göster, Desktopte Gizle */
  
  /* Servis Takip - Mor Gradient */
  #navbarMenu.navbar-menu .nav-link-special {
    margin: 20px 28px !important;
    padding: 16px 24px !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: #fff !important;
    font-weight: 600;
    font-size: 15px !important;
    border-radius: 12px;
    border-left: none !important;
    text-align: center;
    box-shadow: 0 4px 12px rgba(102,126,234,0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  #navbarMenu.navbar-menu .nav-link-special::after {
    display: none;
  }
  
  #navbarMenu.navbar-menu .nav-link-special:hover {
    background: linear-gradient(135deg, #5568d3 0%, #6a3f91 100%) !important;
    box-shadow: 0 6px 16px rgba(102,126,234,0.4);
    transform: translateY(-2px);
  }
  
  /* Dil Seçici - Her Zaman Görünür */
  #navbarMenu.navbar-menu .language-switcher {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px 28px;
    border-top: 1px solid #f1f3f5;
    background: #fff;
    position: sticky;
    bottom: 0;
    z-index: 10;
  }
  
  #navbarMenu.navbar-menu .lang-link {
    padding: 10px 20px !important;
    color: #667eea !important;
    font-size: 14px !important;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid #667eea !important;
    border-radius: 8px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff !important;
  }
  
  #navbarMenu.navbar-menu .lang-link:hover {
    background: #f0f3ff !important;
    border-color: #5568d3 !important;
    color: #5568d3 !important;
    transform: translateY(-1px);
  }
  
  #navbarMenu.navbar-menu .lang-link.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: #fff !important;
    border-color: transparent !important;
    box-shadow: 0 2px 8px rgba(102,126,234,0.3);
  }
  
  #navbarMenu.navbar-menu .lang-separator {
    color: #dee2e6;
    font-weight: 300;
  }
  
  /* Scroll */
  body.menu-open {
    overflow: hidden;
  }
}

/* Desktop’te navbarMenu içindeki ikonları gösterme */
@media (min-width: 769px) {
  #navbarMenu .nav-link i,
  #navbarMenu .nav-link svg {
    display: none !important;
  }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-img {
        max-width: 250px;
        max-height: 250px;
    }
    
    .hero-stats {
        gap: 32px;
        justify-content: center;
    }
    
    .stat-icon {
        font-size: 36px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .btn-lg {
        padding: 14px 28px;
        font-size: 15px;
    }
}

/* ===== Back to Top Button ===== */
/* Featured Products Slider - Homepage */
.products-slider-home {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

/* Tablet - 3 columns */
@media (max-width: 1024px) {
    .products-slider-home {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

/* Mobile - 2 columns */
@media (max-width: 768px) {
    .featured-products-section {
        padding: 60px 0 !important;
    }
    
    .featured-products-section .section-header {
        margin-bottom: 30px !important;
    }
    
    .featured-products-section .section-title {
        font-size: 28px !important;
    }
    
    .featured-products-section .section-description {
        font-size: 16px !important;
    }
    
    .products-slider-home {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .products-slider-home .product-card-mini {
        border-radius: 12px !important;
    }
    
    .products-slider-home .product-image-mini {
        height: 140px !important;
    }
    
    .products-slider-home .product-content-mini {
        padding: 14px !important;
    }
    
    .products-slider-home .product-content-mini h3 {
        font-size: 13px !important;
        min-height: 38px !important;
    }
    
    .products-slider-home .product-content-mini span {
        font-size: 16px !important;
    }
}

/* Small Mobile - 1 column */
@media (max-width: 480px) {
    .featured-products-section {
        padding: 40px 0 !important;
    }
    
    .featured-products-section .section-title {
        font-size: 24px !important;
    }
    
    .featured-products-section .section-description {
        font-size: 14px !important;
    }
    
    .products-slider-home {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .products-slider-home .product-image-mini {
        height: 200px !important;
    }
    
    .products-slider-home .product-content-mini h3 {
        font-size: 15px !important;
        min-height: auto !important;
    }
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    z-index: 998;
    text-decoration: none;
}

.whatsapp-float svg {
    width: 34px;
    height: 34px;
    fill: white;
}

.whatsapp-float.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.5);
    animation: none;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1), 0 0 0 20px rgba(37, 211, 102, 0.05);
    }
    100% {
        box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 30px;
        right: 20px;
        width: 56px;
        height: 56px;
    }
    
    .whatsapp-float svg {
        width: 30px;
        height: 30px;
    }
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    z-index: 999;
}

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

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* ===== Loading Overlay ===== */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--border-color);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* ===== Toast Notification ===== */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: white;
    padding: 16px 24px;
    border-radius: 10px;
    box-shadow: var(--shadow-xl);
    transform: translateX(400px);
    transition: transform 0.3s ease;
    z-index: 9999;
    max-width: 300px;
}

.toast.show {
    transform: translateX(0);
}

.toast-success {
    border-left: 4px solid var(--success);
}

.toast-error {
    border-left: 4px solid var(--danger);
}

.toast-warning {
    border-left: 4px solid var(--warning);
}

.toast-info {
    border-left: 4px solid var(--info);
}

/* ===== Form Styles ===== */
.form-section-title {
    font-size: 18px;
    font-weight: 600;
    color: #2d3748;
    margin: 0 0 15px 0;
}

.share-title {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

.related-product-title {
    color: #fff;
    margin: 0 0 8px 0;
}

.inquiry-title {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

.modal-title {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

/* ===== Lazy Loading Styles ===== */
.lazy-loading {
    background: #f0f0f0;
    background-image: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    min-height: 200px;
}

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

.lazy-loaded {
    opacity: 1;
    transition: opacity 0.3s ease;
    animation: none;
}

/* Lazy loading için özel boyutlar */
.hero-img.lazy-loading {
    min-height: 400px;
}

.thumbnail.lazy-loading {
    min-height: 80px;
}

.main-image.lazy-loading {
    min-height: 300px;
}
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    transition: var(--transition);
    font-family: inherit;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.form-input.error,
.form-textarea.error,
.form-select.error {
    border-color: var(--danger);
}

.error-message {
    display: none;
    color: var(--danger);
    font-size: 13px;
    margin-top: 6px;
}

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

/* ===== Utility Classes ===== */
.text-center {
    text-align: center;
}

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

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

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.pt-1 { padding-top: 0.5rem; }
.pt-2 { padding-top: 1rem; }
.pt-3 { padding-top: 1.5rem; }
.pt-4 { padding-top: 2rem; }
.pt-5 { padding-top: 3rem; }

.pb-1 { padding-bottom: 0.5rem; }
.pb-2 { padding-bottom: 1rem; }
.pb-3 { padding-bottom: 1.5rem; }
.pb-4 { padding-bottom: 2rem; }
.pb-5 { padding-bottom: 3rem; }

/* ===== Page Header ===== */
.page-header {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.05) 0%, rgba(99, 102, 241, 0.05) 100%);
    text-align: center;
    margin-top: 80px;
}

.page-header-title {
    font-size: 48px;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.page-header-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== Blog Page ===== */
/* Modern Blog Styles */
.blog-page {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

/* Blog Header */
.blog-header {
    margin-bottom: 60px;
    text-align: center;
}

/* Search Section */
.search-section {
    margin-bottom: 40px;
}

.search-form {
    max-width: 600px;
    margin: 0 auto;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 16px;
    color: var(--text-muted);
    z-index: 2;
}

.search-input {
    width: 100%;
    padding: 12px 16px 12px 48px;
    border: 2px solid #e2e8f0;
    border-radius: 25px;
    font-size: 14px;
    color: var(--text);
    background: #f8fafc;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.search-input::placeholder {
    color: var(--text-muted);
}

.search-input-group {
    position: relative;
    display: flex;
    align-items: center;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    padding: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.search-input-group:focus-within {
    border-color: var(--primary);
    box-shadow: 0 8px 30px rgba(79, 70, 229, 0.15);
    transform: translateY(-2px);
}

.search-icon {
    position: absolute;
    left: 20px;
    color: var(--text-muted);
    z-index: 1;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 16px 20px 16px 50px;
    font-size: 16px;
    background: transparent;
    color: var(--text);
}

.search-input::placeholder {
    color: var(--text-muted);
}

.search-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.search-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

/* Category Filter */
.category-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* Category Page Search and Filter */
.blog-search-filter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    padding: 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.blog-search-filter .search-section {
    flex: 1;
    max-width: 400px;
    margin-bottom: 0;
}

.blog-search-filter .search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.blog-search-filter .search-icon {
    position: absolute;
    left: 16px;
    color: var(--text-muted);
    z-index: 2;
}

.blog-search-filter .search-input {
    width: 100%;
    padding: 12px 16px 12px 48px;
    border: 2px solid #e2e8f0;
    border-radius: 25px;
    font-size: 14px;
    color: var(--text);
    background: #f8fafc;
    transition: all 0.3s ease;
}

.blog-search-filter .search-input:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.blog-search-filter .search-input::placeholder {
    color: var(--text-muted);
}

.blog-search-filter .filter-section {
    flex-shrink: 0;
}

.blog-search-filter .filter-dropdown {
    position: relative;
}

/* Category Description */
.category-description {
    max-width: 600px;
    margin: 0 auto 40px auto;
    text-align: center;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

.category-description p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.filter-btn {
    padding: 10px 20px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 25px;
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.25);
}

.filter-btn svg {
    width: 14px;
    height: 14px;
}

/* Modern Articles Grid */
.modern-articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.modern-article-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.modern-article-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

.article-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    display: block;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-article-card:hover .article-image img {
    transform: scale(1.08);
}

.article-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.8) 0%, rgba(99, 102, 241, 0.8) 100%);
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.modern-article-card:hover .article-overlay {
    opacity: 1;
}

.article-no-image {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.article-no-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    z-index: 1;
}

.no-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    z-index: 2;
}

/* Desktop Monitor Placeholder - Like Homepage */
.notebook-placeholder {
    width: 200px;
    height: 140px;
    position: relative;
    transform: perspective(1200px) rotateX(8deg) rotateY(-2deg);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: perspective(1200px) rotateX(8deg) rotateY(-2deg) translateY(0px); }
    50% { transform: perspective(1200px) rotateX(8deg) rotateY(-2deg) translateY(-5px); }
}

/* Monitor Screen - Like Homepage */
.notebook-screen {
    width: 100%;
    height: 70%;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 12px 12px 4px 4px;
    position: relative;
    box-shadow: 
        0 20px 60px rgba(0,0,0,0.25),
        0 8px 30px rgba(0,0,0,0.15);
    border: 3px solid #475569;
}

/* Monitor Bezel */
.notebook-screen::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    background: #0f172a;
    border-radius: 8px;
    border: 2px solid #1e293b;
}

/* Monitor Stand */
.notebook-screen::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 20px;
    background: linear-gradient(135deg, #475569 0%, #334155 100%);
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* Screen Content Area */
.screen-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 60%;
    z-index: 2;
    background: #0f172a;
    border-radius: 6px;
}

/* Code Lines - Matrix Style */
.screen-line {
    height: 2px;
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
    margin: 8px 0;
    border-radius: 1px;
    animation: pulse 3s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
}

.screen-line.short {
    width: 60%;
    animation-delay: 1.2s;
}

.screen-line.medium {
    width: 80%;
    animation-delay: 2.4s;
}

.screen-dot {
    width: 3px;
    height: 3px;
    background: #10b981;
    border-radius: 50%;
    display: inline-block;
    margin: 6px;
    animation: blink 2.5s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.5);
}

.screen-dot:nth-child(4) { animation-delay: 0.8s; }
.screen-dot:nth-child(5) { animation-delay: 1.6s; }
.screen-dot:nth-child(6) { animation-delay: 2.4s; }

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes blink {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 0.3; }
}

/* Monitor Base - Desktop Style */
.notebook-keyboard {
    width: 100%;
    height: 30%;
    background: linear-gradient(135deg, #475569 0%, #334155 100%);
    border-radius: 0 0 12px 12px;
    padding: 16px 20px;
    box-shadow: 
        0 10px 40px rgba(0,0,0,0.3),
        inset 0 2px 0 rgba(255,255,255,0.1);
    border: 3px solid #475569;
    position: relative;
}

/* Desktop Keyboard */
.keyboard-area {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 6px;
    margin-bottom: 16px;
}

.key {
    width: 100%;
    height: 12px;
    background: linear-gradient(135deg, #64748b 0%, #475569 100%);
    border-radius: 4px;
    box-shadow: 
        0 3px 6px rgba(0,0,0,0.4),
        inset 0 1px 0 rgba(255,255,255,0.15);
    animation: keyGlow 6s ease-in-out infinite;
    border: 1px solid #64748b;
    position: relative;
}

.key::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    height: 1px;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
}

.key:nth-child(1) { animation-delay: 0.4s; }
.key:nth-child(2) { animation-delay: 0.8s; }
.key:nth-child(3) { animation-delay: 1.2s; }
.key:nth-child(4) { animation-delay: 1.6s; }
.key:nth-child(5) { animation-delay: 2.0s; }
.key:nth-child(6) { animation-delay: 2.4s; }
.key:nth-child(7) { animation-delay: 2.8s; }
.key:nth-child(8) { animation-delay: 3.2s; }

@keyframes keyGlow {
    0%, 100% { 
        box-shadow: 0 3px 6px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.15); 
    }
    50% { 
        box-shadow: 0 3px 6px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.15), 0 0 12px rgba(255,255,255,0.1); 
    }
}

/* Monitor Stand Base */
.notebook-keyboard::before {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 8px;
    background: linear-gradient(135deg, #64748b 0%, #475569 100%);
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* Monitor Stand Legs */
.notebook-keyboard::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #334155;
    border-radius: 2px;
}

.article-content {
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-category {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(99, 102, 241, 0.1) 100%);
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    border-radius: 25px;
    margin-bottom: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    align-self: flex-start;
}

.article-category:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.article-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.4;
    flex: 1;
}

.article-title a {
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

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

.article-excerpt {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 15px;
    flex: 1;
}

.article-footer {
    margin-top: auto;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 12px 20px;
    border: 2px solid var(--primary);
    border-radius: 25px;
    background: transparent;
}

.read-more-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.3);
}

.read-more-btn svg {
    transition: transform 0.3s ease;
}

.read-more-btn:hover svg {
    transform: translateX(4px);
}

/* Modern Pagination */
.modern-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 60px;
}

.pagination-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 25px;
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pagination-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.3);
}

.pagination-info {
    padding: 12px 24px;
    background: var(--primary);
    color: white;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
}

/* Modern Empty State */
.modern-empty-state {
    text-align: center;
    padding: 80px 20px;
}

.modern-empty-state .empty-icon {
    margin-bottom: 24px;
    color: var(--text-muted);
}

.modern-empty-state h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.modern-empty-state p {
    color: var(--text-muted);
    font-size: 16px;
}

.article-excerpt {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

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

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

/* ===== Article Detail Page ===== */
.article-page {
    padding: 100px 0 80px;
    margin-top: 80px;
}

.article-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.article-category-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(79, 70, 229, 0.1);
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 20px;
    text-decoration: none;
    transition: var(--transition);
}

.article-category-badge:hover {
    background: var(--primary);
    color: white;
}

.article-page-title {
    font-size: 48px;
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 20px;
}

.article-page-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-secondary);
}

.article-featured-image {
    max-width: 1000px;
    margin: 0 auto 60px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

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

.article-body {
    max-width: 800px;
    margin: 0 auto;
}

.article-content-wrapper {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 60px;
}

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

.article-content-wrapper h2,
.article-content-wrapper h3,
.article-content-wrapper h4 {
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

.article-content-wrapper h2 {
    font-size: 32px;
}

.article-content-wrapper h3 {
    font-size: 26px;
}

.article-content-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 30px 0;
}

.article-content-wrapper ul,
.article-content-wrapper ol {
    margin: 20px 0;
    padding-left: 30px;
}

.article-content-wrapper li {
    margin-bottom: 10px;
}

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

.article-content-wrapper a:hover {
    color: var(--primary-dark);
}

.article-tags {
    padding: 30px 0;
    border-top: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 60px;
}

.article-tags h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
    border-radius: 20px;
    text-decoration: none;
    transition: var(--transition);
}

.tag-badge:hover {
    background: var(--primary);
    color: white;
}

.related-articles {
    margin-top: 80px;
}

.related-title {
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-primary);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.related-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.related-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.related-image {
    display: block;
    height: 180px;
    overflow: hidden;
}

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

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

.related-content {
    padding: 20px;
}

.related-card-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}

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

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

.related-date {
    font-size: 13px;
    color: var(--text-light);
}

/* ===== Sidebar ===== */
.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
}

.widget-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}

.category-list {
    list-style: none;
}

.category-list li {
    margin-bottom: 12px;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
}

.category-list a:hover {
    background: rgba(79, 70, 229, 0.1);
    color: var(--primary);
}

.category-list .count {
    font-size: 13px;
    color: var(--text-light);
}

.popular-list {
    list-style: none;
}

.popular-list li {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.popular-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.popular-list a {
    text-decoration: none;
}

.popular-list h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
    line-height: 1.4;
    transition: var(--transition);
}

.popular-list a:hover h4 {
    color: var(--primary);
}

.popular-meta {
    font-size: 13px;
    color: var(--text-light);
}

/* ===== Pagination ===== */
.pagination {
    margin-top: 50px;
}

.pagination-list {
    display: flex;
    justify-content: center;
    gap: 8px;
    list-style: none;
}

.pagination-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.pagination-link:hover,
.pagination-link.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* ===== Empty State ===== */
.empty-state {
    text-align: center;
    padding: 80px 20px;
}

.empty-icon {
    font-size: 64px;
    display: block;
    margin-bottom: 20px;
    opacity: 0.5;
}

.empty-state h3 {
    font-size: 24px;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.empty-state p {
    font-size: 16px;
    color: var(--text-secondary);
}

/* ===== Responsive Blog ===== */
@media (max-width: 1024px) {
    .blog-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .blog-sidebar {
        position: static;
    }
    
    .modern-articles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .search-input-group {
        flex-direction: column;
        gap: 12px;
        padding: 16px;
    }
    
    .search-input {
        padding: 12px 16px;
        text-align: center;
    }
    
    .search-icon {
        display: none;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 80px 0 40px;
    }
    
    .page-header-title {
        font-size: 32px;
    }
    
    .blog-page {
        padding: 60px 0;
    }
    
    .search-section {
        margin-bottom: 30px;
    }
    
    .search-form {
        max-width: 100%;
    }
    
    .search-input {
        padding: 10px 14px 10px 44px;
        font-size: 13px;
    }
    
    .search-input-group {
        flex-direction: column;
        gap: 12px;
        padding: 16px;
    }
    
    .search-input {
        padding: 12px 16px;
        text-align: center;
    }
    
    .search-icon {
        display: none;
    }
    
    .search-btn {
        width: 100%;
        justify-content: center;
    }
    
    .category-filter {
        gap: 8px;
    }
    
    .blog-search-filter {
        flex-direction: column;
        gap: 16px;
        padding: 16px;
    }
    
    .blog-search-filter .search-section {
        max-width: 100%;
        margin-bottom: 0;
    }
    
    .blog-search-filter .search-input {
        padding: 10px 14px 10px 44px;
        font-size: 13px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .category-description {
        margin: 0 0 30px 0;
        padding: 16px;
    }
    
    .category-description p {
        font-size: 14px;
    }
    
    .modern-articles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    /* Desktop Monitor placeholder mobile */
    .notebook-placeholder {
        width: 160px;
        height: 110px;
        transform: perspective(1000px) rotateX(6deg) rotateY(-1deg);
    }
    
    .notebook-screen {
        border-radius: 8px 8px 3px 3px;
        height: 70%;
    }
    
    .notebook-screen::before {
        top: 8px;
        left: 8px;
        right: 8px;
        bottom: 8px;
        border-radius: 5px;
    }
    
    .notebook-screen::after {
        width: 40px;
        height: 12px;
        bottom: -12px;
    }
    
    .screen-content {
        width: 75%;
        height: 55%;
    }
    
    .notebook-keyboard {
        border-radius: 0 0 8px 8px;
        padding: 12px 16px;
        height: 30%;
    }
    
    .keyboard-area {
        gap: 4px;
        margin-bottom: 12px;
    }
    
    .key {
        height: 10px;
    }
    
    .notebook-keyboard::before {
        width: 60px;
        height: 6px;
        bottom: 6px;
    }
    
    .notebook-keyboard::after {
        width: 80px;
        height: 3px;
    }
    
    .screen-line {
        height: 1px;
        margin: 6px 0;
    }
    
    .screen-dot {
        width: 2px;
        height: 2px;
        margin: 4px;
    }
    
    .modern-article-card {
        border-radius: 16px;
    }
    
    .article-content {
        padding: 24px;
    }
    
    .article-title {
        font-size: 20px;
    }
    
    .modern-pagination {
        flex-direction: column;
        gap: 16px;
    }
    
    .pagination-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Contact Page ===== */
.contact-section {
    padding: 60px 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
}

.contact-info {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
}

.contact-info-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 30px;
}

.contact-info-items {
    margin-bottom: 40px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(99, 102, 241, 0.1) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.contact-details p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-details a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

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

.contact-social {
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
}

.contact-social h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

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

.social-link {
    width: 48px;
    height: 48px;
    background: var(--bg-secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    text-decoration: none;
    transition: var(--transition);
}

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

.contact-form-wrapper {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
}

.contact-form-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 30px;
}

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

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

.contact-form .form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.contact-form .form-input,
.contact-form .form-textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
}

.contact-form .form-input:focus,
.contact-form .form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

.contact-form .form-textarea {
    resize: vertical;
}

.contact-form .btn-lg {
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 700;
}

.alert {
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
}

.alert-success {
    background: #D1FAE5;
    color: #065F46;
    border: 2px solid #10B981;
}

.alert-error {
    background: #FEE2E2;
    color: #991B1B;
    border: 2px solid #EF4444;
}

.map-section {
    padding: 60px 0;
    background: var(--bg-secondary);
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--border-color);
}

.map-placeholder {
    height: 400px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--text-light);
}

/* Responsive Contact */
@media (max-width: 1024px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-info,
    .contact-form-wrapper {
        padding: 30px 20px;
    }
}

/* ===== Modern Article Page ===== */
.modern-article-page {
    padding: 120px 0 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    min-height: 100vh;
}

.modern-article-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.modern-category-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.25);
}

.modern-category-badge:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.35);
}

.modern-article-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modern-article-excerpt {
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.modern-article-image {
    margin: 0 auto 60px auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
    width: 100%;
}

.modern-article-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.modern-article-image:hover img {
    transform: scale(1.02);
}

.modern-article-no-image {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.modern-article-no-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    z-index: 1;
}

.modern-article-no-image .notebook-placeholder {
    transform: perspective(1000px) rotateX(5deg) rotateY(-2deg) scale(1.2);
    z-index: 2;
}

.modern-article-content {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 80px;
}

.article-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text);
}

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

.article-text h2 {
    font-size: 2rem;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 0.5rem;
}

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

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

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

.article-text blockquote {
    border-left: 4px solid var(--primary);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--text-muted);
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
}

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

.article-text pre {
    background: #1e293b;
    color: #e2e8f0;
    padding: 1.5rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 1.5rem 0;
}

.article-text pre code {
    background: none;
    padding: 0;
    color: inherit;
}

/* Modern Tags Section */
.modern-tags-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e2e8f0;
}

.tags-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.tags-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.modern-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: space-between;
}

.modern-tag-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    color: var(--text);
    padding: 8px 16px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    flex: 1;
    min-width: fit-content;
    white-space: nowrap;
    justify-content: center;
    margin: 0 6px;
}

.modern-tag-badge:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.25);
    border-color: var(--primary);
}

/* Article Share Section */
.article-share-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e2e8f0;
}

.share-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.share-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

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

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 25px;
    padding: 12px 20px;
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* WhatsApp Button */
.whatsapp-btn {
    background: #25D366;
    border-color: #25D366;
    color: white;
}

.whatsapp-btn:hover {
    background: #128C7E;
    border-color: #128C7E;
    color: white;
}

/* Print Button */
.print-btn {
    background: #6B7280;
    border-color: #6B7280;
    color: white;
}

.print-btn:hover {
    background: #4B5563;
    border-color: #4B5563;
    color: white;
}

/* Like Button */
.like-btn {
    background: #F3F4F6;
    border-color: #E5E7EB;
    color: var(--text);
}

.like-btn:hover {
    background: #E5E7EB;
    border-color: #D1D5DB;
}

.like-btn.liked {
    background: #EF4444;
    border-color: #EF4444;
    color: white;
}

.like-btn.liked .like-icon {
    fill: currentColor;
}

.like-count {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 2px 8px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 4px;
}

.like-btn.liked .like-count {
    background: rgba(255, 255, 255, 0.2);
}

        /* Copy Button */
        .copy-btn {
            background: #3B82F6;
            border-color: #3B82F6;
            color: white;
        }
        
        .copy-btn:hover {
            background: #2563EB;
            border-color: #2563EB;
            color: white;
        }
        
        /* Facebook Button */
        .facebook-btn {
            background: #1877F2;
            border-color: #1877F2;
            color: white;
        }
        
        .facebook-btn:hover {
            background: #166FE5;
            border-color: #166FE5;
            color: white;
        }
        
        /* Twitter Button */
        .twitter-btn {
            background: #1DA1F2;
            border-color: #1DA1F2;
            color: white;
        }
        
        .twitter-btn:hover {
            background: #1A91DA;
            border-color: #1A91DA;
            color: white;
        }
        
        /* LinkedIn Button */
        .linkedin-btn {
            background: #0077B5;
            border-color: #0077B5;
            color: white;
        }
        
        .linkedin-btn:hover {
            background: #006BA1;
            border-color: #006BA1;
            color: white;
        }
        
        /* Telegram Button */
        .telegram-btn {
            background: #0088CC;
            border-color: #0088CC;
            color: white;
        }
        
        .telegram-btn:hover {
            background: #0077B3;
            border-color: #0077B3;
            color: white;
        }
        
        /* Instagram Button */
        .instagram-btn {
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
            border: none;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .instagram-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
            border-radius: 25px;
            z-index: -1;
        }
        
        .instagram-btn:hover {
            background: linear-gradient(45deg, #e6683c 0%, #dc2743 25%, #cc2366 50%, #bc1888 75%, #8a3ab9 100%);
            transform: translateY(-2px);
            box-shadow: 0 4px 20px rgba(225, 48, 108, 0.3);
        }
        
        .instagram-btn:hover::before {
            background: linear-gradient(45deg, #e6683c 0%, #dc2743 25%, #cc2366 50%, #bc1888 75%, #8a3ab9 100%);
        }
        
        /* Nextsosyal Button */
        .nextsosyal-btn {
            background: linear-gradient(135deg, #FF6B35 0%, #F7931E 50%, #FFD23F 100%);
            border: none;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .nextsosyal-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, #FF6B35 0%, #F7931E 50%, #FFD23F 100%);
            border-radius: 25px;
            z-index: -1;
        }
        
        .nextsosyal-btn:hover {
            background: linear-gradient(135deg, #E55A2B 0%, #E8821A 50%, #F4C430 100%);
            transform: translateY(-2px);
            box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
        }
        
        .nextsosyal-btn:hover::before {
            background: linear-gradient(135deg, #E55A2B 0%, #E8821A 50%, #F4C430 100%);
        }

/* Modern Tag Page Styles */
.modern-widget {
    background: white;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

/* Tag Page Articles Grid - 3 columns like blog page */
.blog-page .articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

@media (max-width: 768px) {
    .blog-page .articles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

/* Fix tag page header sticking to top menu */
.blog-page {
    padding-top: 120px;
}

/* Tag Page Header Styles */
.tag-header-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.tag-header-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    margin-bottom: 4px;
}

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

.tag-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.tag-subtitle {
    font-size: 1rem;
    color: var(--text);
    margin: 0;
    font-weight: 500;
}

@media (max-width: 768px) {
    .tag-title {
        font-size: 1.8rem;
    }
}

.widget-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e2e8f0;
}

.widget-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    color: white;
}

.widget-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.widget-content {
    margin-top: 16px;
}

/* Modern Tag Info */
.modern-tag-info {
    text-align: center;
}

.tag-badge-large {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 16px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.tag-count-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 700;
}

.tag-description {
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Modern Tag Cloud */
.modern-tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.modern-tag-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: var(--text);
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.modern-tag-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.modern-tag-item:hover::before {
    left: 100%;
}

.modern-tag-item:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.modern-tag-item.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.tag-text {
    font-weight: 500;
}

.tag-count {
    background: rgba(0, 0, 0, 0.1);
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

.modern-tag-item:hover .tag-count,
.modern-tag-item.active .tag-count {
    background: rgba(255, 255, 255, 0.2);
}

/* Empty Tags State */
.empty-tags {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-light);
}

.empty-tags svg {
    color: #cbd5e1;
    margin-bottom: 16px;
}

.empty-tags p {
    margin: 0;
    font-size: 0.95rem;
}

/* Modern Related Articles */
.modern-related-section {
    max-width: 1200px;
    margin: 0 auto;
}

.related-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.related-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.view-all-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-all-link:hover {
    color: var(--primary-dark);
    transform: translateX(4px);
}

.modern-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.modern-related-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.modern-related-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.related-image {
    position: relative;
    display: block;
    height: 200px;
    overflow: hidden;
}

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

.related-no-image {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.related-no-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    z-index: 1;
}

.related-no-image .notebook-placeholder {
    transform: perspective(800px) rotateX(5deg) rotateY(-2deg) scale(0.8);
    z-index: 2;
}

.related-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
}

.related-image:hover .related-overlay {
    opacity: 1;
}

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

.related-content {
    padding: 24px;
}

.related-card-title {
    margin: 0 0 12px 0;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
}

.related-card-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.related-excerpt {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.related-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.related-read-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(79, 70, 229, 0.1), transparent);
    transition: left 0.5s ease;
}

.related-read-more:hover {
    color: white;
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.25);
}

.related-read-more:hover::before {
    left: 100%;
}

.related-read-more svg {
    transition: transform 0.3s ease;
}

.related-read-more:hover svg {
    transform: translateX(4px);
}

/* ===== About Page ===== */
.about-page {
    background: #ffffff;
    min-height: 100vh;
}

/* ===== Page Content ===== */
.page-content-section {
    padding: 60px 0;
}

.page-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.page-content {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 50px;
    line-height: 1.8;
}

.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5,
.page-content h6 {
    color: var(--text-primary);
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 16px;
}

.page-content h1 { font-size: 36px; }
.page-content h2 { font-size: 30px; }
.page-content h3 { font-size: 24px; }
.page-content h4 { font-size: 20px; }

.page-content p {
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.page-content ul,
.page-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.page-content li {
    margin-bottom: 10px;
    color: var(--text-secondary);
}

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

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

.page-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 24px 0;
}

.page-content blockquote {
    border-left: 4px solid var(--primary);
    padding: 20px 24px;
    margin: 24px 0;
    background: var(--bg-secondary);
    border-radius: 0 12px 12px 0;
    font-style: italic;
}

.page-content code {
    background: var(--bg-secondary);
    padding: 2px 8px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
}

.page-content pre {
    background: #1F2937;
    color: #F9FAFB;
    padding: 20px;
    border-radius: 12px;
    overflow-x: auto;
    margin: 24px 0;
}

.page-content pre code {
    background: none;
    padding: 0;
    color: inherit;
}

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

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

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

@media (max-width: 768px) {
    .page-content {
        padding: 30px 20px;
    }
    
    .page-content h1 { font-size: 28px; }
    .page-content h2 { font-size: 24px; }
    .page-content h3 { font-size: 20px; }
}

/* ===== Products & Services Pages ===== */
.products-section,
.services-section {
    padding: 60px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--primary);
}

.product-image {
    height: 200px;
    overflow: hidden;
    background: var(--bg-secondary);
}

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

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

.product-content {
    padding: 24px;
}

.product-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.product-description {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.product-link:hover {
    gap: 12px;
    color: var(--primary-dark);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.service-link:hover {
    gap: 12px;
    color: var(--primary-dark);
}

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

/* ===== Modern Footer Styles ===== */
.modern-footer {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: #e2e8f0;
    position: relative;
    overflow: hidden;
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #667eea, transparent);
}

.modern-footer-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.modern-footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    padding: 60px 0 40px;
}

.modern-footer-column {
    display: flex;
    flex-direction: column;
}

.modern-footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.modern-footer-logo {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
}

.modern-footer-title {
    font-size: 28px;
    font-weight: 800;
    color: white;
    margin: 0;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modern-footer-description {
    font-size: 16px;
    line-height: 1.7;
    color: #cbd5e1;
    margin-bottom: 32px;
    max-width: 400px;
}

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

.modern-social-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.modern-social-link:hover {
    background: rgba(102, 126, 234, 0.2);
    border-color: #667eea;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.modern-footer-heading {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    position: relative;
}

.modern-footer-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

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

.modern-footer-links li {
    margin-bottom: 12px;
}

.modern-footer-link {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.modern-footer-link::before {
    content: '';
    position: absolute;
    left: -16px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
}

.modern-footer-link:hover {
    color: white;
    padding-left: 16px;
}

.modern-footer-link:hover::before {
    width: 12px;
}

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

.modern-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.modern-contact-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateX(4px);
}

.modern-contact-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.modern-contact-text {
    color: #e2e8f0;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
}

.modern-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.2);
}

.modern-footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}

.modern-footer-copyright {
    color: #94a3b8;
    font-size: 13px;
    margin: 0;
}

.modern-footer-bottom-links {
    display: flex;
    gap: 24px;
}

.modern-footer-bottom-link {
    color: #94a3b8;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.modern-footer-bottom-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
}

.modern-footer-bottom-link:hover {
    color: white;
}

.modern-footer-bottom-link:hover::after {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .modern-footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .modern-footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .modern-footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 0 30px;
    }
    
    /* Hide quick links column on mobile */
    .modern-footer-column:nth-child(2) {
        display: none;
    }
    
    .modern-footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 0 32px;
    }
    
    .modern-footer-bottom-links {
        gap: 20px;
    }
    
    .modern-footer-social {
        justify-content: center;
    }
}

/* Modern Article Page Mobile */
@media (max-width: 768px) {
    .modern-article-page {
        padding: 100px 0 60px 0;
    }
    
    .modern-article-header {
        margin-bottom: 40px;
        padding: 0 20px;
        max-width: 100%;
    }
    
    .modern-article-title {
        font-size: 2.5rem;
    }
    
    .modern-article-excerpt {
        font-size: 1.125rem;
    }
    
    .modern-article-image {
        margin: 0 20px 40px 20px;
        border-radius: 16px;
        max-width: calc(100% - 40px);
    }
    
    .modern-article-image img {
        height: 250px;
    }
    
    .modern-article-no-image {
        height: 250px;
    }
    
    .modern-article-content {
        margin: 0 20px 60px 20px;
        padding: 40px 30px;
        border-radius: 16px;
        max-width: calc(100% - 40px);
    }
    
    .article-text {
        font-size: 1rem;
    }
    
    .article-text h2 {
        font-size: 1.75rem;
    }
    
    .modern-tags-section {
        margin-top: 40px;
        padding-top: 30px;
    }
    
    .tags-header {
        margin-bottom: 20px;
    }
    
    .tags-title {
        font-size: 1.25rem;
    }
    
    .modern-tags-list {
        gap: 8px;
        justify-content: space-between;
    }
    
    .modern-tag-badge {
        padding: 6px 12px;
        font-size: 13px;
        flex: 1;
        min-width: fit-content;
        margin: 0 4px;
    }
    
    .modern-related-section {
        padding: 0 20px;
    }
    
    .related-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .related-title {
        font-size: 1.75rem;
    }
    
    .modern-related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .related-content {
        padding: 20px;
    }
    
    .related-card-title {
        font-size: 1.125rem;
    }
    
    .article-share-section {
        margin-top: 40px;
        padding-top: 30px;
    }
    
    .share-header {
        margin-bottom: 20px;
    }
    
    .share-title {
        font-size: 1.25rem;
    }
    
    .share-buttons {
        gap: 8px;
        justify-content: center;
    }
    
    .share-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .like-count {
        font-size: 11px;
        padding: 1px 6px;
    }
}

@media (max-width: 480px) {
    .modern-footer-bottom-links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px 16px;
    }
    
    .modern-footer-container {
        padding: 0 16px;
    }
    
    .modern-footer-content {
        padding: 30px 0 20px;
    }
    
    .modern-footer-bottom-content {
        padding: 0 24px;
    }
}

/* ========================================
   MODERN CONTACT PAGE STYLES
   ======================================== */

.modern-contact-page {
    background: #ffffff;
    min-height: 100vh;
}

/* Hero Section */
.modern-contact-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.modern-contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="300" fill="url(%23a)"/><circle cx="800" cy="800" r="400" fill="url(%23a)"/></svg>');
    opacity: 0.3;
}

.modern-contact-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.modern-contact-hero-content {
    text-align: center;
    color: white;
}

.modern-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.modern-hero-title {
    font-size: 48px;
    font-weight: 800;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.modern-hero-description {
    font-size: 20px;
    margin: 0 0 40px 0;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.modern-hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.modern-stat-item {
    text-align: center;
    background: rgba(255,255,255,0.15);
    padding: 25px 40px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.modern-stat-number {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #ffd200;
}

.modern-stat-label {
    font-size: 14px;
    opacity: 0.9;
    font-weight: 500;
}

/* Main Contact Section */
.modern-contact-main {
    padding: 100px 0 60px 0;
}

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

.modern-contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: stretch;
}

.modern-contact-info {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Contact Info */
.modern-contact-info {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.modern-contact-header {
    margin-bottom: 40px;
}

.modern-contact-title {
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 12px 0;
    color: #1e293b;
}

.modern-contact-subtitle {
    font-size: 16px;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

.modern-contact-items {
    margin-bottom: 16px;
}

.modern-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 8px;
    padding: 10px;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.modern-contact-item:hover {
    background: #f8fafc;
    border-color: rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

.modern-contact-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(102, 126, 234, 0.3);
}

.modern-contact-content h4 {
    margin: 0 0 4px 0;
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
}

.modern-contact-content p {
    margin: 0 0 6px 0;
    font-size: 13px;
    color: #64748b;
    line-height: 1.3;
}

.modern-contact-action {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #667eea;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.modern-contact-action:hover {
    color: #5a67d8;
    transform: translateX(4px);
}

/* WhatsApp Section */
.modern-whatsapp-section {
    padding: 20px 0 40px 0;
    background: #f8fafc;
}

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

.modern-whatsapp-box {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    padding: 20px 24px;
    border-radius: 16px;
    display: flex;
    gap: 20px;
    align-items: center;
    color: white;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.modern-whatsapp-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.modern-whatsapp-content {
    flex: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 50px;
}

.modern-whatsapp-content h4 {
    margin: 0 0 4px 0;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
}

.modern-whatsapp-content p {
    margin: 0;
    font-size: 13px;
    opacity: 0.9;
    line-height: 1.3;
}

.modern-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: #128c7e;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
    min-width: 140px;
    justify-content: center;
    height: 40px;
}

.modern-whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Contact Form */
.modern-contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.modern-form-header {
    margin-bottom: 32px;
}

.modern-form-title {
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 12px 0;
    color: #1e293b;
}

.modern-form-subtitle {
    font-size: 16px;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

.modern-success-alert {
    background: #d1fae5;
    border: 1px solid #a7f3d0;
    color: #065f46;
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.modern-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 1;
}

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

.modern-form-group {
    display: flex;
    flex-direction: column;
}

.modern-form-label {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.modern-form-input,
.modern-form-textarea {
    padding: 16px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #fafafa;
}

.modern-form-input:focus,
.modern-form-textarea:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.modern-form-textarea {
    min-height: 120px;
    resize: vertical;
}

.modern-submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 18px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.modern-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

/* Map Section */
.modern-map-section {
    padding: 20px 0 100px 0;
    background: white;
}

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

.modern-map-header {
    text-align: center;
    margin-bottom: 40px;
}

.modern-map-title {
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 12px 0;
    color: #1e293b;
}

.modern-map-subtitle {
    font-size: 16px;
    color: #64748b;
    margin: 0;
}

.modern-map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 32px;
}

.modern-map-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.modern-map-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: #374151;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.modern-map-btn:hover {
    background: #667eea;
    color: white;
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .modern-contact-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .modern-hero-stats {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .modern-contact-hero {
        display: none;
    }
    
    .modern-hero-title {
        font-size: 36px;
    }
    
    .modern-hero-description {
        font-size: 18px;
    }
    
    .modern-hero-stats {
        flex-direction: column;
        gap: 24px;
    }
    
    .modern-contact-main {
        padding: 80px 0 40px 0;
    }
    
    .modern-contact-info,
    .modern-contact-form {
        padding: 32px 24px;
    }
    
    .modern-form-row {
        grid-template-columns: 1fr;
    }
    
    .modern-whatsapp-section {
        padding: 15px 0 30px 0;
    }
    
    .modern-whatsapp-box {
        flex-direction: column;
        text-align: center;
        padding: 18px 20px;
        gap: 16px;
        justify-content: center;
    }
    
    .modern-whatsapp-content {
        text-align: center;
        min-height: auto;
    }
    
    .modern-whatsapp-btn {
        min-width: auto;
        width: 100%;
        max-width: 180px;
        height: 40px;
    }
    
    .modern-map-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .modern-map-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .modern-contact-hero-container,
    .modern-contact-container,
    .modern-map-container {
        padding: 0 16px;
    }
    
    .modern-hero-title {
        font-size: 28px;
    }
    
    .modern-contact-info,
    .modern-contact-form {
        padding: 24px 20px;
    }
    
    .modern-contact-item {
        padding: 10px;
        margin-bottom: 8px;
    }
    
    .modern-whatsapp-section {
        padding: 10px 0 20px 0;
    }
    
    .modern-whatsapp-box {
        padding: 16px 18px;
        gap: 14px;
        justify-content: center;
    }
    
    .modern-whatsapp-content {
        text-align: center;
        min-height: auto;
    }
    
    .modern-whatsapp-btn {
        min-width: auto;
        width: 100%;
        max-width: 160px;
        height: 38px;
    }
}

/* ===== Policy Content Styles ===== */
.policy-content {
    line-height: 1.8;
    color: #374151;
}

.policy-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin: 30px 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #e5e7eb;
}

.policy-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #374151;
    margin: 25px 0 12px 0;
}

.policy-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #4b5563;
    margin: 20px 0 10px 0;
}

.policy-content p {
    margin: 15px 0;
    font-size: 16px;
}

.policy-content ul, .policy-content ol {
    margin: 15px 0;
    padding-left: 30px;
}

.policy-content li {
    margin: 8px 0;
    font-size: 16px;
}

.policy-content strong {
    font-weight: 600;
    color: #1f2937;
}

.policy-content a {
    color: #3b82f6;
    text-decoration: underline;
}

.policy-content a:hover {
    color: #1d4ed8;
}

/* ===== Map Placeholder Styles ===== */
.modern-map-placeholder {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #cbd5e1;
    transition: all 0.3s ease;
}

.modern-map-placeholder:hover {
    border-color: #3b82f6;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.modern-map-placeholder-content {
    text-align: center;
    padding: 2rem;
}

.modern-map-placeholder-content svg {
    color: #64748b;
    margin-bottom: 1rem;
}

.modern-map-placeholder-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.modern-map-placeholder-content p {
    color: #64748b;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.modern-map-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.modern-map-view-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
    color: white;
    text-decoration: none;
}

.modern-map-view-btn svg {
    color: white;
}

/* Map Extra Info Styles */
.modern-map-extra-info {
    margin-top: 16px;
    padding: 16px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.modern-map-extra-info p {
    color: #64748b;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.modern-map-extra-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.modern-map-extra-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
    color: white;
    text-decoration: none;
}

.modern-map-extra-btn svg {
    color: white;
}

/* Form Alert Styles */
.modern-success-alert {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border: 1px solid #10b981;
    border-radius: 12px;
    margin-bottom: 24px;
    color: #065f46;
    font-weight: 500;
}

.modern-success-alert svg {
    color: #10b981;
    flex-shrink: 0;
}

.modern-error-alert {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border: 1px solid #ef4444;
    border-radius: 12px;
    margin-bottom: 24px;
    color: #991b1b;
    font-weight: 500;
}

.modern-error-alert svg {
    color: #ef4444;
    flex-shrink: 0;
}

/* ===== Global Alert System ===== */
.alert-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.alert-overlay.show {
    opacity: 1;
    visibility: visible;
}

.alert-container {
    background: white;
    border-radius: 20px;
    padding: 0;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    transform: scale(0.8) translateY(20px);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
    position: relative;
}

.alert-overlay.show .alert-container {
    transform: scale(1) translateY(0);
}

.alert-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px 25px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.alert-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: alertShine 3s ease-in-out infinite;
}

@keyframes alertShine {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
}

.alert-icon {
    font-size: 48px;
    margin-bottom: 10px;
    display: block;
    animation: alertBounce 0.6s ease-out;
}

@keyframes alertBounce {
    0% { transform: scale(0) rotate(0deg); }
    50% { transform: scale(1.2) rotate(180deg); }
    100% { transform: scale(1) rotate(360deg); }
}

.alert-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.alert-body {
    padding: 25px;
    text-align: center;
}

.alert-message {
    font-size: 16px;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 20px;
}

.alert-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.alert-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.alert-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.alert-btn:hover::before {
    left: 100%;
}

.alert-btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.alert-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.alert-btn-secondary {
    background: #F3F4F6;
    color: #374151;
    border: 2px solid #E5E7EB;
}

.alert-btn-secondary:hover {
    background: #E5E7EB;
    transform: translateY(-1px);
}

/* Success Alert */
.alert-success .alert-header {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

.alert-success .alert-icon::before {
    content: '🚀';
}

/* Error Alert */
.alert-error .alert-header {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
}

.alert-error .alert-icon::before {
    content: '⚠️';
}

/* Warning Alert */
.alert-warning .alert-header {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
}

.alert-warning .alert-icon::before {
    content: '⚡';
}

/* Info Alert */
.alert-info .alert-header {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
}

.alert-info .alert-icon::before {
    content: '💡';
}

/* Fun Tech Messages */
.alert-tech .alert-message {
    font-family: 'Courier New', monospace;
    background: #F8FAFC;
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid #667eea;
    margin-bottom: 20px;
}

.alert-tech .alert-message::before {
    content: '> ';
    color: #10B981;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 480px) {
    .alert-container {
        margin: 20px;
        width: calc(100% - 40px);
    }
    
    .alert-header {
        padding: 15px 20px;
    }
    
    .alert-body {
        padding: 20px;
    }
    
    .alert-icon {
        font-size: 40px;
    }
    
    .alert-title {
        font-size: 18px;
    }
    
    .alert-actions {
        flex-direction: column;
    }
    
    .alert-btn {
        width: 100%;
    }
}

/* ===== Policy Pages Styles ===== */
.policy-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.policy-card {
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #E5E7EB;
    overflow: hidden;
}

.policy-content {
    padding: 40px;
    line-height: 1.7;
    color: #374151;
}

.policy-section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1F2937;
    margin: 40px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 3px solid #4F46E5;
    position: relative;
}

.policy-section-title:first-child {
    margin-top: 0;
}

.policy-subsection-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #374151;
    margin: 30px 0 15px 0;
    padding-left: 20px;
    border-left: 4px solid #4F46E5;
}

.policy-item-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #4F46E5;
    margin: 25px 0 10px 0;
}

.policy-paragraph {
    margin: 15px 0;
    color: #4B5563;
    font-size: 1rem;
}

.policy-list-item {
    margin: 8px 0;
    padding-left: 20px;
    position: relative;
    color: #4B5563;
    list-style: none;
}

.policy-list-item::before {
    content: '•';
    color: #4F46E5;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* List container for proper spacing */
.policy-content ul {
    margin: 15px 0;
    padding: 0;
}

.policy-content li {
    margin: 8px 0;
    padding-left: 20px;
    position: relative;
    color: #4B5563;
    list-style: none;
}

.policy-content li::before {
    content: '•';
    color: #4F46E5;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.policy-placeholder {
    text-align: center;
    padding: 60px 40px;
}

.policy-placeholder-icon {
    color: #9CA3AF;
    margin-bottom: 20px;
}

.policy-placeholder-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 10px;
}

.policy-placeholder-text {
    color: #6B7280;
    font-size: 1rem;
}

/* ===== Quote Form Radio Buttons ===== */
input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

input[type="radio"]:checked {
    border-color: #667eea;
    background: #667eea;
}

input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}

input[type="radio"]:hover {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Radio button labels */
label:has(input[type="radio"]) {
    transition: all 0.3s ease;
}

label:has(input[type="radio"]:checked) {
    background: #f0f4ff !important;
    border-color: #667eea !important;
    color: #667eea;
    font-weight: 600;
}

label:has(input[type="radio"]:hover) {
    background: #f8fafc;
    border-color: #cbd5e0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .policy-container {
        padding: 20px 0;
    }
    
    .policy-content {
        padding: 20px;
    }
    
    .policy-section-title {
        font-size: 1.5rem;
    }
    
    .policy-subsection-title {
        font-size: 1.1rem;
    }
    
    /* Mobile radio buttons */
    label:has(input[type="radio"]) {
        padding: 8px 12px;
        font-size: 14px;
    }
}

/* ===== Custom Cursor Styles - Technology Theme ===== */
body {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M3 3L21 21M21 3L3 21" stroke="%23667eea" stroke-width="1.5" stroke-linecap="round" opacity="0.7"/></svg>'), auto;
}

/* Hover states for interactive elements */
.btn:hover, 
a:hover, 
button:hover, 
.nav-link:hover,
.service-link:hover,
.product-link:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none"><circle cx="12" cy="12" r="8" fill="%23667eea" opacity="0.9"/><circle cx="12" cy="12" r="4" fill="white"/></svg>'), pointer;
}

/* Loading states */
.loading,
.btn:disabled,
input:disabled,
textarea:disabled,
select:disabled {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 24 24" fill="none"><circle cx="12" cy="12" r="10" stroke="%23FF6B6B" stroke-width="2" opacity="0.6"/><path d="M12 2A10 10 0 0 1 22 12" stroke="%23FF6B6B" stroke-width="2" stroke-linecap="round"/></svg>'), wait;
}

/* Text selection cursor */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
textarea {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none"><path d="M12 2V22M8 6H16M8 10H16M8 14H16M8 18H12" stroke="%23667eea" stroke-width="1.5" stroke-linecap="round"/></svg>'), text;
}

/* Custom cursor for modals */
.modal-overlay {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 24 24" fill="none"><circle cx="12" cy="12" r="10" fill="%23EF4444" opacity="0.8"/><path d="M15 9L9 15M9 9L15 15" stroke="white" stroke-width="2" stroke-linecap="round"/></svg>'), auto;
}

/* Technology-themed cursor for special elements */
.tech-element {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 24 24" fill="none"><rect x="4" y="4" width="16" height="16" rx="2" fill="%23667eea" opacity="0.8"/><path d="M8 8H16M8 12H16M8 16H12" stroke="white" stroke-width="1.5" stroke-linecap="round"/></svg>'), pointer;
}

/* ===== Service Detail Page Styles ===== */
.breadcrumb {
    background: #f8fafc;
    padding: 20px 0;
    border-bottom: 1px solid #e2e8f0;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.breadcrumb-link {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: #4f46e5;
}

.breadcrumb-separator {
    color: #94a3b8;
}

.breadcrumb-current {
    color: #64748b;
    font-weight: 500;
}

.service-detail {
    padding: 60px 0;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
    align-items: start;
}

.service-content {
    min-width: 0;
}

.service-header {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #f1f5f9;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.service-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.service-icon i {
    font-size: 32px;
    color: white;
}

.service-info {
    flex: 1;
}

.service-title {
    font-size: 36px;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.service-category {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f1f5f9;
    color: #64748b;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.service-category i {
    color: #667eea;
}

.service-excerpt {
    font-size: 18px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.service-description,
.service-features {
    margin-bottom: 40px;
}

.service-description h2,
.service-features h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
}

.description-content {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
}

.features-list {
    display: grid;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.feature-item i {
    color: #10b981;
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.feature-item span {
    color: #374151;
    font-weight: 500;
    line-height: 1.5;
}

.service-image {
    margin-top: 40px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

.service-sidebar {
    position: sticky;
    top: 100px;
}

.service-sidebar .sidebar-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.service-sidebar .sidebar-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 15px 0;
}

.service-sidebar .sidebar-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cta-buttons .btn {
    justify-content: center;
    text-align: center;
}

.related-services {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.related-service {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.related-service:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.related-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.related-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.related-icon i {
    color: white;
    font-size: 16px;
}

.related-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 5px 0;
}

.related-info p {
    font-size: 12px;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}

.quick-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 8px;
}

.contact-item i {
    color: #667eea;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.contact-item span {
    color: #374151;
    font-size: 14px;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 1024px) {
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .service-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto;
    }
    
    .service-title {
        font-size: 28px;
    }
    
    .service-excerpt {
        font-size: 16px;
    }
    
    .service-sidebar .sidebar-card {
        padding: 20px;
    }
}

/* Cursor reset + siyah imleç */
/* Varsayılan ok: siyah SVG tabanlı imleç */
body { cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M2 2 L14 12 L9.5 12 L12 21 L8.5 22 L6 13.5 L2 15 Z" fill="black"/></svg>') 0 0, default !important; }
/* Tıklanabilir öğeler: standart el işareti */
a:hover, button:hover, .btn:hover, .nav-link:hover, .service-link:hover, .product-link:hover, input[type="submit"]:hover, input[type="button"]:hover { cursor: pointer !important; }
/* Metin girişlerinde I-beam */
input[type="text"], input[type="email"], input[type="tel"], input[type="password"], textarea { cursor: text !important; }
/* disabled/loading */
.loading, .btn:disabled, input:disabled, textarea:disabled, select:disabled { cursor: not-allowed !important; }
/* overlay ve özel alanlar */
.modal-overlay, .tech-element { cursor: auto !important; }

