/* Custom CSS Variables */
:root {
    --primary: 220 90% 56%; /* #1E90FF - Vibrant Blue */
    --primary-dark: 220 90% 45%; /* #0066CC - Darker Blue */
    --secondary: 280 40% 50%; /* #6366F1 - Purple */
    --accent: 340 75% 55%; /* #EC4899 - Pink */
    --success: 142 71% 45%; /* #10B981 - Green */
    --warning: 38 92% 50%; /* #F59E0B - Orange */
    --danger: 0 84% 60%; /* #EF4444 - Red */
    
    --background: 210 11% 98%; /* #F5F7FA - Light Background */
    --surface: 0 0% 100%; /* #FFFFFF - White */
    --surface-dark: 220 27% 18%; /* #1E293B - Dark Background */
    
    --text-primary: 220 39% 11%; /* #0F172A - Dark Text */
    --text-secondary: 215 16% 47%; /* #64748B - Gray Text */
    --text-muted: 215 20% 65%; /* #94A3B8 - Light Gray Text */
    
    --border: 220 13% 91%; /* #E2E8F0 - Light Border */
    --border-hover: 220 13% 82%; /* #CBD5E1 - Hover Border */
    
    --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-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    --gradient-primary: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--secondary)));
    --gradient-accent: linear-gradient(135deg, hsl(var(--accent)), hsl(var(--warning)));
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: hsl(var(--text-primary));
    background-color: hsl(var(--background));
    overflow-x: hidden;
    padding-top: 75px; /* navbar yüksekliği kadar */
}

.container {
    max-width: 1200px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    color: hsl(var(--text-secondary));
}

/* Custom Button Styles */
.btn {
    font-weight: 500;
    border-radius: 8px;
    padding: 12px 24px;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: hsl(var(--primary));
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: hsl(var(--primary-dark));
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
}

.btn-outline-primary {
    border: 2px solid hsl(var(--primary));
    color: hsl(var(--primary));
    background: transparent;
}

.btn-outline-primary:hover {
    background: hsl(var(--primary));
    color: white;
    transform: translateY(-2px);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    background: transparent;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Navigation */
.custom-navbar {
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.75rem;
    font-weight: 700;
    color: white !important;
}

.navbar-brand i {
    color: hsl(var(--primary));
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: white !important;
    background: rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero-section {
    background: var(--gradient-primary);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="white" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: white;
    margin-bottom: 2rem;
}

.gradient-text {
    background: linear-gradient(135deg, #FFD700, #FF6B6B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Hero Services Grid */
.hero-services-grid {
    max-width: 900px;
    margin: 0 auto;
}

.hero-service-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
}

.hero-service-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.service-icon-large {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.service-icon-large i {
    font-size: 2rem;
    color: white;
}

.hero-service-item:hover .service-icon-large {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.hero-service-item h4 {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-service-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin: 0;
}

/* Hero Stats */
.hero-stats {
    max-width: 600px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Background Elements */
.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: floatShape 8s ease-in-out infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: -2s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    bottom: 30%;
    left: 20%;
    animation-delay: -4s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    top: 40%;
    right: 30%;
    animation-delay: -6s;
}

@keyframes floatShape {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    50% { 
        transform: translateY(-30px) rotate(180deg);
        opacity: 0.6;
    }
}

/* Responsive adjustments for hero */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-service-item {
        padding: 2rem 1rem;
    }
    
    .service-icon-large {
        width: 60px;
        height: 60px;
    }
    
    .service-icon-large i {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* 404 Error Page Styles */
.error-404-section {
    background: var(--gradient-primary);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.error-404-section::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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="white" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.error-content {
    position: relative;
    z-index: 2;
}

/* Error Number Styles */
.error-number {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1rem;
}

.digit {
    font-size: 8rem;
    font-weight: 900;
    color: white;
    text-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(50px);
}

.animated-zero {
    color: hsl(var(--accent));
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.8);
    }
    60% {
        opacity: 1;
        transform: translateY(-10px) scale(1.1);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.error-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.error-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Search Box Styles */
.error-search {
    max-width: 500px;
    margin: 0 auto;
}

.error-search .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 15px 20px;
    font-size: 1.1rem;
    border-radius: 12px 0 0 12px;
}

.error-search .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.error-search .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    color: white;
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
}

.error-search .btn {
    padding: 15px 25px;
    border-radius: 0 12px 12px 0;
    border: 2px solid hsl(var(--primary));
    border-left: none;
}

/* Quick Links Styles */
.quick-links h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.quick-link-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.quick-link-card:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.quick-link-card i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: hsl(var(--accent));
}

.quick-link-card span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Error Actions */
.error-actions {
    margin-top: 2rem;
}

.error-actions .btn {
    margin: 0.5rem;
}

/* Error Background Elements */
.error-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.error-bg-elements .floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    animation: floatShape 10s ease-in-out infinite;
}

.error-bg-elements .shape-1 {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.error-bg-elements .shape-2 {
    width: 80px;
    height: 80px;
    top: 20%;
    right: 10%;
    animation-delay: -2s;
}

.error-bg-elements .shape-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 15%;
    animation-delay: -4s;
}

.error-bg-elements .shape-4 {
    width: 150px;
    height: 150px;
    bottom: 10%;
    right: 5%;
    animation-delay: -6s;
}

.error-bg-elements .shape-5 {
    width: 60px;
    height: 60px;
    top: 50%;
    left: 50%;
    animation-delay: -8s;
}

/* Responsive adjustments for 404 page */
@media (max-width: 768px) {
    .digit {
        font-size: 5rem;
    }
    
    .error-title {
        font-size: 2rem;
    }
    
    .error-subtitle {
        font-size: 1.1rem;
    }
    
    .quick-link-card {
        padding: 1rem 0.5rem;
    }
    
    .quick-link-card i {
        font-size: 1.5rem;
    }
    
    .error-actions .btn {
        display: block;
        width: 100%;
        max-width: 300px;
        margin: 0.5rem auto;
    }
    
    .error-search .form-control {
        font-size: 1rem;
        padding: 12px 15px;
    }
    
    .error-search .btn {
        padding: 12px 20px;
    }
}

/* Portfolio Page Styles */
.portfolio-filter {
    background: hsl(var(--background));
}

.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-btn {
    padding: 12px 24px;
    background: transparent;
    border: 2px solid hsl(var(--border));
    color: hsl(var(--text-secondary));
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
    background: hsl(var(--primary));
    border-color: hsl(var(--primary));
    color: white;
    transform: translateY(-2px);
}

.portfolio-grid {
    background: hsl(var(--background));
}

.portfolio-item {
    margin-bottom: 2rem;
    transition: all 0.5s ease;
}

.portfolio-item.filtered {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

.portfolio-card {
    background: hsl(var(--surface));
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.portfolio-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.portfolio-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.portfolio-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.portfolio-placeholder span {
    font-size: 1.25rem;
    font-weight: 600;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-actions {
    display: flex;
    gap: 1rem;
}

.btn-portfolio-view,
.btn-portfolio-link {
    width: 50px;
    height: 50px;
    background: hsl(var(--primary));
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-portfolio-view:hover,
.btn-portfolio-link:hover {
    background: hsl(var(--primary-dark));
    color: white;
    transform: scale(1.1);
}

.portfolio-info {
    padding: 1.5rem;
}

.portfolio-info h5 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: hsl(var(--text-primary));
}

.portfolio-info p {
    color: hsl(var(--text-secondary));
    margin: 0;
    font-size: 0.9rem;
}

/* Portfolio Stats */
.portfolio-stats {
    background: hsl(var(--surface-dark));
}

.stat-card-portfolio {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-card-portfolio:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.stat-card-portfolio .stat-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.stat-card-portfolio .stat-icon i {
    font-size: 1.75rem;
    color: white;
}

.stat-card-portfolio h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-card-portfolio p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-weight: 500;
}

/* Portfolio Modal */
.modal-image {
    height: 300px;
    background: hsl(var(--background));
    border-radius: 8px;
    overflow: hidden;
}

.modal-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: hsl(var(--text-secondary));
}

/* Links Page Styles */
.links-section {
    background: var(--gradient-primary);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.links-section::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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="white" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.links-container {
    position: relative;
    z-index: 2;
}

/* Profile Header */
.profile-header {
    margin-bottom: 3rem;
}

.profile-avatar {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.profile-avatar i {
    font-size: 3rem;
    color: white;
}

.profile-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.profile-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* Link Categories */
.category-title {
    color: white;
    font-weight: 600;
    padding: 1rem 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 1rem;
}

/* Link Items */
.link-item {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    margin-bottom: 1rem;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.link-item:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.link-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.5rem;
    color: white;
}

/* Platform specific colors */
.trendyol { background: linear-gradient(135deg, #F27A1A, #FF6B35); }
.hepsiburada { background: linear-gradient(135deg, #FF6000, #FF8533); }
.amazon { background: linear-gradient(135deg, #FF9900, #232F3E); }
.sahibinden { background: linear-gradient(135deg, #52C41A, #389E0D); }
.web-design { background: linear-gradient(135deg, #1890FF, #722ED1); }
.pc-building { background: linear-gradient(135deg, #13C2C2, #08979C); }
.instagram { background: linear-gradient(135deg, #E4405F, #FCAF45); }
.youtube { background: linear-gradient(135deg, #FF0000, #CC0000); }
.linkedin { background: linear-gradient(135deg, #0077B5, #005885); }
.whatsapp { background: linear-gradient(135deg, #25D366, #128C7E); }
.email { background: linear-gradient(135deg, #EA4335, #FBBC05); }
.contact-form { background: linear-gradient(135deg, #6366F1, #8B5CF6); }

.link-content {
    flex: 1;
}

.link-content h6 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: white;
}

.link-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.link-arrow {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.link-item:hover .link-arrow {
    color: white;
    transform: translateX(5px);
}

/* Links Footer */
.links-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Links Background Elements */
.links-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.links-bg-elements .floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    animation: floatShape 12s ease-in-out infinite;
}

.links-bg-elements .shape-1 {
    width: 100px;
    height: 100px;
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.links-bg-elements .shape-2 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    right: 15%;
    animation-delay: -4s;
}

.links-bg-elements .shape-3 {
    width: 60px;
    height: 60px;
    top: 60%;
    left: 5%;
    animation-delay: -8s;
}

/* Responsive adjustments for portfolio and links */
@media (max-width: 768px) {
    .filter-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 200px;
    }
    
    .portfolio-actions {
        gap: 0.5rem;
    }
    
    .btn-portfolio-view,
    .btn-portfolio-link {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .profile-name {
        font-size: 2rem;
    }
    
    .profile-avatar {
        width: 100px;
        height: 100px;
    }
    
    .profile-avatar i {
        font-size: 2.5rem;
    }
    
    .link-item {
        padding: 1rem;
    }
    
    .link-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .link-content h6 {
        font-size: 1rem;
    }
    
    .link-content p {
        font-size: 0.85rem;
    }
}

/* Page Header */
.page-header {
    background: var(--gradient-primary);
    padding: 150px 0 100px;
    text-align: center;
    position: relative;
}

.page-header::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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="white" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.page-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 2;
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: hsl(var(--text-primary));
}

.section-subtitle {
    font-size: 1.125rem;
    text-align: center;
    color: hsl(var(--text-secondary));
    margin-bottom: 3rem;
}

/* Service Cards */
.service-card {
    background: hsl(var(--surface));
    padding: 3rem 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid hsl(var(--border));
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.5rem 0;
    color: hsl(var(--text-secondary));
}

/* Feature Cards */
.feature-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 1.75rem;
    color: white;
}

.feature-card h5 {
    color: white;
    margin-bottom: 1rem;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Why Choose Us Section */
.why-choose-us {
    background: hsl(var(--surface-dark));
}

/* Services Overview */
.services-overview {
    background: hsl(var(--surface));
    padding: 5rem 0;
}

/* Pricing Cards */
.pricing-card {
    background: hsl(var(--surface));
    border-radius: 16px;
    padding: 0;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border: 2px solid hsl(var(--primary));
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: hsl(var(--accent));
    color: white;
    padding: 8px 40px;
    font-size: 0.875rem;
    font-weight: 600;
    transform: rotate(45deg);
    z-index: 10;
}

.pricing-header {
    background: var(--gradient-primary);
    color: white;
    padding: 2rem;
    text-align: center;
}

.pricing-header h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.currency {
    font-size: 1.25rem;
    font-weight: 500;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
}

.period {
    font-size: 1rem;
    opacity: 0.8;
}

.pricing-features {
    padding: 2rem;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid hsl(var(--border));
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-footer {
    padding: 2rem;
}

/* Computer Services */
.computer-services {
    background: hsl(var(--surface-dark));
}

.computer-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.computer-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.computer-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.computer-icon i {
    font-size: 2rem;
    color: white;
}

.computer-card h4 {
    color: white;
    margin-bottom: 1rem;
}

.computer-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.computer-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.computer-features li {
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.7);
}

.price-range {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 1.5rem;
}

.price-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    display: block;
    margin-bottom: 0.5rem;
}

.price {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
}

/* Process Section */
.process-section {
    margin-top: 3rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0 auto 1.5rem;
}

.process-step h5 {
    color: white;
    margin-bottom: 1rem;
}

.process-step p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

/* Feature Box */
.feature-box {
    background: hsl(var(--surface));
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-box .feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-box .feature-icon i {
    font-size: 2rem;
    color: white;
}

/* About Styles */
.about-stats {
    background: hsl(var(--surface));
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.stat-card {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, hsl(var(--primary) / 0.1), hsl(var(--secondary) / 0.1));
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-3px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.stat-icon i {
    font-size: 1.5rem;
    color: white;
}

.stat-card h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(var(--primary));
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: hsl(var(--text-secondary));
    margin: 0;
    font-weight: 500;
}

/* Mission Vision */
.mission-vision {
    background: hsl(var(--background));
}

.mission-card, .vision-card {
    background: hsl(var(--surface));
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.mission-icon, .vision-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.mission-icon i, .vision-icon i {
    font-size: 2rem;
    color: white;
}

/* Values Section */
.values {
    background: hsl(var(--surface-dark));
}

.value-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 1.75rem;
    color: white;
}

.value-card h5 {
    color: white;
    margin-bottom: 1rem;
}

.value-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    margin: 0;
}

/* Team Section */
.team {
    background: hsl(var(--background));
}

.team-card {
    background: hsl(var(--surface));
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.team-avatar {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.team-avatar i {
    font-size: 2.5rem;
    color: white;
}

.team-position {
    color: hsl(var(--primary));
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-description {
    color: hsl(var(--text-secondary));
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.team-social a {
    width: 40px;
    height: 40px;
    background: hsl(var(--border));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(var(--text-secondary));
    transition: all 0.3s ease;
    text-decoration: none;
}

.team-social a:hover {
    background: hsl(var(--primary));
    color: white;
}

/* Why Choose Section */
.why-choose {
    background: hsl(var(--surface-dark));
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.advantage-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.advantage-icon i {
    font-size: 1.5rem;
    color: white;
}

.advantage-content h5 {
    color: white;
    margin-bottom: 0.5rem;
}

.advantage-content p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.875rem;
}

/* Contact Styles */
.contact-section {
    background: hsl(var(--background));
}

.contact-info {
    background: hsl(var(--surface));
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    height: 100%;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-content h5 {
    color: hsl(var(--text-primary));
    margin-bottom: 0.5rem;
}

.contact-content p {
    color: hsl(var(--text-secondary));
    margin: 0;
}

.contact-form {
    background: hsl(var(--surface));
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.form-label {
    font-weight: 600;
    color: hsl(var(--text-primary));
    margin-bottom: 0.5rem;
}

.form-control, .form-select {
    border: 2px solid hsl(var(--border));
    border-radius: 8px;
    padding: 12px 16px;
    transition: all 0.3s ease;
    background: hsl(var(--surface));
}

.form-control:focus, .form-select:focus {
    border-color: hsl(var(--primary));
    box-shadow: 0 0 0 0.2rem hsla(var(--primary) / 0.25);
}

.form-check-input:checked {
    background-color: hsl(var(--primary));
    border-color: hsl(var(--primary));
}

.social-contact .social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: hsl(var(--border));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(var(--text-secondary));
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: hsl(var(--primary));
    color: white;
    transform: translateY(-2px);
}

/* FAQ Section */
.faq-section {
    background: hsl(var(--surface-dark));
}

.accordion-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px !important;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.accordion-button {
    background: transparent;
    color: white;
    border: none;
    padding: 1.5rem;
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-body {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
    padding: 1.5rem;
}

/* Quick Contact */
.quick-contact {
    background: hsl(var(--background));
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.cta-section h2 {
    color: white;
}

/* Footer */
.footer {
    background: hsl(var(--surface-dark));
    color: rgba(255, 255, 255, 0.8);
}

.footer h5, .footer h6 {
    color: white;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 0.5rem;
}

.footer ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer ul li a:hover {
    color: white;
}

.footer .social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer .social-links a:hover {
    background: hsl(var(--primary));
    color: white;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .floating-card {
        display: none;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .advantage-item {
        text-align: center;
        flex-direction: column;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .page-title {
        font-size: 1.75rem;
    }
    
    .btn-lg {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .service-card,
    .contact-info,
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .process-section {
        padding: 2rem 1.5rem;
    }
}

/* Utility Classes */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient {
    background: var(--gradient-primary);
}

.shadow-custom {
    box-shadow: var(--shadow-lg);
}

.border-radius-lg {
    border-radius: 16px;
}

.border-radius-xl {
    border-radius: 20px;
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.6s ease-in-out;
}

.slide-up {
    animation: slideUp 0.6s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/** Login and Register Forms */
.login-page {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: hsl(var(--text-primary));
    background: var(--gradient-primary);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

/* Background Elements */
.login-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.login-container {
    background: hsl(var(--surface));
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    max-width: 450px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.login-header {
    background: var(--gradient-primary);
    padding: 3rem 2rem 2rem;
    text-align: center;
    color: white;
    position: relative;
}

.logo {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    backdrop-filter: blur(10px);
}

.logo i {
    font-size: 2rem;
    color: white;
}

.login-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.login-subtitle {
    font-size: 0.95rem;
    opacity: 0.9;
    margin: 0;
}

.login-form {
    padding: 2.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 600;
    color: hsl(var(--text-primary));
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid hsl(var(--border));
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: hsl(var(--surface));
    position: relative;
}

.form-control:focus {
    outline: none;
    border-color: hsl(var(--primary));
    box-shadow: 0 0 0 0.2rem hsla(var(--primary) / 0.25);
}

.input-group {
    position: relative;
}

.input-group .input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: hsl(var(--text-muted));
    font-size: 1.25rem;      /* Biraz daha büyük ve belirgin */
    pointer-events: none;    /* Inputa tıklamayı engellemez */
    z-index: 2;              /* Inputun altında kalmasın */
    opacity: 0.85;           /* Biraz daha görünürlük */
}

.input-group .form-control {
    padding-left: 48px;
}

.password-toggle {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: hsl(var(--text-muted));
    cursor: pointer;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.password-toggle:hover {
    color: hsl(var(--primary));
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: hsl(var(--primary));
}

.form-check label {
    font-size: 0.875rem;
    color: hsl(var(--text-secondary));
    cursor: pointer;
}

.forgot-password {
    color: hsl(var(--primary));
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: hsl(var(--primary-dark));
}

.btn-login {
    width: 100%;
    padding: 14px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-login:active {
    transform: translateY(0);
}

.btn-login.loading {
    pointer-events: none;
}

.spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s linear infinite;
    margin-right: 10px;
}

.btn-login.loading .spinner {
    display: inline-block;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.login-footer {
    text-align: center;
    padding: 1.5rem 2.5rem 2.5rem;
    border-top: 1px solid hsl(var(--border));
    background: hsl(var(--background));
}

.back-to-site {
    color: hsl(var(--text-secondary));
    text-decoration: none;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.back-to-site:hover {
    color: hsl(var(--primary));
}

.alert {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    display: none;
}

.alert-danger {
    background: hsla(var(--danger) / 0.1);
    border: 1px solid hsla(var(--danger) / 0.3);
    color: hsl(var(--danger));
}

.alert-success {
    background: hsla(var(--success) / 0.1);
    border: 1px solid hsla(var(--success) / 0.3);
    color: hsl(var(--success));
}

/* Responsive */
@media (max-width: 480px) {
    .login-container {
        margin: 10px;
        max-width: none;
    }

    .login-header {
        padding: 2rem 1.5rem 1.5rem;
    }

    .login-form {
        padding: 2rem 1.5rem;
    }

    .login-title {
        font-size: 1.5rem;
    }

    .floating-shape {
        display: none;
    }
}

/* REAUTH PAGE STYLES */

/* Timeout Alert Animation */
.reauth-timeout-alert {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    animation: reauth-fadeInUp 0.8s ease-out !important;
    background: rgba(255, 193, 7, 0.9) !important;
    border: 1px solid rgba(255, 193, 7, 0.8) !important;
    color: #000 !important;
}

@keyframes reauth-fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* User Info Section */
.reauth-user-info-section {
    text-align: center !important;
    margin: 20px 0 !important;
    display: block !important;
    visibility: visible !important;
}

.reauth-user-profile-card {
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 15px !important;
    padding: 20px !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2) !important;
    display: block !important;
    visibility: visible !important;
}

.reauth-user-avatar {
    width: 60px !important;
    height: 60px !important;
    background: rgba(255, 255, 255, 0.95) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #667eea !important;
    font-size: 20px !important;
    font-weight: bold !important;
    margin: 0 auto 10px !important;
    border: 2px solid rgba(255, 255, 255, 0.5) !important;
    visibility: visible !important;
}

.reauth-user-name {
    color: white !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    margin-bottom: 5px !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5) !important;
    display: block !important;
    visibility: visible !important;
}

.reauth-user-email {
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 13px !important;
    margin: 0 !important;
    display: block !important;
    visibility: visible !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
    font-weight: 500 !important;
}

/* Input Group Styles */
.reauth-input-group {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
}

.reauth-input-icon {
    position: absolute !important;
    left: 15px !important;
    z-index: 3 !important;
    color: #667eea !important;
    pointer-events: none !important;
}

.reauth-password-toggle {
    position: absolute !important;
    right: 15px !important;
    z-index: 3 !important;
    color: #667eea !important;
    cursor: pointer !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Form Control */
.reauth-form-control {
    padding-left: 45px !important;
    padding-right: 45px !important;
    position: relative !important;
    z-index: 1 !important;
}

.reauth-form-control:focus {
    outline: none !important;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25) !important;
}

/* Alert Styles */
.reauth-alert-danger,
.reauth-alert-success {
    border: none !important;
    border-radius: 12px !important;
    padding: 15px !important;
    margin-bottom: 20px !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2) !important;
    display: none !important;
}

.reauth-alert-danger {
    background: rgba(248, 215, 218, 0.9) !important;
    border: 1px solid rgba(220, 53, 69, 0.8) !important;
    color: #721c24 !important;
}

.reauth-alert-success {
    background: rgba(209, 231, 221, 0.9) !important;
    border: 1px solid rgba(25, 135, 84, 0.8) !important;
    color: #0f5132 !important;
}

.reauth-timeout-alert strong {
    color: #000 !important;
    font-weight: bold !important;
}

.reauth-timeout-alert small {
    color: #333 !important;
}

.reauth-timeout-alert i {
    color: #ff6b35 !important;
}

/* Button Styles */
.reauth-btn-login.loading .reauth-spinner {
    display: inline-block !important;
    animation: reauth-spin 1s linear infinite !important;
}

@keyframes reauth-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Form Animation */
.reauth-form {
    animation: reauth-slideInUp 0.6s ease-out 0.3s both;
}

@keyframes reauth-slideInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* FAQ Sayfası Stilleri */
.faq-hero {
    background: var(--gradient-primary);
    color: white;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.faq-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.faq-hero .container {
    position: relative;
    z-index: 2;
}

.faq-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.faq-hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.faq-hero-stats {
    margin-top: 50px;
}

.faq-stat-item {
    text-align: center;
    padding: 20px;
}

.faq-stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #ffd700;
    display: block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.faq-stat-label {
    font-size: 1.1rem;
    margin-top: 10px;
    opacity: 0.9;
}

.faq-search-section {
    background: white;
    padding: 60px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.faq-search-box {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.faq-search-input {
    width: 100%;
    padding: 20px 70px 20px 30px;
    border: 3px solid #e9ecef;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.faq-search-input:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    outline: none;
}

.faq-search-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: #007bff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-search-btn:hover {
    background: #0056b3;
    transform: translateY(-50%) scale(1.05);
}

.faq-categories-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.faq-categories-title {
    text-align: center;
    margin-bottom: 60px;
}

.faq-categories-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.faq-categories-title p {
    font-size: 1.1rem;
    color: #666;
}

.faq-category-card {
    background: white;
    border-radius: 15px;
    padding: 40px 25px;
    text-align: center;
    transition: all 0.4s ease;
    border: 3px solid transparent;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.faq-category-card::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: all 0.5s;
}

.faq-category-card:hover::before {
    left: 100%;
}

.faq-category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.faq-category-card.active {
    border-color: #007bff;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    transform: translateY(-5px);
}

.faq-category-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #007bff;
    transition: all 0.3s ease;
}

.faq-category-card.active .faq-category-icon {
    color: white;
    transform: scale(1.1);
}

.faq-category-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.faq-category-count {
    font-size: 0.9rem;
    opacity: 0.8;
}

.faq-content-section {
    padding: 80px 0;
}

.faq-filters {
    text-align: center;
    margin-bottom: 50px;
}

.faq-filter-btn {
    margin: 8px;
    padding: 12px 25px;
    border: 2px solid #dee2e6;
    border-radius: 25px;
    background: white;
    color: #6c757d;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.faq-filter-btn:hover,
.faq-filter-btn.active {
    background: #007bff;
    border-color: #007bff;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-accordion-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 25px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.faq-accordion-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.faq-accordion-header {
    padding: 0;
    margin: 0;
    border: none;
}

.faq-accordion-button {
    width: 100%;
    padding: 25px 30px;
    background: white;
    border: none;
    text-align: left;
    font-weight: 600;
    font-size: 1.1rem;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-accordion-button:hover {
    background: #f8f9fa;
}

.faq-accordion-button.active {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
}

.faq-accordion-button::after {
    content: '\f067';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.faq-accordion-button.active::after {
    content: '\f068';
    transform: rotate(180deg);
}

.faq-accordion-content {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: #f8f9fa;
}

.faq-accordion-content.active {
    padding: 30px;
    max-height: 500px;
}

.faq-accordion-body {
    line-height: 1.8;
    color: #555;
    font-size: 1rem;
}

.faq-featured-badge {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 15px;
    margin-left: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.faq-category-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 15px;
}

.faq-no-results {
    text-align: center;
    padding: 80px 20px;
    color: #6c757d;
}

.faq-no-results-icon {
    font-size: 4rem;
    margin-bottom: 30px;
    color: #dee2e6;
}

.faq-no-results h4 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #495057;
}

.faq-no-results p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.faq-cta-section {
    background: linear-gradient(135deg, #343a40, #495057);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.faq-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.faq-cta-text {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.faq-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.faq-cta-btn {
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.faq-cta-btn-primary {
    background: #007bff;
    color: white;
    border: 2px solid #007bff;
}

.faq-cta-btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.faq-cta-btn-success {
    background: #28a745;
    color: white;
    border: 2px solid #28a745;
}

.faq-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.faq-cta-btn-primary:hover {
    background: #0056b3;
    border-color: #0056b3;
}

.faq-cta-btn-outline:hover {
    background: white;
    color: #343a40;
}

.faq-cta-btn-success:hover {
    background: #1e7e34;
    border-color: #1e7e34;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .faq-hero-title {
        font-size: 2.5rem;
    }
    
    .faq-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .faq-stat-number {
        font-size: 2.5rem;
    }
    
    .faq-search-input {
        padding: 15px 60px 15px 20px;
        font-size: 1rem;
    }
    
    .faq-search-btn {
        width: 45px;
        height: 45px;
    }
    
    .faq-category-card {
        padding: 30px 20px;
    }
    
    .faq-category-icon {
        font-size: 2.5rem;
    }
    
    .faq-accordion-button {
        padding: 20px;
        font-size: 1rem;
    }
    
    .faq-accordion-content.active {
        padding: 20px;
    }
    
    .faq-cta-title {
        font-size: 2rem;
    }
    
    .faq-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .faq-cta-btn {
        width: 250px;
        justify-content: center;
    }
}

/* Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-accordion-item {
    animation: fadeInUp 0.6s ease forwards;
}

.faq-accordion-item:nth-child(1) { animation-delay: 0.1s; }
.faq-accordion-item:nth-child(2) { animation-delay: 0.2s; }
.faq-accordion-item:nth-child(3) { animation-delay: 0.3s; }
.faq-accordion-item:nth-child(4) { animation-delay: 0.4s; }
.faq-accordion-item:nth-child(5) { animation-delay: 0.5s; }

/* Çalışma saatleri için temiz stil - ANİMASYONLU */
.contact .working-status-simple {
    line-height: 1.5;
    transition: all 0.3s ease;
}

.contact .working-status-simple .status-indicator {
    margin-bottom: 8px;
    animation: contactSlideInFromLeft 0.6s ease-out;
}

.contact .working-status-simple .badge {
    font-size: 0.85em !important;
    padding: 0.4em 0.8em;
    border-radius: 6px;
    transition: all 0.3s ease;
    animation: contactPulse 2s infinite;
}

/* Açık olduğunda yeşil pulse */
.contact .badge-success {
    background-color: #28a745 !important;
    color: white;
    animation: contactSuccessPulse 2s infinite;
}

/* Kapalı olduğunda kırmızı pulse */
.contact .badge-danger {
    background-color: #dc3545 !important;
    color: white;
    animation: contactDangerPulse 2s infinite;
}

/* Uyarı durumunda sarı pulse */
.contact .badge-warning {
    background-color: #ffc107 !important;
    color: #212529;
    animation: contactWarningPulse 2s infinite;
}

.contact .working-status-simple .current-time {
    font-size: 0.9em;
    margin: 0;
    color: #333;
    animation: contactSlideInFromRight 0.8s ease-out;
    transition: color 0.3s ease;
}

.contact .working-status-simple .next-info {
    font-size: 0.8em;
    line-height: 1.3;
    animation: contactFadeInUp 1s ease-out;
    transition: all 0.3s ease;
}

/* Pulse animasyonları */
@keyframes contactSuccessPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}

@keyframes contactDangerPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(220, 53, 69, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0);
    }
}

@keyframes contactWarningPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 193, 7, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
    }
}

/* Slide in from left */
@keyframes contactSlideInFromLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Slide in from right */
@keyframes contactSlideInFromRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Fade in up */
@keyframes contactFadeInUp {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Saat tick animasyonu */
@keyframes contactTickAnimation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Clock icon animasyonu */
.contact .contact-icon i.fa-clock {
    animation: contactTickAnimation 60s linear infinite;
    transform-origin: center;
    transition: all 0.3s ease;
}

.contact .contact-icon i.fa-clock:hover {
    animation-duration: 2s;
    color: #007bff;
}

/* Hover efektleri */
.contact .working-status-simple:hover {
    transform: translateY(-2px);
    transition: transform 0.3s ease;
}

.contact .working-status-simple:hover .badge {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Status değişim animasyonu */
.contact .status-changing {
    animation: contactStatusChange 0.5s ease-in-out;
}

@keyframes contactStatusChange {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Loading animasyonu (güncelleme sırasında) */
.contact .status-loading {
    position: relative;
}

.contact .status-loading::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px solid transparent;
    border-top: 2px solid #007bff;
    border-radius: 50%;
    animation: contactSpin 1s linear infinite;
}

@keyframes contactSpin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Saat güncellenme animasyonu */
.contact .time-updating {
    animation: contactTimeUpdate 0.3s ease-in-out;
}

@keyframes contactTimeUpdate {
    0% {
        color: #333;
        transform: scale(1);
    }

    50% {
        color: #007bff;
        transform: scale(1.05);
    }

    100% {
        color: #333;
        transform: scale(1);
    }
}

/* Buton stilleri aynı kalacak */
.contact .contact-buttons .btn {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 60px;
}

.contact .phone-content {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2px;
}

.contact .phone-content i {
    margin-right: 8px !important;
    margin-bottom: 0 !important;
}

.contact .btn.disabled {
    cursor: not-allowed !important;
    user-select: none;
}

.contact .btn-secondary.disabled {
    background-color: #6c757d !important;
    border-color: #6c757d !important;
    color: #fff !important;
}

.contact .btn.disabled small {
    opacity: 0.8;
    font-size: 0.75em;
    margin-top: 4px !important;
    text-align: center !important;
    display: block !important;
    width: 100% !important;
}

/* FAQ Working Hours Styling */
.contact .working-hours-detail {
    font-size: 0.95rem;
}

.contact .schedule-list {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact .schedule-item {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact .schedule-item:last-child {
    border-bottom: none;
}

.contact .day-name {
    min-width: 120px;
    color: #f8f9fa;
}

.contact .schedule-time {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
}

.contact .current-status {
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.contact .contact-note {
    background: rgba(255, 193, 7, 0.1);
    border-left: 3px solid #ffc107;
    padding: 10px 15px;
    border-radius: 0 5px 5px 0;
}

/* FAQ Accordion Enhanced */
.contact .accordion-button {
    font-weight: 600;
    font-size: 1.05rem;
    padding: 20px 25px;
}

.contact .accordion-button:not(.collapsed) {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.contact .accordion-button .badge {
    font-size: 0.7rem;
    padding: 0.3em 0.6em;
    animation: contactPulse 2s infinite;
}

.contact .accordion-body {
    padding: 25px;
    line-height: 1.7;
    font-size: 1rem;
}

/* Animasyonlar */
@keyframes contactPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.contact .schedule-item {
    transition: all 0.3s ease;
}

.contact .schedule-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    padding-left: 10px;
    padding-right: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .contact .schedule-item {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 5px;
    }

    .contact .day-name {
        min-width: auto;
    }

    .contact .current-status {
        text-align: center;
    }

    .contact .current-status .d-flex {
        flex-direction: column;
        gap: 10px;
    }
}

/* Daha güvenli gizleme */
input[name="website"] {
    display: none !important;
    position: absolute !important;
    left: -9999px !important;
    visibility: hidden !important;
    opacity: 0 !important;
}