/* ==========================================================================
www.atilimdijital.com - Atılım Dijital
   ========================================================================== */

/* ==========================================================================
   CSS VARIABLES - KAPSAMLI DESIGN TOKENS
   ========================================================================== */
:root {
    /* Primary Orange Palette */
    --primary: #FF6B00;
    --primary-hover: #E65100;
    --primary-light: #FF8F3D;
    --primary-dark: #CC5500;
    --primary-soft: rgba(255, 107, 0, 0.1);
    --primary-gradient: linear-gradient(135deg, #FF6B00 0%, #FF9E00 100%);
    
    /* Secondary Colors */
    --secondary: #1A1A1A;
    --text-main: #2D2D2D;
    --text-light: #666666;
    --text-white: #FFFFFF;
    --text-muted: #999999;
    
    /* Success (WhatsApp Green) */
    --success: #25D366;
    --success-hover: #20BA5A;
    --success-soft: rgba(37, 211, 102, 0.1);
    
    /* Info Blue */
    --info: #3B82F6;
    --info-soft: rgba(59, 130, 246, 0.1);
    
    /* Background Colors */
    --bg-body: #F4F6F9;
    --bg-white: #FFFFFF;
    --bg-light: #F9FAFB;
    --bg-dark: #1A1A1A;
    
    /* Glass Morphism Effects */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-blur: blur(20px);
    --glass-sm-bg: rgba(255, 255, 255, 0.4);
    --glass-sm-blur: blur(10px);
    
    /* Shadows */
    --shadow-xs: 0 2px 4px rgba(0, 0, 0, 0.02);
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 12px 24px -6px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 35px 60px -15px rgba(0, 0, 0, 0.2);
    --shadow-orange: 0 10px 30px -5px rgba(255, 107, 0, 0.3);
    --shadow-orange-lg: 0 15px 40px -5px rgba(255, 107, 0, 0.4);
    
    /* Border Radius */
    --radius-xs: 4px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-pill: 100px;
    
    /* Typography */
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    --font-size-base: 16px;
    
    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-2xl: 64px;
    --spacing-3xl: 96px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.4s ease;
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: var(--font-size-base);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-base);
}

a:hover {
    color: var(--primary);
}

ul, ol {
    list-style: none;
}

img, svg {
    display: block;
    max-width: 100%;
    height: auto;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.center-text {
    text-align: center;
}

.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
}

.glass-sm {
    background: var(--glass-sm-bg);
    backdrop-filter: var(--glass-sm-blur);
    -webkit-backdrop-filter: var(--glass-sm-blur);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.mt-4 { margin-top: var(--spacing-lg); }
.mt-5 { margin-top: var(--spacing-xl); }
.mb-4 { margin-bottom: var(--spacing-lg); }

/* ==========================================================================
   SPATIAL BACKGROUND EFFECTS
   ========================================================================== */
.spatial-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: floatOrb ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.15), transparent 70%);
    top: -200px;
    right: -100px;
    animation-duration: 12s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(100, 116, 139, 0.1), transparent 70%);
    bottom: -150px;
    left: -150px;
    animation-duration: 18s;
    animation-direction: alternate-reverse;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 158, 0, 0.1), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 15s;
}

@keyframes floatOrb {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, 30px) scale(1.1); }
    100% { transform: translate(0, 0) scale(1); }
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 107, 0, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 107, 0, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.4;
}

/* Float Animation */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

[data-spatial="float"] {
    animation: float 6s ease-in-out infinite;
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1280px;
    z-index: 1000;
    padding: 12px 24px;
    border-radius: var(--radius-pill);
    transition: all var(--transition-slow);
}

.navbar.scroll-down {
    transform: translateX(-50%) translateY(-120%);
}

.navbar.scroll-up {
    top: 10px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-lg);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--secondary);
    transition: all var(--transition-base);
}

.brand:hover {
    transform: translateX(5px);
    color: var(--secondary);
}

.brand-icon {
    width: 42px;
    height: 42px;
    background: var(--primary);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-orange);
    transition: all var(--transition-base);
}

.brand:hover .brand-icon {
    box-shadow: var(--shadow-orange-lg);
    transform: rotate(5deg);
}

.brand-icon svg {
    width: 24px;
    height: 24px;
}

.brand-text {
    color: var(--secondary);
}

.brand-text .accent {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-main);
    font-size: 0.95rem;
    padding: 8px 0;
    position: relative;
    display: block;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition-base);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown > a {
    cursor: pointer;
}

.dropdown-content {
    position: absolute;
    top: calc(100% + 15px);
    left: 0;
    min-width: 220px;
    padding: 12px;
    border-radius: var(--radius-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-lg);
    z-index: 100;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    color: var(--text-main);
    transition: all var(--transition-fast);
}

.dropdown-content a::after {
    display: none;
}

.dropdown-content a:hover {
    background: var(--primary-soft);
    color: var(--primary);
    transform: translateX(5px);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    background: transparent;
}

.mobile-toggle:hover {
    background: var(--primary-soft);
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--secondary);
    border-radius: 2px;
    transition: all var(--transition-base);
    display: block;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    white-space: nowrap;
    text-align: center;
}

.btn svg {
    flex-shrink: 0;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-orange-lg);
    color: white;
}

.btn-success {
    background: var(--success);
    color: white;
    box-shadow: 0 10px 30px -5px rgba(37, 211, 102, 0.3);
}

.btn-success:hover {
    background: var(--success-hover);
    transform: translateY(-2px);
    box-shadow: 0 15px 40px -5px rgba(37, 211, 102, 0.4);
    color: white;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-icon {
    padding: 10px;
    border-radius: 50%;
    background: var(--bg-white);
    color: var(--text-main);
    box-shadow: var(--shadow-sm);
    width: 44px;
    height: 44px;
}

.btn-icon:hover {
    background: var(--primary-soft);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}

.btn-xl {
    padding: 18px 42px;
    font-size: 1.1rem;
}

/* ==========================================================================
   BREADCRUMB
   ========================================================================== */
.breadcrumb-container {
    margin-top: 110px;
    margin-bottom: 20px;
}

.breadcrumb {
    padding: 12px 24px;
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--text-light);
    transition: all var(--transition-base);
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb .sep {
    color: #ccc;
    user-select: none;
}

.breadcrumb .current {
    color: var(--primary);
    font-weight: 600;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    padding-top: 160px;
    padding-bottom: 80px;
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.home-hero {
    min-height: 85vh;
    padding-top: 180px;
}

.badge-pill {
    background: white;
    padding: 10px 24px;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    box-shadow: var(--shadow-md);
    display: inline-block;
    margin-bottom: 28px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.badge-orange {
    background: var(--primary-soft);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    display: inline-block;
}

.display-1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    color: var(--secondary);
}

.lead {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 600px;
    line-height: 1.7;
}

.lead-lg {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-btns.center {
    justify-content: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text-wrapper h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--secondary);
}

.hero-visual {
    position: relative;
}

.hero-stats {
    display: flex;
    gap: 20px;
    margin-top: 60px;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-box {
    padding: 24px 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    min-width: 140px;
}

.stat-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
}

/* Spatial Card */
.spatial-card {
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.spatial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
}

.card-icon-lg {
    width: 68px;
    height: 68px;
    background: var(--primary-soft);
    color: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.card-icon-lg svg {
    width: 36px;
    height: 36px;
}

.spatial-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--secondary);
}

.card-subtitle {
    color: var(--text-light);
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.feature-list {
    margin-top: 24px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-weight: 500;
    color: var(--text-main);
    font-size: 0.95rem;
}

.feature-list li svg {
    color: var(--primary);
    flex-shrink: 0;
}

/* ==========================================================================
   CONTENT SECTION
   ========================================================================== */
.content-section {
    padding: 60px 0;
}

.grid-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.main-article {
    border-radius: var(--radius-lg);
    background: white;
    padding: 48px;
    box-shadow: var(--shadow-sm);
}

.prose-content {
    margin-bottom: 40px;
}

.prose-content h2 {
    font-size: 1.9rem;
    margin-bottom: 20px;
    color: var(--secondary);
    position: relative;
    padding-left: 20px;
}

.prose-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    bottom: 6px;
    width: 4px;
    background: var(--primary);
    border-radius: 4px;
}

.prose-content p {
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.8;
}

.spacer {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.1), transparent);
    margin: 48px 0;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 32px;
}

.feature-item {
    padding: 24px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    position: relative;
    transition: all var(--transition-base);
}

.feature-item:hover {
    background: white;
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.feature-number {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-soft);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-soft);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.feature-item h3 {
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 8px;
}

/* Process Steps */
.process-steps {
    display: grid;
    gap: 16px;
    margin-top: 32px;
}

.step-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.step-card:hover {
    transform: translateX(10px);
    background: white;
    box-shadow: var(--shadow-md);
}

.step-num {
    width: 40px;
    height: 40px;
    background: var(--secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: var(--secondary);
}

.step-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* CTA Inline */
.cta-inline {
    margin-top: 48px;
    padding: 40px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 32px;
    position: relative;
    overflow: hidden;
}

.cta-inline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
}

.cta-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-soft);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-icon svg {
    width: 32px;
    height: 32px;
}

.cta-content {
    flex: 1;
}

.cta-content h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
    color: var(--secondary);
}

.cta-content p {
    color: var(--text-light);
    margin: 0;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Location Section */
.location-section {
    margin-top: 48px;
}

.location-section h2 {
    font-size: 1.8rem;
    margin-bottom: 24px;
    color: var(--secondary);
}

/* ==========================================================================
   SIDEBAR
   ========================================================================== */
.sidebar {
    position: relative;
}

.sticky-widget {
    position: sticky;
    top: 120px;
}

.widget-card {
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    background: white;
    margin-bottom: 24px;
}

.widget-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--secondary);
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-radius: var(--radius-md);
    background: var(--bg-light);
    margin-bottom: 12px;
    transition: all var(--transition-base);
}

.contact-row:hover {
    background: white;
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.icon-box {
    width: 44px;
    height: 44px;
    background: var(--primary-soft);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-box.success {
    background: var(--success-soft);
    color: var(--success);
}

.icon-box.info {
    background: var(--info-soft);
    color: var(--info);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.contact-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
}

.info-list {
    margin: 0;
    padding: 0;
}

.info-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--bg-light);
    font-size: 0.95rem;
    color: var(--text-main);
}

.info-list li:last-child {
    border-bottom: none;
}

.info-list li svg {
    color: var(--primary);
    flex-shrink: 0;
}

.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tags-cloud-lg {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.tag {
    padding: 8px 16px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
    transition: all var(--transition-fast);
    border: 1px solid transparent;
}

.tag:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
}

.tag-lg {
    padding: 12px 24px;
    background: white;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    color: var(--text-main);
    font-weight: 600;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-xs);
}

.tag-lg:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary-soft);
    color: var(--primary);
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 16px;
    color: var(--secondary);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.service-card {
    padding: 40px;
    border-radius: var(--radius-lg);
    transition: all var(--transition-slow);
    background: white;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    top: 0;
}

.service-card:hover {
    top: -10px;
    box-shadow: var(--shadow-lg);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all var(--transition-base);
}

.card-icon svg {
    width: 32px;
    height: 32px;
}

.service-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--secondary);
}

.service-card p {
    color: var(--text-light);
    flex-grow: 1;
    margin-bottom: 24px;
    line-height: 1.6;
}

.link-arrow {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-base);
}

.service-card:hover .link-arrow {
    gap: 12px;
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content {
    max-width: 580px;
}

.about-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 24px;
    color: var(--secondary);
}

.about-content .lead {
    font-size: 1.2rem;
    color: var(--text-main);
    margin-bottom: 20px;
    font-weight: 500;
}

.about-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 32px;
}

.feature-boxes {
    display: grid;
    gap: 16px;
}

.feature-box-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.feature-box-item:hover {
    background: white;
    box-shadow: var(--shadow-sm);
}

.fbox-icon {
    width: 52px;
    height: 52px;
    background: var(--primary-soft);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fbox-icon svg {
    width: 28px;
    height: 28px;
}

.fbox-content h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: var(--secondary);
}

.fbox-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.about-visual {
    position: relative;
}

.visual-card {
    padding: 40px;
    border-radius: var(--radius-xl);
}

.metric-row {
    display: flex;
    flex-direction: column;
    padding: 24px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.metric-row:last-child {
    border-bottom: none;
}

.metric-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
    line-height: 1;
}

.metric-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */
.cta-section {
    padding: 80px 0;
}

.cta-box {
    padding: 60px;
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--primary-gradient);
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
    color: var(--secondary);
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 36px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

/* ==========================================================================
   LOCATIONS SECTION
   ========================================================================== */
.locations-section {
    padding: 100px 0;
    background: var(--bg-light);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background: var(--secondary);
    color: white;
    padding: 80px 0 30px;
    margin-top: 100px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 24px;
    color: white;
}

.footer-brand {
    max-width: 350px;
}

.footer-brand .brand-icon {
    width: 40px;
    height: 40px;
}

.footer-brand .brand-text {
    font-weight: 800;
    font-size: 1.3rem;
    color: white;
}

.footer-brand .accent {
    color: var(--primary);
}

.footer-desc {
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
    color: white;
}

.social-links a svg {
    width: 20px;
    height: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    display: block;
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    transition: all var(--transition-base);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 8px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.footer-contact li svg {
    color: var(--primary);
    flex-shrink: 0;
}

.footer-contact a {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    transition: color var(--transition-base);
}

.footer-contact a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--success);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all var(--transition-base);
    animation: pulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    background: var(--success-hover);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
    animation: none;
    color: white;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

@keyframes pulse {
    0%, 100% { 
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% { 
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 
                    0 0 0 10px rgba(37, 211, 102, 0.2);
    }
}

/* ==========================================================================
   RESPONSIVE DESIGN - TABLET
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-content,
    .grid-layout,
    .footer-grid,
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .about-content {
        max-width: 100%;
    }
    
    .cta-inline {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 968px) {
    /* Navigation Mobile */
    .navbar {
        width: 90%;
        padding: 10px 20px;
    }
    
    .nav-links {
        display: none;
        position: fixed;
        top: 90px;
        left: 5%;
        right: 5%;
        background: white;
        flex-direction: column;
        padding: 24px;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-xl);
        gap: 0;
        max-height: calc(100vh - 120px);
        overflow-y: auto;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        width: 100%;
        border-bottom: 1px solid var(--bg-light);
    }
    
    .nav-links li:last-child {
        border-bottom: none;
    }
    
    .nav-links a {
        display: block;
        padding: 16px 12px;
    }
    
    .nav-links a::after {
        display: none;
    }
    
    .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 8px;
        box-shadow: none;
        background: var(--bg-light);
        padding: 8px;
    }
    
    .nav-actions {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    /* Hero Mobile */
    .hero-section {
        padding-top: 140px;
        text-align: center;
    }
    
    .home-hero {
        padding-top: 160px;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column-reverse;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .hero-text-wrapper {
        text-align: center;
    }
    
    .lead {
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Services Mobile */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Footer Mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    /* Content Mobile */
    .main-article {
        padding: 32px 24px;
    }
    
    .sidebar {
        order: -1;
    }
    
    .sticky-widget {
        position: static;
    }
}

/* ==========================================================================
   RESPONSIVE DESIGN - MOBILE
   ========================================================================== */
@media (max-width: 640px) {
    .display-1 {
        font-size: 2.2rem;
    }
    
    .lead-lg {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .stat-box {
        padding: 16px;
        min-width: auto;
    }
    
    .stat-num {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-actions .btn {
        width: 100%;
    }
    
    .cta-box {
        padding: 40px 24px;
    }
    
    .breadcrumb-container {
        margin-top: 100px;
    }
    
    .breadcrumb {
        font-size: 0.8rem;
        padding: 10px 16px;
    }
    
    .services-grid {
        gap: 24px;
    }
    
    .service-card {
        padding: 32px 24px;
    }
    
    .about-section {
        padding: 60px 0;
    }
    
    .services-section,
    .locations-section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .footer {
        padding: 60px 0 30px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
    
    .spatial-card {
        padding: 32px 24px;
    }
    
    .tags-cloud-lg {
        gap: 8px;
    }
    
    .tag-lg {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .container {
        width: 95%;
    }
    
    .navbar {
        width: 95%;
        padding: 8px 16px;
    }
    
    .brand {
        font-size: 1.1rem;
        gap: 8px;
    }
    
    .brand-icon {
        width: 36px;
        height: 36px;
    }
    
    .brand-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .btn-lg {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
    
    .btn-xl {
        padding: 16px 32px;
        font-size: 1rem;
    }
    
    .prose-content h2 {
        font-size: 1.5rem;
    }
    
    .feature-item {
        padding: 20px;
    }
    
    .step-card {
        padding: 20px;
        gap: 16px;
    }
    
    .widget-card {
        padding: 24px;
    }
}

/* ==========================================================================
   PRINT STYLES
   ========================================================================== */
@media print {
    .navbar,
    .breadcrumb-container,
    .whatsapp-float,
    .cta-inline,
    .cta-section,
    .footer,
    .nav-actions,
    .mobile-toggle {
        display: none !important;
    }
    
    body {
        background: white;
    }
    
    .spatial-bg {
        display: none;
    }
    
    .main-article {
        box-shadow: none;
        padding: 0;
    }
    
    a {
        color: inherit;
        text-decoration: underline;
    }
}

/* ==========================================================================
   ACCESSIBILITY
   ========================================================================== */
:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 3px;
    border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ==========================================================================
   SELECTION COLORS
   ========================================================================== */
::selection {
    background: var(--primary);
    color: white;
}

::-moz-selection {
    background: var(--primary);
    color: white;
}

/* ==========================================================================
   SCROLLBAR STYLING
   ========================================================================== */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-hover);
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--bg-light);
}

/* ==========================================================================
   LOADING STATES
   ========================================================================== */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}
/* Font Awesome ikon düzeltmesi */
.card-icon i,
.fbox-icon i,
.feature-icon i,
.cta-icon i {
    font-size: 32px;
    line-height: 0;
}
.card-icon i {
    font-size: 32px;
    color: var(--primary);
    line-height: 0; /* ikon tam ortalanır */
}

.skeleton {
    animation: shimmer 2s infinite;
    background: linear-gradient(
        to right,
        var(--bg-light) 0%,
        var(--bg-white) 50%,
        var(--bg-light) 100%
    );
    background-size: 1000px 100%;
}

/* ==========================================================================
   END OF STYLESHEET
   ========================================================================== */