﻿/* ==========================================
   MAKS YAZILIM - PROFESSIONAL WEBSITE CSS
   ========================================== */

/* --- VARIABLES --- */
:root {
    --primary: #6C5CE7;
    --primary-dark: #5A4BD1;
    --primary-light: #A29BFE;
    --secondary: #00CEC9;
    --accent: #FD79A8;
    --dark: #0A0A1A;
    --dark-2: #12122A;
    --dark-3: #1A1A3E;
    --text: #E0E0F0;
    --text-muted: #8888AA;
    --white: #FFFFFF;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.4);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- RESET & BASE --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--dark);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul { list-style: none; }

img { max-width: 100%; display: block; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- GRADIENT TEXT --- */
.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- SECTION TAG --- */
.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(108, 92, 231, 0.15);
    border: 1px solid rgba(108, 92, 231, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-light);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

/* --- SECTION HEADER --- */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(108, 92, 231, 0.6);
}

.btn-outline {
    border: 2px solid var(--glass-border);
    color: var(--text);
    background: transparent;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary-light);
    background: rgba(108, 92, 231, 0.1);
}

.btn-white {
    background: var(--white);
    color: var(--dark);
    font-weight: 700;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-outline-white {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    background: transparent;
}

.btn-outline-white:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-card {
    color: var(--primary-light);
    font-weight: 600;
    padding: 10px 0;
    transition: var(--transition);
}

.btn-card:hover {
    color: var(--secondary);
    gap: 12px;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    width: 100%;
    justify-content: center;
    font-weight: 700;
}

.btn-whatsapp:hover {
    background: #1da851;
    transform: translateY(-2px);
}

/* ==========================================
   PRELOADER
   ========================================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s, visibility 0.5s;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.loader-ring {
    width: 60px;
    height: 60px;
    border: 3px solid var(--dark-3);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.loader span {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ==========================================
   NAVBAR
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 26, 0.95);
    backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--white);
}

.logo i {
    font-size: 1.8rem;
    color: var(--primary);
}

.logo strong {
    font-weight: 800;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links > li > a {
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.nav-links > li > a:hover,
.nav-links > li > a.active {
    color: var(--white);
    background: rgba(108, 92, 231, 0.15);
}

/* Dropdown */
.dropdown { position: relative; }

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: var(--dark-2);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.dropdown-menu li a:hover {
    background: rgba(108, 92, 231, 0.15);
    color: var(--white);
}

.dropdown-menu li a i {
    width: 20px;
    color: var(--primary-light);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-nav {
    padding: 10px 22px;
    font-size: 0.9rem;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(108, 92, 231, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(0, 206, 201, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(253, 121, 168, 0.08) 0%, transparent 50%);
    z-index: 0;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-light);
    border-radius: 50%;
    opacity: 0.3;
    animation: float-particle 15s infinite linear;
}

@keyframes float-particle {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0; }
    10% { opacity: 0.3; }
    90% { opacity: 0.3; }
    100% { transform: translateY(-100vh) translateX(100px); opacity: 0; }
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(108, 92, 231, 0.15);
    border: 1px solid rgba(108, 92, 231, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--primary-light);
    margin-bottom: 20px;
    font-weight: 500;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 500px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Floating Cards */
.hero-visual {
    position: relative;
    height: 500px;
}

.floating-cards {
    position: relative;
    width: 100%;
    height: 100%;
}

.float-card {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 24px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    animation: float 6s ease-in-out infinite;
    transition: var(--transition);
}

.float-card:hover {
    border-color: var(--primary);
    transform: scale(1.05);
}

.float-card i {
    font-size: 2rem;
}

.float-card span {
    font-size: 0.85rem;
    font-weight: 600;
}

.card-1 { top: 10%; left: 10%; animation-delay: 0s; }
.card-1 i { color: var(--primary); }

.card-2 { top: 5%; right: 15%; animation-delay: 1s; }
.card-2 i { color: var(--secondary); }

.card-3 { bottom: 25%; left: 5%; animation-delay: 2s; }
.card-3 i { color: var(--accent); }

.card-4, .card-center { bottom: 15%; right: 10%; animation-delay: 3s; }
.card-4 i, .card-center i { color: #ffc107; }

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Hero Scroll */
.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator {
    width: 26px;
    height: 42px;
    border: 2px solid var(--glass-border);
    border-radius: 13px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-dot {
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(12px); opacity: 0.3; }
}

/* Mouse indicator (compat) */
.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--glass-border);
    border-radius: 13px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    animation: scroll-bounce 2s ease-in-out infinite;
}

/* ==========================================
   FEATURES SECTION
   ========================================== */
.features {
    padding: 80px 0;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(108, 92, 231, 0.15);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    background: rgba(108, 92, 231, 0.15);
    color: var(--primary-light);
}

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
}

/* ==========================================
   SERVICES HOME SECTION
   ========================================== */
.services-home {
    padding: 100px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.service-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(108, 92, 231, 0.15);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover::before {
    opacity: 1;
}

.service-number {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(108, 92, 231, 0.1);
    position: absolute;
    top: 16px;
    right: 20px;
    line-height: 1;
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    background: rgba(108, 92, 231, 0.15);
    color: var(--primary-light);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 16px;
    line-height: 1.6;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-light);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--secondary);
    gap: 10px;
}

.services-cta {
    text-align: center;
    margin-top: 20px;
}

/* ==========================================
   PROCESS SECTION
   ========================================== */
.process {
    padding: 100px 0;
    background: var(--dark-2);
}

.process-steps {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding: 30px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.process-step:hover {
    border-color: var(--primary);
    transform: translateX(5px);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 60px;
}

.step-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.step-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(108, 92, 231, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-left: auto;
}

.process-line {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    margin: 0 auto;
}

/* ==========================================
   STATS SECTION
   ========================================== */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.08), rgba(0, 206, 201, 0.05));
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.stat-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 2rem;
    color: var(--primary-light);
    margin-bottom: 16px;
}

.stat-number-lg {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 8px;
}

.stat-label-lg {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
}

/* ==========================================
   TESTIMONIALS
   ========================================== */
.testimonials {
    padding: 100px 0;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    padding: 40px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    text-align: center;
}

.testimonial-card .stars {
    color: #ffc107;
    font-size: 1.1rem;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    gap: 4px;
}

.testimonial-card p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 24px;
    font-style: italic;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: center;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--white);
}

.testimonial-author strong {
    display: block;
    font-size: 1rem;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 30px;
}

.testimonial-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    background: var(--glass);
    color: var(--text);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.testimonial-dots {
    display: flex;
    gap: 8px;
}

.testimonial-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--glass-border);
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dots .dot.active {
    background: var(--primary);
    width: 30px;
    border-radius: 5px;
}

/* ==========================================
   FAQ SECTION
   ========================================== */
.faq {
    padding: 100px 0;
    background: var(--dark-2);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(108, 92, 231, 0.3);
}

.faq-item.active {
    border-color: var(--primary);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question h3 {
    font-size: 1rem;
    font-weight: 600;
    flex: 1;
    padding-right: 16px;
}

.faq-question i {
    color: var(--primary-light);
    transition: var(--transition);
    font-size: 0.9rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 24px 20px;
    max-height: 300px;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    padding: 80px 0 0;
    background: var(--dark-2);
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-logo i {
    font-size: 1.8rem;
    color: var(--primary);
}

.footer-logo strong {
    font-weight: 800;
}

.footer-about p,
.footer .footer-col p {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-social,
.social-links {
    display: flex;
    gap: 12px;
}

.footer-social a,
.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-social a:hover,
.social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.footer-links-col h4,
.footer .footer-col h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links-col ul li,
.footer .footer-col ul li {
    margin-bottom: 10px;
}

.footer-links-col ul li a,
.footer .footer-col ul li a {
    color: var(--text-muted);
    font-size: 0.92rem;
    transition: var(--transition);
}

.footer-links-col ul li a:hover,
.footer .footer-col ul li a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.footer-contact li,
.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 12px;
}

.footer-contact a,
.contact-info a {
    color: var(--text-muted);
}

.footer-contact a:hover,
.contact-info a:hover {
    color: var(--primary-light);
}

.footer-contact i,
.contact-info i {
    color: var(--primary-light);
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.88rem;
}

/* ==========================================
   BACK TO TOP
   ========================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--primary);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.4);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ==========================================
   PAGE HERO (Sub Pages)
   ========================================== */
.page-hero {
    position: relative;
    padding: 160px 0 80px;
    text-align: center;
    overflow: hidden;
    background: var(--dark);
}

.page-hero .hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(108, 92, 231, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 30%, rgba(0, 206, 201, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.page-hero-content {
    position: relative;
    z-index: 1;
}

.page-hero-content h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 16px;
    line-height: 1.2;
}

.page-hero-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 24px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--primary-light);
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb i {
    font-size: 0.7rem;
}

/* ==========================================
   ABOUT DETAIL (Hakkımızda page)
   ========================================== */
.about-detail {
    padding: 100px 0;
}

.about-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-detail-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-detail-content p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-highlights {
    margin-top: 30px;
}

.highlight-item {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.highlight-icon {
    color: var(--secondary);
    font-size: 1.2rem;
    margin-top: 2px;
}

.highlight-item h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.highlight-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* About visual / Image placeholder */
.about-image-placeholder {
    position: relative;
    height: 500px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-experience-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 16px 20px;
    border-radius: var(--radius);
    text-align: center;
    z-index: 2;
}

.exp-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}

.exp-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.about-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.shape-1 {
    width: 200px;
    height: 200px;
    background: var(--primary);
    top: 20%;
    left: 10%;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 150px;
    height: 150px;
    background: var(--secondary);
    bottom: 20%;
    right: 15%;
    animation: float 6s ease-in-out infinite reverse;
}

.shape-3 {
    width: 100px;
    height: 100px;
    background: var(--accent);
    top: 50%;
    right: 30%;
    animation: float 10s ease-in-out infinite;
}

.about-icon-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    z-index: 1;
}

.about-icon-item {
    width: 80px;
    height: 80px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-light);
    transition: var(--transition);
}

.about-icon-item:hover {
    border-color: var(--primary);
    transform: scale(1.1);
}

/* ==========================================
   MISSION VISION
   ========================================== */
.mission-vision {
    padding: 100px 0;
    background: var(--dark-2);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.mv-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
}

.mv-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.mv-icon {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    background: rgba(108, 92, 231, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-light);
    margin: 0 auto 24px;
}

.mv-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.mv-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ==========================================
   WHY US
   ========================================== */
.why-us {
    padding: 100px 0;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
}

.why-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.why-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(108, 92, 231, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary-light);
    margin: 0 auto 20px;
}

.why-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.why-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* ==========================================
   TECHNOLOGIES
   ========================================== */
.technologies {
    padding: 100px 0;
    background: var(--dark-2);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 30px 16px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.tech-item:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
}

.tech-item i {
    font-size: 2.5rem;
    color: var(--primary-light);
}

.tech-item span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* ==========================================
   ALL SERVICES (Hizmetlerimiz page)
   ========================================== */
.all-services {
    padding: 80px 0;
}

.service-detail-card {
    display: flex;
    gap: 40px;
    padding: 50px 40px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    margin-bottom: 30px;
    transition: var(--transition);
    scroll-margin-top: 100px;
}

.service-detail-card:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(108, 92, 231, 0.1);
}

.service-detail-icon {
    position: relative;
    min-width: 80px;
    text-align: center;
}

.service-detail-icon > i {
    font-size: 2.5rem;
    color: var(--primary-light);
    margin-bottom: 8px;
}

.service-detail-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    color: rgba(108, 92, 231, 0.3);
}

.service-detail-content h2 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.service-detail-content > p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.service-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text);
}

.service-feature-item i {
    color: var(--secondary);
    font-size: 0.85rem;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
}

.contact-form-wrapper {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.contact-form-wrapper h2 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.form-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--dark-3);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: var(--text);
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238888aa' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.form-success {
    text-align: center;
    padding: 40px;
}

.form-success i {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 16px;
}

.form-success h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.form-success p {
    color: var(--text-muted);
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-wrapper h2 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-card {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.info-card:hover {
    border-color: var(--primary);
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(108, 92, 231, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.info-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.info-card p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.5;
}

.info-card p a {
    color: var(--text-muted);
}

.info-card p a:hover {
    color: var(--primary-light);
}

.contact-social h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.contact-whatsapp {
    margin-top: 10px;
}

/* MAP */
.map-section {
    padding: 0 0 80px;
}

.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

/* ==========================================
   ABOUT (index page compat)
   ========================================== */
.about {
    padding: 100px 0;
    background: var(--dark-2);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}

.about-content > p {
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.7;
}

.about-features { display: flex; flex-direction: column; gap: 16px; }

.about-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.about-feature .feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    margin: 0;
    flex-shrink: 0;
}

.about-feature h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.about-feature p {
    color: var(--text-muted);
    font-size: 0.88rem;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-stat {
    text-align: center;
    padding: 30px 20px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.about-stat:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.about-stat i {
    font-size: 1.5rem;
    color: var(--primary-light);
    margin-bottom: 10px;
}

.about-stat .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 4px;
}

.about-stat span:last-child {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ==========================================
   PRODUCTS (compat - not used in new site)
   ========================================== */
.products {
    padding: 100px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.product-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.product-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.lojistik-gradient { background: rgba(108, 92, 231, 0.15); color: var(--primary-light); }
.servis-gradient { background: rgba(0, 206, 201, 0.15); color: var(--secondary); }
.baca-gradient { background: rgba(253, 121, 168, 0.15); color: var(--accent); }

.product-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.product-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.product-features {
    margin-bottom: 24px;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--text);
}

.product-features li i {
    color: var(--secondary);
    font-size: 0.8rem;
}

/* ==========================================
   CTA (legacy compat)
   ========================================== */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta .cta-content { text-align: center; position: relative; z-index: 1; }
.cta .cta-content h2 { font-size: 2.5rem; font-weight: 800; color: var(--white); margin-bottom: 16px; }
.cta .cta-content p { font-size: 1.1rem; color: rgba(255,255,255,0.8); margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta .cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ==========================================
   ÜRÜNLER SAYFASI
   ========================================== */

/* Stats bar */
.prod-stats-bar {
    background: var(--glass);
    border-bottom: 1px solid var(--glass-border);
    padding: 32px 0;
}

.prod-stats-bar .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.prod-stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    border-right: 1px solid var(--glass-border);
}

.prod-stat-item:last-child {
    border-right: none;
}

.prod-stat-item > i {
    font-size: 2rem;
    color: var(--primary-light);
    min-width: 40px;
}

.prod-stat-item div {
    display: flex;
    flex-direction: column;
}

.prod-stat-item strong {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.prod-stat-item span {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Products section */
.products-section {
    padding: 100px 0;
}

.products-section .container {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Product card */
.prod-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition);
}

.prod-card:hover {
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(108, 92, 231, 0.15);
    transform: translateY(-4px);
}

/* Card header */
.prod-card-header {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px 40px;
    position: relative;
    overflow: hidden;
}

.prod-card-header::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.6;
}

.maks-erp-grad   { background: linear-gradient(135deg, rgba(108,92,231,0.3) 0%, rgba(108,92,231,0.05) 100%); border-bottom: 1px solid rgba(108,92,231,0.3); }
.maks-crm-grad   { background: linear-gradient(135deg, rgba(0,206,201,0.3) 0%, rgba(0,206,201,0.05) 100%);   border-bottom: 1px solid rgba(0,206,201,0.3); }
.maks-store-grad { background: linear-gradient(135deg, rgba(253,121,168,0.3) 0%, rgba(253,121,168,0.05) 100%); border-bottom: 1px solid rgba(253,121,168,0.3); }
.maks-pos-grad   { background: linear-gradient(135deg, rgba(255,184,0,0.3) 0%, rgba(255,184,0,0.05) 100%);   border-bottom: 1px solid rgba(255,184,0,0.3); }
.maks-panel-grad { background: linear-gradient(135deg, rgba(39,174,96,0.3) 0%, rgba(39,174,96,0.05) 100%);   border-bottom: 1px solid rgba(39,174,96,0.3); }
.maks-bot-grad   { background: linear-gradient(135deg, rgba(231,76,60,0.3) 0%, rgba(231,76,60,0.05) 100%);   border-bottom: 1px solid rgba(231,76,60,0.3); }

.prod-logo {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
}

.prod-header-info {
    position: relative;
    z-index: 1;
    flex: 1;
}

.prod-header-info h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    margin: 0 0 4px;
}

.prod-header-info p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    margin: 0;
}

.prod-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 8px;
}

.prod-badge-new {
    background: var(--secondary);
}

.prod-category-tag {
    margin-left: auto;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.85);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    z-index: 1;
    white-space: nowrap;
    backdrop-filter: blur(10px);
}

/* Card body */
.prod-card-body {
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 32px;
    grid-template-areas:
        "desc   feat"
        "pricing pricing"
        "actions actions";
}

.prod-description { grid-area: desc; }
.prod-features-list { grid-area: feat; }
.prod-pricing { grid-area: pricing; }
.prod-actions { grid-area: actions; }

.prod-description p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 20px;
}

.prod-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.prod-tags span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(108,92,231,0.1);
    border: 1px solid rgba(108,92,231,0.2);
    color: var(--primary-light);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 5px 12px;
    border-radius: 20px;
}

.prod-tags span i {
    font-size: 0.7rem;
}

.prod-features-list h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.prod-features-list h4 i {
    color: var(--accent);
}

.prod-features-list ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.prod-features-list ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.5;
}

.prod-features-list ul li i {
    color: var(--secondary);
    font-size: 0.85rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Pricing plans */
.prod-pricing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    border-top: 1px solid var(--glass-border);
    padding-top: 32px;
}

.price-plan {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    transition: var(--transition);
    cursor: default;
}

.price-plan:hover {
    border-color: var(--primary);
    background: rgba(108,92,231,0.05);
}

.price-plan.featured {
    background: rgba(108,92,231,0.12);
    border-color: var(--primary);
    position: relative;
}

.price-plan.featured::before {
    content: 'Önerilen';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 20px;
    white-space: nowrap;
}

.plan-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.plan-price {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
}

.plan-price small {
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--text-muted);
}

.plan-limit {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Actions */
.prod-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid var(--glass-border);
    padding-top: 32px;
}

/* Why choose section */
.prod-why {
    padding: 100px 0;
    background: rgba(255,255,255,0.02);
    border-top: 1px solid var(--glass-border);
}

.prod-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 60px;
}

.prod-why-item {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: var(--transition);
}

.prod-why-item:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(108,92,231,0.15);
}

.prod-why-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(108,92,231,0.15);
    border: 1px solid rgba(108,92,231,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary-light);
    margin-bottom: 20px;
}

.prod-why-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.prod-why-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 1024px) {
    .prod-stats-bar .container {
        grid-template-columns: repeat(2, 1fr);
    }
    .prod-stat-item {
        border-right: none;
        border-bottom: 1px solid var(--glass-border);
    }
    .prod-card-body {
        grid-template-columns: 1fr;
        grid-template-areas:
            "desc"
            "feat"
            "pricing"
            "actions";
    }
    .prod-card-header {
        padding: 24px 28px;
        flex-wrap: wrap;
    }
    .prod-category-tag {
        margin-left: 0;
    }
    .prod-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .prod-stats-bar .container {
        grid-template-columns: 1fr 1fr;
    }
    .prod-card-body {
        padding: 28px 20px;
    }
    .prod-pricing {
        grid-template-columns: 1fr;
    }
    .prod-header-info h2 {
        font-size: 1.4rem;
    }
    .prod-why-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .prod-stats-bar .container {
        grid-template-columns: 1fr;
    }
    .prod-card-header {
        padding: 20px;
    }
    .prod-actions {
        flex-direction: column;
    }
    .prod-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================
   AOS ANIMATIONS
   ========================================== */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.95);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content p {
        margin: 0 auto 32px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .about-detail-grid {
        grid-template-columns: 1fr;
    }

    .about-detail-visual {
        order: -1;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .service-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mv-grid {
        grid-template-columns: 1fr;
    }

    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tech-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-card {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--dark-2);
        flex-direction: column;
        padding: 80px 30px 30px;
        transition: right 0.3s ease;
        border-left: 1px solid var(--glass-border);
        z-index: 999;
        gap: 0;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links > li {
        width: 100%;
    }

    .nav-links > li > a {
        display: block;
        padding: 14px 16px;
        font-size: 1rem;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        border: none;
        padding: 0 0 0 20px;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .btn-nav {
        display: none;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 24px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .service-features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .tech-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .cta-content h2,
    .cta-section .cta-content h2 {
        font-size: 1.8rem;
    }

    .page-hero-content h1 {
        font-size: 2.2rem;
    }

    .about-image-placeholder {
        height: 350px;
    }

    .contact-form-wrapper {
        padding: 24px;
    }

    .process-step {
        flex-direction: column;
        gap: 16px;
    }

    .step-icon {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .service-features-grid {
        grid-template-columns: 1fr;
    }

    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        flex-direction: column;
        align-items: center;
    }

    .btn-lg {
        padding: 14px 24px;
        font-size: 0.9rem;
    }

    .testimonial-card {
        padding: 24px;
    }

    .testimonial-card p {
        font-size: 1rem;
    }
}

/* ==========================================
   EKSİK DEĞİŞKEN DÜZELTMESİ
   ========================================== */
:root {
    --radius-xl: 24px;
}

/* ==========================================
   UTILITY
   ========================================== */
.text-center {
    text-align: center;
}

/* ==========================================
   HİZMET DETAY SAYFASI (ServicesDetail)
   ========================================== */
.service-detail-section {
    padding: 80px 0;
}

.service-detail-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: flex-start;
}

.service-detail-main h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
}

.service-banner-img {
    width: 100%;
    border-radius: var(--radius-lg);
    object-fit: cover;
    max-height: 400px;
    margin-bottom: 32px;
    border: 1px solid var(--glass-border);
}

.service-content,
.service-description {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 32px;
}

    .service-content h2,
    .service-content h3,
    .service-content h4 {
        color: var(--white);
        margin: 24px 0 12px;
    }

    .service-content p {
        margin-bottom: 16px;
    }

    .service-content ul {
        list-style: disc;
        padding-left: 20px;
        margin-bottom: 16px;
    }

        .service-content ul li {
            margin-bottom: 8px;
        }

.service-cta-box {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    margin-top: 40px;
}

    .service-cta-box h3 {
        font-size: 1.3rem;
        font-weight: 700;
        margin-bottom: 20px;
    }

/* Sidebar — Hizmet */
.service-detail-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-widget {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 28px;
}

    .sidebar-widget h4 {
        font-size: 1rem;
        font-weight: 700;
        color: var(--white);
        margin-bottom: 20px;
        padding-bottom: 12px;
        border-bottom: 1px solid var(--glass-border);
    }

.sidebar-service-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

    .sidebar-service-list li a {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 14px;
        border-radius: 10px;
        font-size: 0.92rem;
        color: var(--text-muted);
        transition: var(--transition);
    }

        .sidebar-service-list li a i {
            width: 20px;
            color: var(--primary-light);
            font-size: 0.9rem;
        }

        .sidebar-service-list li a:hover {
            background: rgba(108, 92, 231, 0.1);
            color: var(--white);
        }

    .sidebar-service-list li.active a {
        background: rgba(108, 92, 231, 0.15);
        color: var(--primary-light);
        font-weight: 600;
    }

.sidebar-contact p {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 16px;
    line-height: 1.6;
}

/* ==========================================
   ÜRÜN DETAY SAYFASI (ProjectDetail)
   ========================================== */
.product-detail-section {
    padding: 80px 0;
}

.product-detail-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: flex-start;
}

.product-detail-main h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 24px;
}

.product-banner-img {
    width: 100%;
    border-radius: var(--radius-lg);
    object-fit: cover;
    max-height: 420px;
    margin-bottom: 32px;
    border: 1px solid var(--glass-border);
}

.product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
    padding: 20px 24px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
}

.product-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

    .product-meta-item i {
        color: var(--primary-light);
    }

.product-content {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

    .product-content h2,
    .product-content h3,
    .product-content h4 {
        color: var(--white);
        margin: 24px 0 12px;
    }

    .product-content p {
        margin-bottom: 16px;
    }

    .product-content ul {
        list-style: disc;
        padding-left: 20px;
        margin-bottom: 16px;
    }

.product-gallery {
    margin-bottom: 32px;
}

.product-img {
    width: 100%;
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
}

.product-cta-box {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    margin-top: 40px;
}

    .product-cta-box h3 {
        font-size: 1.3rem;
        font-weight: 700;
        margin-bottom: 20px;
    }

/* Sidebar — Ürün */
.product-detail-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-product-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .sidebar-product-list li a {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 10px 14px;
        border-radius: 10px;
        font-size: 0.92rem;
        color: var(--text-muted);
        transition: var(--transition);
    }

        .sidebar-product-list li a:hover {
            background: rgba(108, 92, 231, 0.1);
            color: var(--white);
        }

    .sidebar-product-list li.active a {
        background: rgba(108, 92, 231, 0.15);
        color: var(--primary-light);
        font-weight: 600;
    }

    .sidebar-product-list li img {
        width: 40px;
        height: 40px;
        border-radius: 8px;
        object-fit: cover;
        border: 1px solid var(--glass-border);
        flex-shrink: 0;
    }

.sidebar-product-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(108, 92, 231, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 1rem;
    flex-shrink: 0;
}

/* ==========================================
   HAKKIMIZDA — Tabs & Image
   ========================================== */
.about-img {
    width: 100%;
    border-radius: var(--radius-lg);
    object-fit: cover;
    border: 1px solid var(--glass-border);
}

.about-tabs {
    background: var(--dark-2);
    padding: 24px 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.about-tabs-nav {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.about-tab-link {
    display: inline-flex;
    align-items: center;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-muted);
    border: 1px solid var(--glass-border);
    background: var(--glass);
    transition: var(--transition);
}

    .about-tab-link:hover {
        color: var(--white);
        border-color: var(--primary);
        background: rgba(108, 92, 231, 0.1);
    }

    .about-tab-link.active {
        background: linear-gradient(135deg, var(--primary), var(--primary-dark));
        border-color: transparent;
        color: var(--white);
        font-weight: 600;
    }

/* ==========================================
   RESPONSIVE — Yeni sayfalar
   ========================================== */
@media (max-width: 1024px) {
    .service-detail-layout,
    .product-detail-layout {
        grid-template-columns: 1fr;
    }

    .service-detail-sidebar,
    .product-detail-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .service-detail-section,
    .product-detail-section {
        padding: 60px 0;
    }

    .service-cta-box,
    .product-cta-box {
        padding: 24px;
    }

    .service-detail-main h2,
    .product-detail-main h2 {
        font-size: 1.6rem;
    }

    .product-meta {
        gap: 12px;
        padding: 16px;
    }

    .about-tabs-nav {
        gap: 8px;
    }

    .about-tab-link {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .sidebar-widget {
        padding: 20px;
    }

    .service-cta-box,
    .product-cta-box {
        padding: 20px;
    }

    .prod-actions {
        flex-direction: column;
    }

        .prod-actions .btn {
            width: 100%;
            justify-content: center;
        }
}

/* ==========================================
   WHATSAPP FLOAT BUTTON
   ========================================== */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--white);
    z-index: 998;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

    .whatsapp-float.visible {
        opacity: 1;
        visibility: visible;
        transform: scale(1);
    }

    .whatsapp-float:hover {
        background: #1da851;
        transform: scale(1.1);
        box-shadow: 0 6px 28px rgba(37, 211, 102, 0.7);
    }

.wa-tooltip {
    position: absolute;
    right: calc(100% + 12px);
    background: var(--dark-2);
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
    padding: 6px 14px;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}

.whatsapp-float:hover .wa-tooltip {
    opacity: 1;
}

/* ==========================================
   FORM ALERT
   ========================================== */
.form-alert {
    padding: 14px 18px;
    border-radius: var(--radius);
    font-size: 0.92rem;
    font-weight: 500;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-alert-error {
    background: rgba(231, 76, 60, 0.12);
    border: 1px solid rgba(231, 76, 60, 0.3);
    color: #e74c3c;
}

.form-alert-success {
    background: rgba(39, 174, 96, 0.12);
    border: 1px solid rgba(39, 174, 96, 0.3);
    color: #27ae60;
}

/* ==========================================
   TOAST NOTIFICATION
   ========================================== */
.toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(80px);
    background: var(--dark-2);
    border: 1px solid var(--glass-border);
    color: var(--white);
    padding: 14px 24px;
    border-radius: var(--radius);
    font-size: 0.92rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 99999;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-lg);
    min-width: 280px;
    justify-content: center;
}

    .toast.show {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

.toast-success i {
    color: #27ae60;
}

.toast-error i {
    color: #e74c3c;
}

/* ==========================================
   ERROR PAGE
   ========================================== */
.error-page {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 60px;
    overflow: hidden;
}

.error-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.error-code {
    font-size: 10rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    opacity: 0.8;
}

.error-content h1 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.error-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 40px;
    line-height: 1.7;
}

.error-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Author avatar image (testimonials) */
.author-avatar-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
    flex-shrink: 0;
}

/* ==========================================
   RESPONSIVE — Yeni eklenenler
   ========================================== */
@media (max-width: 768px) {
    .error-code {
        font-size: 6rem;
    }

    .error-content h1 {
        font-size: 1.8rem;
    }

    .whatsapp-float {
        bottom: 80px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .error-code {
        font-size: 4.5rem;
    }

    .toast {
        min-width: calc(100vw - 40px);
    }
}
/* FAQ Toggle */
.faq-item.faq-hidden {
    display: none;
}

.faq-toggle-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
}

.faq-count-badge {
    background: var(--primary-light, #ede9fe);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
}

#faqToggleIcon {
    transition: transform 0.3s ease;
}

    #faqToggleIcon.rotated {
        transform: rotate(180deg);
    }