/* ============================================
   DCT DIŞ CEPHE TEMİZLİĞİ - CUSTOM STYLES
   Domain: discephetemizligi.com.tr
   Theme: Green/Modern/Eco-friendly
   Version: 1.0
   Date: 2025-12-22
   ============================================ */

/* === ROOT VARIABLES === */
:root {
    /* Colors - Green Theme */
    --primary-green: #059669;
    --primary-dark: #047857;
    --primary-light: #10b981;
    --accent-yellow: #fbbf24;
    --dark-gray: #1f2937;
    --medium-gray: #6b7280;
    --light-gray: #f3f4f6;
    --soft-green: #d1fae5;
    --white: #ffffff;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    
    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-normal: 300ms ease-in-out;
    --transition-slow: 500ms ease-in-out;
}

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

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

body {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-normal);
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
}

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

h1 { font-size: 3.5rem; font-weight: var(--font-weight-extrabold); }
h2 { font-size: 2.5rem; font-weight: var(--font-weight-bold); }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
}

p {
    margin-bottom: var(--spacing-sm);
    color: var(--medium-gray);
    line-height: 1.7;
}

a {
    color: var(--primary-green);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

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

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

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

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

@keyframes pulse-green {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(5, 150, 105, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(5, 150, 105, 0);
    }
}

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

@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Animation Classes */
.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

.animate-slide-left {
    animation: slideInLeft 0.6s ease-out forwards;
}

.animate-slide-right {
    animation: slideInRight 0.6s ease-out forwards;
}

.animate-scale-in {
    animation: scaleIn 0.5s ease-out forwards;
}

.animate-pulse-green {
    animation: pulse-green 2s infinite;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* === HEADER === */
.dct-header {
    background: var(--white);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all var(--transition-normal);
}

.dct-header.scrolled {
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

.dct-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

.dct-logo {
    font-size: 1.5rem;
    font-weight: var(--font-weight-extrabold);
    color: var(--primary-green);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dct-logo:hover {
    color: var(--primary-dark);
}

.dct-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.dct-menu a {
    font-weight: var(--font-weight-medium);
    color: var(--dark-gray);
    transition: color var(--transition-fast);
    position: relative;
}

.dct-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: width var(--transition-normal);
}

.dct-menu a:hover::after,
.dct-menu a.active::after {
    width: 100%;
}

/* === BUTTONS === */
.btn-dct {
    display: inline-block;
    padding: 0.75rem 2rem;
    font-weight: var(--font-weight-semibold);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
    cursor: pointer;
    border: none;
    text-align: center;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--accent-yellow);
    color: var(--dark-gray);
}

.btn-secondary:hover {
    background: #f59e0b;
    transform: translateY(-2px);
}

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

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

/* === SERVICES SECTION - MINIMAL PROFESSIONAL === */
.services-minimal {
    padding: 5rem 0;
    background: #ffffff;
}

.services-minimal-header {
    text-align: center;
    margin-bottom: 3rem;
}

.services-minimal-header .label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    color: #2563eb;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.services-minimal-header h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 0.75rem;
}

.services-minimal-header p {
    color: #6b7280;
    font-size: 1.0625rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Service Card - Minimal */
.service-card-minimal {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card-minimal::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card-minimal:hover {
    background: #ffffff;
    border-color: #2563eb;
    box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.15);
    transform: translateY(-2px);
}

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

.service-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.375rem;
    color: #ffffff;
    flex-shrink: 0;
}

.service-card-icon.blue { background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%); }
.service-card-icon.cyan { background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%); }
.service-card-icon.orange { background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%); }
.service-card-icon.indigo { background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%); }
.service-card-icon.sky { background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%); }
.service-card-icon.red { background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%); }

.service-card-content {
    flex: 1;
    min-width: 0;
}

.service-card-content h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.25rem;
    transition: color 0.3s ease;
}

.service-card-minimal:hover .service-card-content h3 {
    color: #2563eb;
}

.service-card-content p {
    font-size: 0.8125rem;
    color: #6b7280;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-card-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 0.75rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.service-card-minimal:hover .service-card-arrow {
    background: #2563eb;
    color: #ffffff;
    transform: translateX(4px);
}

/* All Services Button */
.services-all-btn {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
}

.services-all-btn a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    padding: 0.875rem 2rem;
    border-radius: 0.75rem;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.services-all-btn a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

/* === REGIONS SECTION - SCROLL === */
.regions-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.regions-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.regions-header .badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.regions-header h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 0.5rem;
}

.regions-header p {
    color: #6b7280;
    font-size: 1rem;
}

/* Cities Scroll */
.cities-scroll-container {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 1rem 0;
    margin-bottom: 2rem;
}

.cities-scroll-container::-webkit-scrollbar {
    display: none;
}

.cities-scroll-wrapper {
    display: flex;
    gap: 1rem;
    padding: 0 1rem;
    width: max-content;
}

@media (min-width: 769px) {
    .cities-scroll-container {
        overflow: visible;
    }
    
    .cities-scroll-wrapper {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 1.25rem;
        max-width: 1100px;
        margin: 0 auto;
        width: auto;
        padding: 0 1rem;
    }
}

/* City Card */
.city-card {
    flex-shrink: 0;
    width: 180px;
    scroll-snap-align: start;
    background: #ffffff;
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

@media (min-width: 769px) {
    .city-card {
        width: auto;
    }
}

.city-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}

.city-card-emoji {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.city-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.25rem;
    transition: color 0.3s ease;
}

.city-card:hover h3 {
    color: #2563eb;
}

.city-card span {
    font-size: 0.8125rem;
    color: #6b7280;
}

/* Districts Section */
.districts-container {
    background: #ffffff;
    border-radius: 1.25rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    max-width: 1100px;
    margin: 0 auto;
}

.districts-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    text-align: center;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.districts-title i {
    color: #2563eb;
}

/* Districts Scroll - Mobile */
.districts-scroll-container {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0 -1rem;
    padding: 0 1rem;
}

.districts-scroll-container::-webkit-scrollbar {
    display: none;
}

.districts-scroll-wrapper {
    display: flex;
    gap: 0.75rem;
    width: max-content;
    padding-bottom: 0.5rem;
}

@media (min-width: 769px) {
    .districts-scroll-container {
        overflow: visible;
        margin: 0;
        padding: 0;
    }
    
    .districts-scroll-wrapper {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0.75rem;
        width: auto;
    }
}

/* District Card */
.district-card {
    flex-shrink: 0;
    scroll-snap-align: start;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.875rem 1rem;
    background: #f9fafb;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 140px;
}

@media (min-width: 769px) {
    .district-card {
        min-width: auto;
    }
}

.district-card:hover {
    background: #eff6ff;
}

.district-card i {
    color: #2563eb;
    font-size: 1rem;
}

.district-card span {
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
}

/* === HERO SECTION === */
.dct-hero {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 8rem 2rem 6rem;
    position: relative;
    overflow: hidden;
}

.dct-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(255, 255, 255, 0.03) 10px,
            rgba(255, 255, 255, 0.03) 20px
        );
    pointer-events: none;
}

.dct-hero-content {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.dct-hero h1 {
    color: var(--white);
    font-size: 4rem;
    margin-bottom: var(--spacing-lg);
    line-height: 1.1;
}

.dct-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xl);
    max-width: 600px;
}

/* === CARDS === */
.dct-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid transparent;
}

.dct-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--soft-green);
}

.dct-card-icon {
    width: 64px;
    height: 64px;
    background: var(--soft-green);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: var(--spacing-md);
}

.dct-card h3 {
    color: var(--dark-gray);
    margin-bottom: var(--spacing-sm);
}

.dct-card p {
    color: var(--medium-gray);
}

/* === STATS SECTION === */
.dct-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    padding: var(--spacing-2xl);
    background: var(--light-gray);
}

.dct-stat {
    text-align: center;
}

.dct-stat-number {
    font-size: 3.5rem;
    font-weight: var(--font-weight-extrabold);
    color: var(--primary-green);
    display: block;
    margin-bottom: var(--spacing-xs);
}

.dct-stat-label {
    font-size: 1.125rem;
    color: var(--medium-gray);
    font-weight: var(--font-weight-medium);
}

/* === SECTION STYLES === */
.dct-section {
    padding: var(--spacing-2xl) var(--spacing-lg);
    max-width: 1280px;
    margin: 0 auto;
}

.dct-section-title {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.dct-section-title h2 {
    color: var(--dark-gray);
    margin-bottom: var(--spacing-sm);
}

.dct-section-title .subtitle {
    color: var(--medium-gray);
    font-size: 1.125rem;
}

/* === GRID LAYOUTS === */
.dct-grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.dct-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.dct-grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

/* === FOOTER === */
.dct-footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: var(--spacing-2xl) var(--spacing-lg) var(--spacing-lg);
}

.dct-footer-content {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.dct-footer h4 {
    color: var(--white);
    margin-bottom: var(--spacing-md);
}

.dct-footer a {
    color: rgba(255, 255, 255, 0.8);
    display: block;
    margin-bottom: var(--spacing-xs);
    transition: color var(--transition-fast);
}

.dct-footer a:hover {
    color: var(--primary-light);
}

.dct-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-lg);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* === BADGES === */
.dct-badge {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
    font-weight: var(--font-weight-semibold);
    border-radius: var(--radius-md);
}

.badge-green {
    background: var(--soft-green);
    color: var(--primary-green);
}

.badge-yellow {
    background: #fef3c7;
    color: #92400e;
}

/* === MOBILE MENU === */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark-gray);
    cursor: pointer;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .dct-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: var(--spacing-lg);
        box-shadow: var(--shadow-lg);
    }
    
    .dct-menu.active {
        display: flex;
    }
}

/* === WHATSAPP FLOAT === */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-xl);
    z-index: 999;
    transition: all var(--transition-normal);
    animation: pulse-green 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #20ba5a;
}

/* === BREADCRUMB === */
.dct-breadcrumb {
    padding: var(--spacing-md) 0;
    font-size: 0.875rem;
}

.dct-breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
}

.dct-breadcrumb a:hover {
    color: var(--white);
}

.dct-breadcrumb span {
    margin: 0 0.5rem;
    color: rgba(255, 255, 255, 0.5);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .dct-hero h1 { font-size: 3rem; }
    .dct-section { padding: var(--spacing-xl) var(--spacing-md); }
}

@media (max-width: 768px) {
    .dct-hero { padding: 6rem 1.5rem 4rem; }
    .dct-hero h1 { font-size: 2.5rem; }
    .dct-stat-number { font-size: 2.5rem; }
    .dct-grid-2, .dct-grid-3, .dct-grid-4 {
        grid-template-columns: 1fr;
    }
}

/* === CUSTOM SCROLLBAR === */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-green);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

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

.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }

.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.hidden { display: none; }
.block { display: block; }
.flex { display: flex; }
.grid { display: grid; }

/* === MOBILE MENU === */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 320px;
    height: 100%;
    background: #ffffff;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.mobile-menu-overlay.active .mobile-menu {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 2px solid #f3f4f6;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
}

.mobile-menu-header h2 {
    margin: 0;
    color: #ffffff;
}

.mobile-menu-header button {
    color: #ffffff;
}

.mobile-menu-nav {
    padding: 1rem 0;
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: #374151;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.mobile-menu-link:active {
    background: #f3f4f6;
}

.mobile-menu-link.active {
    background: #eff6ff;
    border-left-color: #2563eb;
    color: #2563eb;
}

.mobile-menu-link i {
    font-size: 1.25rem;
    width: 24px;
    text-align: center;
}

.mobile-menu-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 1rem 1.5rem;
}

.mobile-menu-link-highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    margin: 0.5rem 1rem;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.875rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(37, 99, 235, 0.3);
}

.mobile-menu-link-highlight:active {
    transform: scale(0.98);
}

.mobile-menu-link-highlight.whatsapp {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    box-shadow: 0 2px 10px rgba(34, 197, 94, 0.3);
}

.mobile-menu-link-highlight i {
    font-size: 1.25rem;
}

/* === MOBILE MENU DROPDOWN === */
.mobile-menu-dropdown {
    margin: 0.5rem 0;
}

.mobile-menu-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    cursor: pointer;
    border: none;
    background: transparent;
    text-align: left;
}

.mobile-menu-dropdown-toggle .dropdown-icon {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
    color: #9ca3af;
}

.mobile-menu-dropdown-toggle.active .dropdown-icon {
    transform: rotate(180deg);
    color: #2563eb;
}

.mobile-menu-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f9fafb;
    border-radius: 0.5rem;
    margin: 0.5rem 1rem;
}

.mobile-menu-dropdown-content.active {
    max-height: 500px;
}

.mobile-menu-sublink {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    color: #4b5563;
    text-decoration: none;
    font-size: 0.9375rem;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.mobile-menu-sublink:hover,
.mobile-menu-sublink:active {
    background: #ffffff;
    color: #2563eb;
    border-left-color: #2563eb;
}

.mobile-menu-sublink i {
    font-size: 1rem;
    width: 20px;
    text-align: center;
    opacity: 0.7;
}

.mobile-menu-dropdown-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 0.5rem 1.25rem;
}

/* === MOBILE BOTTOM NAVIGATION BAR === */
.mobile-nav-bar,
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    padding: 0.75rem 0;
    padding-bottom: calc(0.75rem + env(safe-area-inset-bottom));
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    justify-content: space-around;
    align-items: center;
    gap: 0.25rem;
}

@media (max-width: 768px) {
    .mobile-nav-bar,
    .mobile-bottom-nav {
        display: flex;
    }
    
    /* WhatsApp float button'ı mobilde gizle */
    .whatsapp-float {
        display: none !important;
    }
    
    /* Footer'a alt padding ekle */
    footer {
        padding-bottom: 85px !important;
    }
}

.mobile-nav-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 0.5rem;
}

/* Yeni ve eski yapıyı destekliyoruz */
.mobile-nav-bar a,
.mobile-nav-bar button,
.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 0.7rem;
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    border-radius: 0.875rem;
    transition: all 0.3s ease;
    background: transparent;
    border: none;
    cursor: pointer;
    min-width: 60px;
    flex: 1;
    max-width: 80px;
}

.mobile-nav-bar a i,
.mobile-nav-bar button i,
.mobile-nav-item i {
    font-size: 1.35rem;
    margin-bottom: 0.3rem;
}

.mobile-nav-bar a span,
.mobile-nav-bar button span,
.mobile-nav-item span {
    font-size: 0.65rem;
    font-weight: 500;
    white-space: nowrap;
}

.mobile-nav-bar a:active,
.mobile-nav-bar button:active,
.mobile-nav-item:active {
    transform: scale(0.95);
}

.mobile-nav-bar a.active,
.mobile-nav-item.active {
    color: #ffffff;
    background: rgba(59, 130, 246, 0.2);
}

/* WhatsApp için stil */
.nav-whatsapp,
.mobile-nav-item.whatsapp {
    color: #22c55e;
}

.nav-whatsapp:active,
.mobile-nav-item.whatsapp:active {
    background: rgba(34, 197, 94, 0.2);
}

/* Instagram için stil */
.nav-instagram,
.mobile-nav-item.instagram {
    color: #e879f9;
}

.nav-instagram:active,
.mobile-nav-item.instagram:active {
    background: rgba(232, 121, 249, 0.2);
}

/* Ana sayfa için stil */
.nav-home {
    color: #60a5fa;
}

.nav-home:active {
    background: rgba(96, 165, 250, 0.2);
}

/* Referanslar için stil */
.nav-reviews {
    color: #fbbf24;
}

.nav-reviews:active {
    background: rgba(251, 191, 36, 0.2);
}

/* Teklif butonu için stil */
.nav-teklif,
.mobile-nav-item.teklif-btn {
    color: #ffffff;
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(245, 158, 11, 0.3);
}

.nav-teklif:active,
.mobile-nav-item.teklif-btn:active {
    transform: scale(0.95);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.5);
}

/* === TEKLIF POPUP MODAL === */
.teklif-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.teklif-modal.active {
    display: flex;
    opacity: 1;
}

.teklif-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.teklif-content {
    position: relative;
    background: #ffffff;
    border-radius: 1.5rem;
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    z-index: 1;
}

.teklif-modal.active .teklif-content {
    transform: scale(1);
}

.teklif-header {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    padding: 1.5rem;
    border-radius: 1.5rem 1.5rem 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.teklif-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
}

.teklif-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #ffffff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.25rem;
}

.teklif-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.teklif-body {
    padding: 1.5rem;
}

.teklif-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.form-group label .required {
    color: #ef4444;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    font-size: 0.9375rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

.teklif-submit {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #ffffff;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 0.875rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.teklif-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

.teklif-submit:active {
    transform: translateY(0);
}

.teklif-submit i {
    font-size: 1.25rem;
}

/* === REVIEWS / TESTIMONIALS === */

/* Reviews Container */
.reviews-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.reviews-header {
    text-align: center;
    margin-bottom: 3rem;
}

.reviews-header .badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.reviews-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.reviews-header p {
    color: #6b7280;
    font-size: 1.125rem;
}

/* Reviews Stats Bar */
.reviews-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.reviews-stat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.reviews-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.reviews-stat-icon.stars {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #f59e0b;
}

.reviews-stat-icon.count {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: #2563eb;
}

.reviews-stat-icon.percent {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #059669;
}

.reviews-stat-text strong {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
}

.reviews-stat-text span {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Reviews Grid - Desktop */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Reviews Scroll Container - Mobile */
.reviews-scroll-container {
    display: none;
}

@media (max-width: 768px) {
    .reviews-grid {
        display: none;
    }
    
    .reviews-scroll-container {
        display: block;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 1rem;
        margin: 0 -1rem;
    }
    
    .reviews-scroll-container::-webkit-scrollbar {
        display: none;
    }
    
    .reviews-scroll-wrapper {
        display: flex;
        gap: 1rem;
        padding-bottom: 1rem;
    }
    
    .reviews-scroll-wrapper .review-card {
        flex-shrink: 0;
        width: 300px;
        scroll-snap-align: start;
    }
}

/* Review Card */
.review-card {
    background: #ffffff;
    border-radius: 1.25rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 8rem;
    font-family: Georgia, serif;
    color: #f3f4f6;
    line-height: 1;
    pointer-events: none;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: #e5e7eb;
}

/* Review Card Header */
.review-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    color: #ffffff;
    flex-shrink: 0;
}

.review-avatar.blue { background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%); }
.review-avatar.green { background: linear-gradient(135deg, #10b981 0%, #059669 100%); }
.review-avatar.orange { background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%); }
.review-avatar.purple { background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%); }
.review-avatar.pink { background: linear-gradient(135deg, #ec4899 0%, #db2777 100%); }
.review-avatar.teal { background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%); }
.review-avatar.red { background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%); }
.review-avatar.indigo { background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%); }

.review-info {
    flex: 1;
    min-width: 0;
}

.review-name {
    font-weight: 600;
    color: #1f2937;
    font-size: 0.975rem;
    margin-bottom: 0.125rem;
}

.review-role {
    font-size: 0.8rem;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.review-role i {
    font-size: 0.7rem;
    color: #9ca3af;
}

/* Review Stars */
.review-stars {
    display: flex;
    gap: 0.125rem;
    margin-bottom: 0.75rem;
}

.review-stars i {
    color: #fbbf24;
    font-size: 0.875rem;
}

/* Review Content */
.review-content {
    position: relative;
    z-index: 1;
}

.review-text {
    color: #374151;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

/* Review Footer */
.review-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.75rem;
    border-top: 1px solid #f3f4f6;
}

.review-date {
    font-size: 0.75rem;
    color: #9ca3af;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.review-verified {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    color: #059669;
    background: #d1fae5;
    padding: 0.25rem 0.625rem;
    border-radius: 1rem;
}

.review-verified i {
    font-size: 0.625rem;
}

/* Review Tags */
.review-tag {
    display: inline-block;
    background: #eff6ff;
    color: #2563eb;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    margin-right: 0.375rem;
    margin-bottom: 0.375rem;
}

/* Show More Button */
.reviews-show-more {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.reviews-show-more button {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.875rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.reviews-show-more button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

/* Scroll Indicator - Mobile */
.scroll-indicator {
    display: none;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .scroll-indicator {
        display: flex;
    }
    
    .reviews-header h2 {
        font-size: 1.75rem;
    }
    
    .reviews-stats {
        gap: 1.5rem;
    }
    
    .reviews-stat-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .reviews-stat-text strong {
        font-size: 1rem;
    }
}

.scroll-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d5db;
    transition: all 0.3s ease;
}

.scroll-dot.active {
    width: 24px;
    border-radius: 4px;
    background: #2563eb;
}

/* === END === */
