/* ==========================================================================
   Evde Fizyoterapi - Ana CSS Dosyası
   ========================================================================== */

/* CSS Variables */
:root {
    --primary-color: #007bff;
    --primary-dark: #0056b3;
    --primary-light: #66b3ff;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    
    --font-family-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-family-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --box-shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.15);
    
    --transition: all 0.3s ease;
    --animation-duration: 0.3s;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Border Radius */
    --border-radius-sm: 0.25rem;
    --border-radius-md: 0.5rem;
    --border-radius-xl: 1rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Transitions */
    --transition-fast: 0.15s ease-in-out;
    --transition-normal: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;
    
    /* Typography */
    --font-family: 'Inter', 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.6;
}

/* Base Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-family-primary);
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #fff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-heading);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    letter-spacing: -0.25px;
}

p {
    line-height: 1.7;
    color: #6c757d;
    font-weight: 400;
}

.lead {
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

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

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 48px; /* Accessibility */
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

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

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

.btn:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0056b3 0%, var(--primary-color) 100%);
    color: var(--white);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.35);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #16a34a 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.2);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #16a34a 0%, var(--secondary-color) 100%);
    color: var(--white);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(22, 163, 74, 0.35);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.35);
}

.btn-lg {
    padding: 1.125rem 2.5rem;
    font-size: 1.2rem;
    border-radius: 18px;
}

.btn-sm {
    padding: 0.625rem 1.25rem;
    font-size: 0.9rem;
    border-radius: 12px;
}

/* Kampanya Butonu */
.btn-campaign {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #16a34a 100%);
    color: var(--white);
    border: none;
    position: relative;
    overflow: hidden;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

.btn-campaign:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(34, 197, 94, 0.3);
}

/* WhatsApp Butonu */
.btn-whatsapp {
    background-color: #25D366;
    color: var(--white);
    border-color: #25D366;
}

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

.btn-whatsapp i {
    margin-right: 0.5rem;
}

/* Cards */
.card {
    background-color: var(--white);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: all var(--transition-normal);
}

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

.card-header {
    padding: var(--spacing-lg);
    border-bottom: 1px solid #e2e8f0;
}

.card-body {
    padding: var(--spacing-lg);
}

.card-footer {
    padding: var(--spacing-lg);
    border-top: 1px solid #e2e8f0;
    background-color: var(--light-gray);
}

/* Kampanya Kartı */
.campaign-card {
    position: relative;
    background: linear-gradient(135deg, var(--white) 0%, #f0fdf4 100%);
    border: 2px solid var(--secondary-color);
}

.campaign-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-lg);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    box-shadow: var(--shadow-md);
}

/* Fiyat Gösterimi */
.price-display {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin: var(--spacing-md) 0;
}

.price-old {
    font-size: 1.25rem;
    color: var(--gray-color);
    text-decoration: line-through;
}

.price-new {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 600;
}

/* Forms */
.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-label {
    display: block;
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
    color: var(--dark-color);
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--dark-color);
    background-color: var(--white);
    border: 2px solid #e2e8f0;
    border-radius: var(--border-radius-md);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(14, 165, 160, 0.1);
}

.form-control.is-invalid {
    border-color: var(--danger-color);
}

.form-control.is-valid {
    border-color: var(--secondary-color);
}

.invalid-feedback {
    display: block;
    width: 100%;
    margin-top: var(--spacing-xs);
    font-size: 0.875rem;
    color: var(--danger-color);
}

.valid-feedback {
    display: block;
    width: 100%;
    margin-top: var(--spacing-xs);
    font-size: 0.875rem;
    color: var(--secondary-color);
}

/* Checkbox ve Radio */
.form-check {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--spacing-md);
}

.form-check-input {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: var(--spacing-sm);
    margin-top: 0.125rem;
}

.form-check-label {
    font-size: 0.875rem;
    line-height: 1.4;
    color: var(--gray-color);
}

/* Alerts */
.alert {
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    border: 1px solid transparent;
    border-radius: var(--border-radius-md);
}

.alert-success {
    color: #166534;
    background-color: #f0fdf4;
    border-color: #bbf7d0;
}

.alert-danger {
    color: #991b1b;
    background-color: #fef2f2;
    border-color: #fecaca;
}

.alert-warning {
    color: #92400e;
    background-color: #fffbeb;
    border-color: #fed7aa;
}

.alert-info {
    color: #1e40af;
    background-color: #eff6ff;
    border-color: #bfdbfe;
}

/* Navigation */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.75rem 0;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 123, 255, 0.1);
}

.navbar .container {
    padding-left: 1rem;
    padding-right: 1rem;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-right: 2rem;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    color: var(--primary-dark);
    transform: scale(1.05);
}

.navbar-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-item {
    margin: 0 0.25rem;
}

.nav-link {
    display: block;
    padding: 0.5rem 0.75rem;
    color: #6c757d;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap !important;
    font-size: 0.95rem;
    border-radius: 0.5rem;
    position: relative;
    line-height: 1.2;
    word-break: keep-all;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-link:hover {
    color: var(--primary-color);
    background-color: rgba(0, 123, 255, 0.05);
    transform: translateY(-1px);
}

.nav-link.active {
    color: var(--primary-color);
    background-color: rgba(0, 123, 255, 0.1);
    font-weight: 600;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background-color: var(--primary-color);
    border-radius: 1px;
}

/* Navbar Right Side Buttons */
.navbar-nav.ms-auto .nav-item {
    margin-left: 0.5rem;
}

.navbar-nav.ms-auto .btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    white-space: nowrap;
}

/* Dropdown Menu Improvements */
.dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    padding: 0.5rem 0;
}

.dropdown-item {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    white-space: nowrap;
}

/* Mobile Responsive Navbar */
@media (max-width: 991.98px) {
    .navbar-collapse {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #e9ecef;
    }
    
    .navbar-nav.ms-auto {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #e9ecef;
    }
    
    .navbar-nav.ms-auto .nav-item {
        margin: 0.25rem 0;
    }
    
    .navbar-nav.ms-auto .btn {
        width: 100%;
        text-align: center;
    }
    
    .nav-link {
        white-space: nowrap !important;
        word-break: keep-all !important;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.9) 0%, rgba(13, 148, 136, 0.85) 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="soft-dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23soft-dots)"/></svg>');
    color: var(--white);
    padding: var(--spacing-3xl) 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 60%),
                radial-gradient(circle at 80% 70%, rgba(255, 193, 7, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(40, 167, 69, 0.05) 0%, transparent 40%);
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-lg);
    color: var(--white);
    line-height: 1.2;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xl);
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    font-weight: 400;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.hero .feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.hero .feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.hero .feature-item:hover .feature-icon {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.hero .feature-item:hover .feature-icon::before {
    left: 100%;
}

.hero .feature-item {
    transition: all 0.3s ease;
    padding: 0.75rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
}

.hero .feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.hero .feature-item h6 {
    color: var(--white);
    margin-bottom: 0.25rem;
    font-weight: 600;
    font-size: 1.1rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.hero .feature-item small {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    line-height: 1.4;
    font-weight: 400;
}

.hero-badge .badge {
    font-size: 0.875rem;
    padding: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.hero .stat-item {
    padding: 1rem;
    border-radius: var(--border-radius-lg);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-normal);
}

.hero .stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

/* Page Header Stats - Fiyatlar Sayfası İçin Özel Stiller */
.page-header .header-stats {
    position: relative;
}

.page-header .stat-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.page-header .stat-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.page-header .stat-item:hover::before {
    animation: shimmer 1.5s ease-in-out;
    opacity: 1;
}

.page-header .stat-item:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.page-header .stat-item h3 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.page-header .stat-item p {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Animasyon Tanımları */
@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.page-header .stat-item h3 {
    animation: pulse 2s ease-in-out infinite;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .page-header .stat-item {
        padding: 1.5rem 1rem;
        margin-top: 2rem;
    }
    
    .page-header .stat-item h3 {
        font-size: 2.5rem;
    }
    
    .page-header .stat-item p {
        font-size: 0.9rem;
    }
}

.hero .stat-icon {
    font-size: 2rem;
    opacity: 0.8;
}

.hero .counter {
    color: var(--white);
}

.hero .btn-light {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--primary-color);
    backdrop-filter: blur(10px);
}

.hero .btn-light:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.hero .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.hero .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-2px);
}

/* Section Styles */
.section {
    padding: var(--spacing-3xl) 0;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 123, 255, 0.3);
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 400;
}

/* Service Cards */
.service-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08),
                0 1px 3px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12),
                0 5px 15px rgba(0, 0, 0, 0.08) !important;
    border-color: rgba(0, 123, 255, 0.2) !important;
}

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

.service-card .service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.2rem;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card .service-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s ease;
}

.service-card:hover .service-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 123, 255, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.service-card:hover .service-icon::before {
    transform: scale(1);
}

.service-card .btn {
    transition: all var(--transition-normal);
    border-radius: 15px;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
}

.service-card:hover .btn {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.bg-primary-soft {
    background-color: rgba(0, 123, 255, 0.1) !important;
}

.services-section .badge {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Why Choose Us Section Styles */
.why-choose-us-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 20%, rgba(0, 123, 255, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(13, 148, 136, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.why-features .feature-item {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 2.5rem 2rem;
    border-radius: 25px;
    background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06),
                0 2px 10px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.why-features .feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.02) 0%, rgba(13, 148, 136, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.why-features .feature-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1),
                0 8px 25px rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 123, 255, 0.1);
}

.why-features .feature-item:hover::before {
    opacity: 1;
}

.why-features .feature-icon {
    width: 85px;
    height: 85px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.25),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-features .feature-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(0deg);
    transition: transform 1s ease;
}

.why-features .feature-item:hover .feature-icon {
    transform: rotate(-5deg) scale(1.15);
    box-shadow: 0 15px 40px rgba(0, 123, 255, 0.35),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.why-features .feature-item:hover .feature-icon::before {
    transform: rotate(360deg);
}

.bg-success-soft {
    background-color: rgba(32, 201, 151, 0.1) !important;
}

/* Why Image Styles */
.why-image .image-wrapper {
    position: relative;
    z-index: 2;
}

/* Stats Cards */
.stats-container .stat-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 1rem;
    padding: 1.25rem 0.75rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.stats-container .stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
}

.stats-container .stat-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.stats-container .stat-label {
    font-size: 0.8rem;
    color: var(--secondary-color);
    font-weight: 500;
    line-height: 1.3;
}

.stats-container .stat-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

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

/* Process Section Styles */
.process-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    padding: var(--spacing-3xl) 0;
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(0, 123, 255, 0.02) 0%, transparent 60%),
                radial-gradient(circle at 70% 70%, rgba(13, 148, 136, 0.02) 0%, transparent 60%);
    pointer-events: none;
}

.process-line {
    position: absolute;
    top: 50%;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--success-color) 50%, var(--info-color) 100%);
    z-index: 1;
    transform: translateY(-50%);
}

.process-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--primary-color), var(--success-color));
    animation: progressLine 3s ease-in-out infinite;
}

.process-step {
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step:hover {
    transform: translateY(-12px) scale(1.02);
}

.step-wrapper {
    background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 25px;
    padding: 2.5rem 2rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06),
                0 2px 10px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.step-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--success-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.process-step:hover .step-wrapper {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1),
                0 8px 25px rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 123, 255, 0.1);
}

.process-step:hover .step-wrapper::before {
    transform: scaleX(1);
}

.step-number {
    width: 85px;
    height: 85px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--success-color) 100%);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.25),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-number::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(0deg);
    transition: transform 1s ease;
}

.process-step:hover .step-number {
    transform: rotate(-5deg) scale(1.15);
    box-shadow: 0 15px 40px rgba(0, 123, 255, 0.35),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.process-step:hover .step-number::before {
    transform: rotate(360deg);
}

.step-icon {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.process-step:hover .step-icon {
    color: var(--success-color);
    transform: scale(1.1);
}

.step-title {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.4rem;
    line-height: 1.3;
}

.step-description {
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #6c757d;
    font-size: 0.95rem;
}

.step-features small {
    display: inline-block;
    background: rgba(32, 201, 151, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-weight: 500;
}

.process-cta {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 2rem;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
}

.process-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23007bff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>') repeat;
    pointer-events: none;
}

@keyframes progressLine {
    0% {
        width: 0;
    }
    50% {
        width: 100%;
    }
    100% {
        width: 0;
    }
}

/* Mobile Responsive */
@media (max-width: 991.98px) {
    .process-line {
        display: none !important;
    }
    
    .step-wrapper {
        margin-bottom: 2rem;
    }
}

/* Testimonials */
.testimonial {
    text-align: center;
    padding: var(--spacing-xl);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto var(--spacing-lg);
    object-fit: cover;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.125rem;
    margin-bottom: var(--spacing-lg);
    color: var(--gray-color);
}

.testimonial-author {
    font-weight: 600;
    color: var(--dark-color);
}

.testimonial-rating {
    color: #fbbf24;
    margin-bottom: var(--spacing-sm);
}

/* FAQ */
.faq-item {
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius-md);
    margin-bottom: var(--spacing-md);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: var(--spacing-lg);
    background-color: var(--white);
    border: none;
    text-align: left;
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--transition-fast);
}

.faq-question:hover {
    background-color: var(--light-gray);
}

.faq-answer {
    padding: 0 var(--spacing-lg) var(--spacing-lg);
    color: var(--gray-color);
    display: none;
}

.faq-answer.show {
    display: block;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: var(--spacing-3xl) 0 var(--spacing-xl);
}

.footer h5 {
    color: var(--white);
    margin-bottom: var(--spacing-lg);
}

.footer a {
    color: rgba(255, 255, 255, 0.8);
}

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

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

/* Service Areas Page Styles */
.service-areas-section .card {
    transition: all 0.3s ease;
}

.service-areas-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-areas-section .card-body .row .col-6 {
    min-height: 2.5rem;
    display: flex;
    align-items: center;
}

.service-areas-section .card-body .small {
    font-size: 0.85rem;
    line-height: 1.3;
    word-break: break-word;
    hyphens: auto;
}

/* Text Wrapping Fixes */
.text-nowrap-mobile {
    white-space: nowrap;
}

@media (max-width: 576px) {
    .text-nowrap-mobile {
        white-space: normal;
        word-break: break-word;
    }
}

/* Prevent text wrapping in navigation and buttons */
.btn {
    white-space: nowrap;
}

.badge {
    white-space: nowrap;
}

/* Fix for "Sayfa" word wrapping in breadcrumbs and titles */
.breadcrumb-item,
.page-title,
.section-title {
    word-break: keep-all;
    hyphens: none;
}

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

.text-primary { color: var(--primary-color); }
.text-secondary { color: var(--secondary-color); }
.text-success { color: var(--success-color); }
.text-danger { color: var(--danger-color); }
.text-warning { color: var(--warning-color); }
.text-info { color: var(--info-color); }
.text-muted { color: var(--gray-color); }

.bg-primary { background-color: var(--primary-color); }
.bg-secondary { background-color: var(--secondary-color); }
.bg-light { background-color: var(--light-gray); }
.bg-white { background-color: var(--white); }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-inline-flex { display: inline-flex; }

.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }
.align-items-center { align-items: center; }

.mb-0 { margin-bottom: 0; }
.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); }
.mb-5 { margin-bottom: var(--spacing-xl); }

.mt-0 { margin-top: 0; }
.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); }
.mt-5 { margin-top: var(--spacing-xl); }

/* Stats Cards Responsive */
@media (max-width: 768px) {
    .stats-container .stat-card {
        padding: 1rem 0.5rem;
    }
    
    .stats-container .stat-number {
        font-size: 1.5rem;
    }
    
    .stats-container .stat-label {
        font-size: 0.75rem;
    }
    
    .stats-container .stat-icon {
        font-size: 1.25rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    :root {
        --font-size-base: 14px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .section {
        padding: var(--spacing-2xl) 0;
    }
    
    .card-body {
        padding: var(--spacing-md);
    }
    

}

@media (max-width: 576px) {
    .hero {
        padding: var(--spacing-2xl) 0;
    }
    
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .section {
        padding: var(--spacing-xl) 0;
    }
    

}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 1s ease-in-out infinite;
}

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

/* Smooth Animations */
.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

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

.slide-up {
    animation: slideUp 0.5s ease-in-out;
}

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

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus Styles */
*:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

button:focus,
.btn:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .btn,
    .alert {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
    }
}