/**
 * Mandalinn Temizlik - Ana CSS Dosyası
 * Renk Şeması: Turuncu, Siyah, Beyaz
 */

/* ===========================
   CSS Variables (Renkler)
   =========================== */
:root {
    /* ANA RENKLER - TURUNCU/SİYAH/BEYAZ */
    --primary-color: #FF6B00;           /* Ana Turuncu */
    --primary-dark: #E65C00;            /* Koyu Turuncu */
    --primary-light: #FF8A3D;           /* Açık Turuncu */
    --secondary-color: #1A1A1A;         /* Siyah */
    --secondary-dark: #000000;          /* Tam Siyah */
    --secondary-light: #2D2D2D;         /* Koyu Gri */
    
    /* ACCENT COLORS */
    --accent-orange: #FFA500;           /* Altın Turuncu */
    --accent-dark: #0D0D0D;             /* Çok Koyu Siyah */
    
    /* STATUS COLORS */
    --success-color: #FF6B00;           /* Turuncu (başarı için) */
    --warning-color: #FFA500;           /* Altın Turuncu */
    --danger-color: #FF3D00;            /* Kırmızı Turuncu */
    --info-color: #FF6B00;              /* Turuncu */
    
    /* TEXT COLORS */
    --text-primary: #1A1A1A;            /* Ana Siyah */
    --text-secondary: #4A4A4A;          /* Orta Gri */
    --text-light: #757575;              /* Açık Gri */
    --text-white: #FFFFFF;              /* Beyaz */
    
    /* BACKGROUND COLORS */
    --bg-primary: #FFFFFF;              /* Beyaz */
    --bg-secondary: #F8F8F8;            /* Açık Gri */
    --bg-dark: #1A1A1A;                 /* Siyah */
    --bg-black: #000000;                /* Tam Siyah */
    --bg-orange: #FF6B00;               /* Turuncu */
    
    /* BORDER & SHADOW */
    --border-color: #E0E0E0;
    --border-dark: #2D2D2D;
    --border-radius: 8px;
    --box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --box-shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --box-shadow-orange: 0 4px 20px rgba(255, 107, 0, 0.3);
    
    /* GRADIENTS */
    --gradient-primary: linear-gradient(135deg, #FF6B00 0%, #FFA500 100%);
    --gradient-dark: linear-gradient(135deg, #1A1A1A 0%, #000000 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(255, 107, 0, 0.8) 100%);
    
    /* TRANSITIONS */
    --transition: all 0.3s ease;
    
    /* LAYOUT */
    --max-width: 1200px;
    --header-height: 0px;
}

/* ===========================
   Reset & Base Styles
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color);
}

ul, ol {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* ===========================
   Reset & Base Styles
   =========================== */


/* ===========================
   Container & Layout
   =========================== */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-top: 20px;
}

/* ===========================
   Header & Navigation
   =========================== */
   /* ============================================
   HEADER STYLES
============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #1A1A1A;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.main-header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
}

/* Logo */
.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 70px;
    width: auto;
}

.logo h1 {
    color: #FF6B00;
    font-size: 1.8rem;
    font-weight: 700;
}

/* Navigation */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: #1A1A1A;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s;
    padding: 8px 0;
    display: block;
}

.nav-menu a:hover {
    color: #FF6B00;
}

/* Randevu Butonu */
.btn-randevu {
    background: linear-gradient(135deg, #FF6B00, #FFA500);
    color: white !important;
    padding: 10px 25px !important;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.btn-randevu:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

/* Mobile Menu Toggle - Varsayılan olarak gizli */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #FF6B00;
    cursor: pointer;
    padding: 5px;
}

/* ============================================
   RESPONSIVE - TABLET
============================================ */
@media (max-width: 992px) {
    .nav-menu {
        gap: 20px;
    }
    
    .nav-menu a {
        font-size: 14px;
    }
}

/* ============================================
   RESPONSIVE - MOBILE
============================================ */
@media (max-width: 768px) {
    /* Mobile Menu Toggle - Mobilde göster */
    .mobile-menu-toggle {
        display: block;
    }
    
    /* Navigation Menu - Mobilde gizli */
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 280px;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 20px;
        gap: 0;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
        transition: left 0.3s ease;
        overflow-y: auto;
    }
    
    /* Menu aktif olduğunda */
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu a {
        padding: 15px 10px;
        width: 100%;
    }
    
    .btn-randevu {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }
    
    /* Logo küçült */
    .logo img {
        height: 60px;
    }
    
    .logo h1 {
        font-size: 1.4rem;
    }
}

/* ============================================
   DESKTOP - Geniş Ekranlar
============================================ */
@media (min-width: 769px) {
    /* Desktop'ta menu her zaman görünür */
    .nav-menu {
        position: static !important;
        flex-direction: row !important;
        width: auto !important;
        height: auto !important;
        background: transparent !important;
        box-shadow: none !important;
        padding: 0 !important;
        overflow: visible !important;
    }
    
    /* Mobile toggle desktop'ta gizli */
    .mobile-menu-toggle {
        display: none !important;
    }
}
   
.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.navbar {
    padding: 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i {
    font-size: 2rem;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu li a {
    color: var(--text-black);
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.nav-menu li a:hover {
    color: var(--primary-color);
    background: rgba(255, 107, 0, 0.1);
}

.btn-randevu {
    background: var(--gradient-primary) !important;
    color: white !important;
    padding: 10px 24px !important;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--box-shadow-orange);
}

.btn-randevu:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 107, 0, 0.5);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-white);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===========================
   Hero Section
   =========================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,101.3C1248,85,1344,75,1392,69.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: center;
    margin-top: var(--header-height);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.9), rgba(16, 185, 129, 0.8));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 50px 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 40px;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s backwards;
}

/* ===========================
   Buttons
   =========================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--box-shadow-orange);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.4);
    background: var(--primary-dark);
}

.btn-secondary {
    background: var(--bg-dark);
    color: white;
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-success {
    background: var(--primary-color);
    color: white;
}

.btn-success:hover {
    background: var(--primary-dark);
}

.btn-danger {
    background: var(--danger-color);
    color: white;
}

.btn-warning {
    background: var(--warning-color);
    color: white;
}

.btn-dark {
    background: var(--bg-dark);
    color: white;
}

.btn-dark:hover {
    background: var(--secondary-dark);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.btn-icon {
    width: 36px;
    height: 36px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 107, 0, 0.1);
    color: var(--primary-color);
}

.btn-icon:hover {
    background: var(--primary-color);
    color: white;
}

.btn-icon.btn-danger {
    background: rgba(255, 61, 0, 0.1);
    color: var(--danger-color);
}

.btn-icon.btn-danger:hover {
    background: var(--danger-color);
    color: white;
}
/* ===========================
   Services Section - TURUNCU
   =========================== */
.services {
    background: var(--bg-primary);
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-orange);
    border-color: var(--primary-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 20px;
    color: white;
    font-size: 2.5rem;
    box-shadow: var(--box-shadow-orange);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.service-features {
    text-align: left;
    margin: 25px 0;
}

.service-features li {
    padding: 10px 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features i {
    color: var(--primary-color);
}

.service-price {
    font-weight: 600;
    color: var(--primary-color);
    margin: 20px 0;
    font-size: 1.1rem;
}

/* ===========================
   Why Us Section - TURUNCU
   =========================== */
.why-us {
    background: var(--bg-dark);
    padding: 80px 0;
    color: var(--text-white);
}

.why-us .section-header h2 {
    color: var(--text-white);
}

.why-us .section-header h2::after {
    background: var(--gradient-primary);
}

.why-us .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 2px solid rgba(255, 107, 0, 0.2);
    transition: var(--transition);
}

.feature-item:hover {
    background: rgba(255, 107, 0, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.3);
}

.feature-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: inline-block;
    transition: var(--transition);
}

.feature-item:hover i {
    transform: scale(1.2);
    filter: drop-shadow(0 0 20px rgba(255, 107, 0, 0.6));
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-white);
}

.feature-item p {
    color: rgba(255, 255, 255, 0.7);
}
/* ===========================
   Stats Section - TURUNCU
   =========================== */
.stats-section {
    background: var(--gradient-primary);
    color: white;
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-box {
    text-align: center;
    padding: 30px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.stat-box:hover {
    background: rgba(0, 0, 0, 0.3);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stat-box i {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.stat-box h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-box p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ===========================
   Testimonials
   =========================== */
.testimonials {
    background: var(--bg-primary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 35px;
    border-radius: 16px;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-color);
}

.testimonial-card .stars {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.testimonial-card p {
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.8;
}

.testimonial-author h4 {
    color: var(--text-primary);
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===========================
   CTA Section
   =========================== */
.cta-section {
    background: linear-gradient(135deg, #1A1A1A, #FF6B00),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,101.3C1248,85,1344,75,1392,69.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    padding: 80px 0;
}

.cta-content {
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* ===========================
   Contact Section - TURUNCU
   =========================== */
.contact {
    background: var(--bg-secondary);
    padding: 80px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h2 {
    color: var(--text-primary);
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: white;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: var(--transition);
}

.contact-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--box-shadow-orange);
}

.contact-item i {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.contact-item h4 {
    color: var(--text-primary);
    margin-bottom: 8px;
}

.contact-item p {
    color: var(--text-secondary);
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: underline;
}

.contact-item a:hover {
    color: var(--primary-dark);
}
/* ===========================
   Forms
   =========================== */
.contact-form,
.appointment-form-container {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--box-shadow);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg-primary);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: var(--danger-color);
}

.error-message {
    color: var(--danger-color);
    font-size: 0.85rem;
    margin-top: 5px;
    display: block;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 500;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

/* ===========================
   Appointment Form
   =========================== */
.appointment-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.appointment-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.appointment-header {
    text-align: center;
    margin-bottom: 50px;
}

.appointment-header h1 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.appointment-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.form-step h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 15px;
}

.form-step h2 i {
    color: var(--primary-color);
}

.service-selection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.service-option {
    position: relative;
    cursor: pointer;
}

.service-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.service-option-content {
    padding: 25px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    background: white;
}

.service-option input[type="radio"]:checked + .service-option-content {
    border-color: var(--primary-color);
    background: rgba(79, 70, 229, 0.05);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.service-option-content i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-option-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.service-option-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.price-summary {
    background: var(--bg-secondary);
    padding: 25px;
    border-radius: var(--border-radius);
    margin-top: 30px;
}

.price-summary h3 {
    margin-bottom: 20px;
    color: var(--text-primary);
}

.price-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.price-total {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
}

.progress-bar {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.progress-step {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--border-color);
    color: var(--text-secondary);
    font-weight: 600;
    transition: var(--transition);
}

.progress-step.active {
    background: var(--primary-color);
    color: white;
}

/* ===========================
   Footer - SİYAH/TURUNCU
   =========================== */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 60px 0 20px;
    border-top: 3px solid var(--primary-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 20px;
    color: white;
}

.footer-col h3 {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col h3 i {
    color: var(--primary-color);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-col ul li i {
    color: var(--primary-color);
    margin-right: 8px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 0, 0.2);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.5);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 107, 0, 0.3);
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a {
    color: var(--primary-color);
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Footer */
.main-footer {
    background: linear-gradient(135deg, #1A1A1A, #FF6B00);
    color: white;
    padding: 60px 0 0;
}

.footer-top {
    padding-bottom: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-col h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #FF6B00;
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: #FF6B00;
    padding-left: 5px;
}

.footer-links i {
    margin-right: 8px;
    font-size: 12px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
    margin-right: 10px;
    margin-top: 3px;
    color: #FF6B00;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: #FF6B00;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 0;
    margin-top: 40px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: #FF6B00;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #FF6B00;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
    transition: all 0.3s;
    z-index: 999;
}

.scroll-to-top.show {
    display: flex;
}

.scroll-to-top:hover {
    background: #E65C00;
    transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

/* ===========================
   WhatsApp Button - TURUNCU
   =========================== */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: var(--box-shadow-orange);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(255, 107, 0, 0.6);
}

/* ===========================
   Alerts & Messages
   =========================== */
.alert {
    padding: 15px 20px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideDown 0.3s ease;
    position: relative;
    transition: var(--transition);
}

.alert-success {
    background: #D1FAE5;
    border-left: 4px solid var(--success-color);
    color: #065F46;
}

.alert-error {
    background: #FEE2E2;
    border-left: 4px solid var(--danger-color);
    color: #991B1B;
}

.alert-warning {
    background: #FEF3C7;
    border-left: 4px solid var(--warning-color);
    color: #92400E;
}

.alert-info {
    background: #DBEAFE;
    border-left: 4px solid var(--info-color);
    color: #1E40AF;
}

.alert i {
    font-size: 1.2rem;
}

.alert-close {
    margin-left: auto;
    cursor: pointer;
    background: none;
    border: none;
    font-size: 1.5rem;
    opacity: 0.7;
    transition: var(--transition);
}

.alert-close:hover {
    opacity: 1;
}

/* ===========================
   Modal
   =========================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    overflow-y: auto;
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: white;
    border-radius: 16px;
    padding: 40px;
    max-width: 600px;
    width: 90%;
    position: relative;
    animation: slideUp 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-large {
    max-width: 900px;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 2rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
    background: none;
    border: none;
}

.modal-close:hover {
    color: var(--text-primary);
    transform: rotate(90deg);
}

.modal-icon {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 20px;
}

.modal-icon.success {
    color: var(--success-color);
}

.success-modal h2 {
    text-align: center;
    margin-bottom: 15px;
}

.success-modal p {
    text-align: center;
    color: var(--text-secondary);
}

.appointment-number {
    background: var(--bg-secondary);
    padding: 15px;
    border-radius: var(--border-radius);
    margin: 20px 0;
    text-align: center;
}

.info-text {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ===========================
   ADMIN PANEL STYLES
   =========================== */

/* Admin Login Page */
.admin-login-page {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.admin-login {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-container {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 450px;
    width: 100%;
    animation: slideUp 0.5s ease;
}

.login-header {
    text-align: center;
    margin-bottom: 40px;
}

.login-header i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.login-header h1 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.login-header p {
    color: var(--text-secondary);
}

.login-container .form-group {
    position: relative;
    margin-bottom: 25px;
}

.login-container .form-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
}

.login-container .form-group input {
    padding-left: 45px;
}

.login-footer {
    text-align: center;
    margin-top: 25px;
}

.login-footer a {
    color: var(--primary-color);
}

/* Admin Panel Layout */
.admin-body {
    background: var(--bg-secondary);
}

.admin-panel {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 260px;
    background: var(--bg-dark);
    color: white;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    overflow-y: auto;
    transition: var(--transition);
    z-index: 1000;
}

.admin-sidebar.collapsed {
    width: 70px;
}

.sidebar-header {
    padding: 25px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.sidebar-header h2 {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: white;
}

.sidebar-subtitle {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 5px;
}

.sidebar-nav {
    padding: 20px 0;
}

.sidebar-nav .nav-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    position: relative;
}

.sidebar-nav .nav-item i {
    font-size: 1.2rem;
    width: 20px;
}

.sidebar-nav .nav-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.sidebar-nav .nav-item.active {
    background: rgba(79, 70, 229, 0.2);
    color: white;
    border-left: 4px solid var(--primary-light);
}

.sidebar-nav .badge {
    margin-left: auto;
    background: var(--danger-color);
    color: white;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.sidebar-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 15px 20px;
}

.sidebar-footer {
    padding: 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

/* Admin Main Content */
.admin-main {
    flex: 1;
    margin-left: 260px;
    transition: var(--transition);
}

.sidebar-collapsed + .admin-main {
    margin-left: 70px;
}

.admin-header {
    background: white;
    padding: 20px 30px;
    box-shadow: var(--box-shadow);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hamburger-menu {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-primary);
    cursor: pointer;
    padding: 5px;
}

.page-title {
    font-size: 1.8rem;
    color: var(--text-primary);
    font-weight: 700;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.header-search {
    position: relative;
}

.header-search i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
}

.header-search input {
    padding: 8px 15px 8px 40px;
    border: 2px solid var(--border-color);
    border-radius: 20px;
    width: 250px;
    transition: var(--transition);
}

.header-search input:focus {
    outline: none;
    border-color: var(--primary-color);
    width: 300px;
}

.header-notifications {
    position: relative;
}

.notification-btn {
    position: relative;
    background: var(--bg-secondary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 1.2rem;
    transition: var(--transition);
}

.notification-btn:hover {
    background: var(--primary-color);
    color: white;
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--danger-color);
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.notification-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-lg);
    width: 350px;
    max-height: 400px;
    overflow-y: auto;
    display: none;
}

.notification-dropdown.active {
    display: block;
    animation: slideDown 0.3s ease;
}

.notification-header {
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
}

.notification-header h3 {
    font-size: 1.1rem;
    color: var(--text-primary);
}

.notification-list {
    max-height: 300px;
    overflow-y: auto;
}

.notification-item {
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    gap: 15px;
    transition: var(--transition);
}

.notification-item:hover {
    background: var(--bg-secondary);
}

.notification-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.notification-item strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.notification-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.notification-item small {
    color: var(--text-light);
    font-size: 0.8rem;
}

.notification-footer {
    padding: 12px 20px;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.notification-footer a {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.admin-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-info i {
    font-size: 2rem;
    color: var(--primary-color);
}

.user-info strong {
    display: block;
    color: var(--text-primary);
}

.user-info small {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* Breadcrumb */
.breadcrumb {
    padding: 15px 30px;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.breadcrumb a {
    color: var(--primary-color);
}

.breadcrumb span {
    color: var(--text-light);
}

/* Admin Content Area */
.admin-content {
    padding: 30px;
}

/* Stats Cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.stat-card {
    background: white;
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-lg);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
}

.stat-icon.blue {
    background: linear-gradient(135deg, #3B82F6, #2563EB);
}

.stat-icon.green {
    background: linear-gradient(135deg, #10B981, #059669);
}

.stat-icon.orange {
    background: linear-gradient(135deg, #F59E0B, #D97706);
}

.stat-icon.purple {
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
}

.stat-info h3 {
    font-size: 2rem;
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Admin Cards */
.admin-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
    overflow: hidden;
}

.card-header {
    padding: 20px 25px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-header h2 {
    font-size: 1.3rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* Tables */
.table-responsive {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table thead {
    background: var(--bg-secondary);
}

.admin-table th {
    padding: 15px 20px;
    text-align: left;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
}

.admin-table td {
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.admin-table tbody tr {
    transition: var(--transition);
}

.admin-table tbody tr:hover {
    background: var(--bg-secondary);
}

.text-center {
    text-align: center;
}

.text-truncate {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.action-buttons {
    display: flex;
    gap: 8px;
}

/* Badge */
.badge {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
}

.badge-warning {
    background: #FEF3C7;
    color: #92400E;
}

.badge-info {
    background: #DBEAFE;
    color: #1E40AF;
}

.badge-success {
    background: #D1FAE5;
    color: #065F46;
}

.badge-danger {
    background: #FEE2E2;
    color: #991B1B;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 25px;
}

.pagination a {
    padding: 8px 14px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    color: var(--text-primary);
    font-weight: 600;
    transition: var(--transition);
}

.pagination a:hover,
.pagination a.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Filter Form */
.filter-form {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.search-input,
.filter-select {
    padding: 8px 15px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 0.95rem;
}

.search-input {
    min-width: 200px;
}

.filter-select {
    min-width: 150px;
}

/* Detail Grid */
.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    padding: 25px;
}

.detail-section {
    background: var(--bg-secondary);
    padding: 20px;
    border-radius: var(--border-radius);
}

.detail-section h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-table {
    width: 100%;
}

.detail-table tr {
    border-bottom: 1px solid var(--border-color);
}

.detail-table td {
    padding: 12px 5px;
}

.detail-table td:first-child {
    width: 40%;
    color: var(--text-secondary);
}

.price-highlight {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 700;
}

.detail-actions {
    padding: 25px;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Chart Container */
.chart-container {
    padding: 25px;
    height: 300px;
}

/* Settings Form */
.settings-form {
    padding: 25px;
}

.settings-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
}

/* Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid var(--border-color);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* ===========================
   Animations
   =========================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ===========================
   Responsive Design
   =========================== */

/* Tablet */
@media (max-width: 1024px) {
    .admin-sidebar {
        transform: translateX(-100%);
    }
    
    .admin-sidebar.active {
        transform: translateX(0);
    }
    
    .admin-main {
        margin-left: 0;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .settings-container {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .nav-menu li a {
    color: var(--text-black);
    }
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--box-shadow-lg);
        transform: translateX(-100%);
        transition: var(--transition);
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .header-search input {
        width: 150px;
    }
    
    .header-search input:focus {
        width: 200px;
    }
    
    .admin-table {
        font-size: 0.9rem;
    }
    
    .admin-table th,
    .admin-table td {
        padding: 10px;
    }
    
    .detail-grid {
        grid-template-columns: 1fr;
    }
    
    .form-navigation {
        flex-direction: column;
    }
    
    .service-selection {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        flex-direction: column;
        text-align: center;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .modal-content {
        padding: 25px;
    }
    
    .login-container {
        padding: 30px;
    }
    
    .whatsapp-button {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
    
    .admin-content {
        padding: 15px;
    }
    
    .card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .header-actions {
        width: 100%;
        flex-direction: column;
    }
    
    .search-input,
    .filter-select {
        width: 100%;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .admin-sidebar,
    .admin-header,
    .whatsapp-button,
    .btn,
    .action-buttons {
        display: none !important;
    }
    
    .admin-main {
        margin-left: 0;
    }
    
    .admin-card {
        box-shadow: none;
        border: 1px solid var(--border-color);
    }
}

/* Scroll Bar Styling */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-secondary);
}

/* Selection */
::selection {
    background: var(--primary-color);
    color: white;
}

::-moz-selection {
    background: var(--primary-color);
    color: white;
}
/* Modal Overlay Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.modal-overlay.active {
    display: flex !important;
    animation: fadeIn 0.3s ease;
}

.modal-dialog {
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-content {
    background: white;
    border-radius: 16px;
    padding: 40px;
    position: relative;
    animation: slideUp 0.3s ease;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 2rem;
    color: #6b7280;
    cursor: pointer;
    background: none;
    border: none;
    transition: all 0.3s;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    background: #f3f4f6;
    color: #1f2937;
    transform: rotate(90deg);
}

/* Success Modal */
.success-modal {
    text-align: center;
}

.modal-icon {
    font-size: 5rem;
    margin-bottom: 20px;
}

.modal-icon.success {
    color: #10B981;
}

.success-modal h2 {
    color: #1f2937;
    margin-bottom: 15px;
}

.success-modal p {
    color: #6b7280;
    margin-bottom: 10px;
}

.appointment-number {
    background: #f3f4f6;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
}

.info-text {
    font-size: 0.9rem;
    color: #9ca3af;
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #e5e7eb;
    border-top-color: #4F46E5;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===========================
   Alerts & Messages - TURUNCU
   =========================== */
.alert {
    padding: 15px 20px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideDown 0.3s ease;
    position: relative;
    transition: var(--transition);
}

.alert-success {
    background: #FFE8D6;
    border-left: 4px solid var(--primary-color);
    color: #E65C00;
}

.alert-error {
    background: #FFEBEE;
    border-left: 4px solid #FF3D00;
    color: #C62828;
}

.alert-warning {
    background: #FFF3E0;
    border-left: 4px solid #FFA500;
    color: #E65100;
}

.alert-info {
    background: #FFF3E0;
    border-left: 4px solid var(--primary-color);
    color: #E65C00;
}

.alert i {
    font-size: 1.2rem;
}

.alert-close {
    margin-left: auto;
    cursor: pointer;
    background: none;
    border: none;
    font-size: 1.5rem;
    opacity: 0.7;
    transition: var(--transition);
    color: inherit;
}

.alert-close:hover {
    opacity: 1;
}

/* Modal - Turuncu */
.modal-overlay {
    background: rgba(0, 0, 0, 0.85);
}

.modal-close {
    color: var(--text-secondary);
}

.modal-close:hover {
    color: var(--primary-color);
}

.modal-icon.success {
    color: var(--primary-color);
}

.appointment-number {
    background: #FFF3E0;
    border: 2px solid var(--primary-color);
}

.appointment-number strong {
    color: var(--primary-color);
}

/* ========================================
   MODERN HERO SLIDER - TURUNCU/SİYAH
   ======================================== */

.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    margin-top: var(--header-height);
}

.hero-slides {
    position: relative;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    background-size: cover !important;
    background-position: center !important;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

/* Hero Overlay - Turuncu/Siyah Gradient */
.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-overlay);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-badge {
    display: inline-block;
    background: var(--primary-color);
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 30px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.5);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero-buttons .btn-primary {
    background: var(--gradient-primary);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.4);
}

.hero-buttons .btn-secondary {
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid var(--primary-color);
}

.hero-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stats .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 0, 0.3);
}

.hero-stats .stat-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.hero-stats .stat-item strong {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.hero-stats .stat-item span {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Slider Navigation - Turuncu */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    border: none;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
}

.slider-nav:hover {
    background: var(--primary-dark);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.6);
}

.slider-nav.prev {
    left: 30px;
}

.slider-nav.next {
    right: 30px;
}

/* Slider Dots - Turuncu */
.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.dot:hover {
    background: var(--primary-color);
    border-color: white;
}

.dot.active {
    background: var(--primary-color);
    width: 40px;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(255, 107, 0, 0.8);
}

/* Scroll Indicator - Turuncu */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 10;
}

.scroll-indicator i {
    font-size: 2rem;
    color: var(--primary-color);
    filter: drop-shadow(0 0 10px rgba(255, 107, 0, 0.6));
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Pulse Animation - Turuncu */
.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(255, 107, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0);
    }
}
/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
}

.slider-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
    left: 30px;
}

.slider-nav.next {
    right: 30px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: white;
    width: 40px;
    border-radius: 6px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 10;
}

.scroll-indicator i {
    font-size: 2rem;
    color: white;
    opacity: 0.7;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Pulse Animation */
.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* ========================================
   BEFORE/AFTER GALLERY - TURUNCU
   ======================================== */

.before-after-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.before-after-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.before-after-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.before-after-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-orange);
    border-color: var(--primary-color);
}

.before-after-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: #000;
}

.image-before,
.image-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-after {
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.slider-range {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
    z-index: 3;
}

.slider-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    background: var(--primary-color);
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 2;
    box-shadow: 0 0 15px rgba(255, 107, 0, 0.8);
}

.slider-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(255, 107, 0, 0.6);
    pointer-events: none;
    z-index: 2;
}

.slider-button i {
    font-size: 1.2rem;
    color: white;
}

.before-after-labels {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 2;
}

.label-before,
.label-after {
    background: var(--bg-dark);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.before-after-item h3 {
    padding: 20px 20px 10px;
    font-size: 1.3rem;
    color: var(--text-primary);
}

.before-after-item p {
    padding: 0 20px 20px;
    color: var(--text-secondary);
}

/* ========================================
   TESTIMONIALS SLIDER - TURUNCU/SİYAH
   ======================================== */

.testimonials-slider-section {
    padding: 80px 0;
    background: var(--bg-dark);
    color: white;
}

.testimonials-slider-section .section-header h2 {
    color: var(--text-white);
}

.testimonials-slider-section .section-header h2::after {
    background: var(--gradient-primary);
}

.testimonials-slider-section .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.rating-summary {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.rating-summary .stars {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.rating-text {
    font-size: 1.1rem;
    opacity: 0.95;
    color: rgba(255, 255, 255, 0.9);
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
    padding: 40px 0;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 30px;
}

.testimonial-slide {
    min-width: calc(33.333% - 20px);
    flex-shrink: 0;
}

.testimonial-card-modern {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    color: var(--text-primary);
    transition: var(--transition);
    height: 100%;
    border: 2px solid transparent;
}

.testimonial-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 107, 0, 0.4);
    border-color: var(--primary-color);
}

.quote-icon {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: var(--box-shadow-orange);
}

.testimonial-card-modern .stars {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--text-secondary);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 2px solid var(--border-color);
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    box-shadow: 0 0 15px rgba(255, 107, 0, 0.3);
}

.testimonial-author h4 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.verified {
    font-size: 0.85rem;
    color: var(--primary-color);
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    box-shadow: var(--box-shadow-orange);
}

.testimonial-nav:hover {
    background: var(--primary-dark);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.6);
}

.testimonial-nav.prev {
    left: -25px;
}

.testimonial-nav.next {
    right: -25px;
}

.testimonial-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.testimonial-pagination .dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-pagination .dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(255, 107, 0, 0.6);
}

/* Trust Badges - Turuncu */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 107, 0, 0.2);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
    border: 2px solid var(--primary-color);
    transition: var(--transition);
}

.badge-item:hover {
    background: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 107, 0, 0.5);
}

.badge-item i {
    font-size: 1.5rem;
    color: var(--text-white);
}

.badge-item span {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-white);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.badge-item i {
    font-size: 1.5rem;
}

.badge-item span {
    font-weight: 600;
    font-size: 1rem;
}

/* ========================================
   FAQ SECTION - TURUNCU
   ======================================== */

.faq-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
    margin-bottom: 20px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.faq-item:hover {
    box-shadow: var(--box-shadow-orange);
    border-color: var(--primary-color);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    background: var(--bg-secondary);
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(255, 107, 0, 0.05);
}

.faq-item.active .faq-question {
    background: var(--primary-color);
}

.faq-item.active .faq-question h3 {
    color: white;
}

.faq-item.active .faq-question i {
    color: white;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 600;
    margin: 0;
    transition: var(--transition);
}

.faq-question i {
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 25px 30px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
    background: white;
}

.faq-cta {
    margin-top: 60px;
}

.cta-box {
    background: var(--gradient-dark);
    color: white;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--box-shadow-lg);
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: var(--gradient-primary);
    opacity: 0.1;
    transform: rotate(45deg);
}

.cta-box i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.cta-box h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-box .btn {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--box-shadow-orange);
}
/* ========================================
   AOS ANIMATIONS (Animate On Scroll)
   ======================================== */

[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-down"] {
    transform: translateY(-30px);
}

[data-aos="fade-down"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

/* ========================================
   RESPONSIVE - MOBILE
   ======================================== */

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .slider-nav {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .slider-nav.prev {
        left: 15px;
    }
    
    .slider-nav.next {
        right: 15px;
    }
    
    .before-after-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-slide {
        min-width: 100%;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-badges {
        gap: 15px;
    }
    
    .badge-item {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* ============================================
   TESTIMONIALS SECTION - GÜNCELLENMİŞ
============================================ */
.testimonials-section {
    padding: 60px 0 100px; /* Alt boşluğu artırdık (pagination için) */
    background: #f9f9f9;
    position: relative;
    overflow: hidden;
}

/* Swiper Container'a nefes aldırıyoruz (Gölgelerin kesilmemesi için) */
.testimonial-slider {
    padding: 20px 10px 60px 10px !important;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    position: relative;
    border-bottom: 4px solid #eee;
    height: 100%; /* Kartları eşit boy yapar */
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-bottom-color: #FF6B00;
}

.quote-icon {
    font-size: 30px;
    color: #FF6B00;
    opacity: 0.2;
    margin-bottom: 15px;
}

.review-text {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
    /* Yazı taşmasını engellemek için boyutu esnettik */
    flex-grow: 1; 
    display: -webkit-box;
    -webkit-line-clamp: 4; /* Maksimum 4 satır gösterir */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
    margin-top: auto; /* Bilgiyi her zaman en alta iter */
}

.reviewer-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.reviewer-info h4 {
    margin: 0;
    font-size: 15px;
    color: #333;
    font-weight: 700;
}

.reviewer-info span {
    font-size: 12px;
    color: #888;
}

.rating {
    margin-left: auto;
    color: #FFD700;
    font-size: 10px;
    display: flex;
    gap: 2px;
}

/* ============================================
   MOBİL DÜZENLEMELER
============================================ */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 40px 0 80px;
    }

    .testimonial-card {
        padding: 25px 20px;
        text-align: center; /* Mobilde yazıları ortaladık */
    }

    .reviewer-info {
        flex-direction: column; /* Fotoğraf ve ismi alt alta aldık */
        gap: 10px;
    }

    .reviewer-avatar img {
        width: 60px;
        height: 60px;
        margin: 0 auto; /* Fotoğrafı ortaladık */
    }

    .rating {
        margin: 5px auto 0; /* Yıldızları ortaladık */
    }

    .review-text {
        font-size: 14px;
        -webkit-line-clamp: 5; /* Mobilde biraz daha fazla yazı görünebilir */
    }
}